
img {
    max-block-size: 100%;
    max-inline-size: 100%;
}

input,textarea {
    -webkit-user-select: auto;
}

textarea {
    white-space: revert;
}

meter {
    -webkit-appearance: revert;
    -moz-appearance: revert;
    appearance: revert;
}

:where(pre) {
    all: revert;
    box-sizing: border-box;
}

::-moz-placeholder {
    color: unset;
}

::placeholder {
    color: unset;
}

:where([hidden]) {
    display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
    -moz-user-modify: read-write;
    -webkit-user-modify: read-write;
    -webkit-line-break: after-white-space;
    overflow-wrap: break-word;
    -webkit-user-select: auto;
}

:where([draggable=true]) {
    -webkit-user-drag: element;
}

:where(dialog:modal) {
    all: revert;
    box-sizing: border-box;
}

::-webkit-details-marker {
    display: none;
}

body {
    color: #555555;
    background-color: #ffffff;
    font-family: Shippori Mincho B1,serif;
    -webkit-text-size-adjust: 100%;
    font-feature-settings: "palt";
    font-size: min(.1632653061vw + .8367346939rem,1rem);
    font-weight: 400;
    letter-spacing: .05em;
    line-break: strict;
    line-height: 1.75;
    overflow-wrap: anywhere;
    text-indent: min(0vw + 0rem,0rem);
    word-break: normal;
    overflow-x: hidden;
    margin: 0;
}

.pink{
    background-color: #FFEDF3;
}

#page {
    opacity: 0;
    overflow: clip;
    padding-top: var(--header-height);
    position: relative;
}

#page.home {
    padding-top: 0;
}

figure,picture {
    display: block;
}

img {
    height: auto;
    max-width: 100%;
    min-height: 1px;
    -o-object-fit: cover;
    object-fit: cover;
    vertical-align: bottom;
}
p{
	margin-bottom: 15px;
}

h1{
  font-family: "Satisfy", cursive;
  font-weight: 400;
  font-style: normal;
}


h2{
    font-size: 24px;
}

h3 {
  font-size: 24px;
  position: relative;
  padding: 1.5rem 1rem;
  margin: 0 0 60px;
  color: #666666;
}

h3:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: '';
  background-image: -webkit-repeating-linear-gradient(135deg, #666, #666 1px, transparent 2px, transparent 5px);
  background-image: repeating-linear-gradient(-45deg, #666, #666 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

h4{
  font-size: 1.2rem;
  font-weight: 700;
}
/***追従するトップへ戻るボタン***/
#page-top {
    position: fixed;
    right: 5px;
    bottom: 30px;
    height: 50px;
    text-decoration: none;
    font-weight: bold;
    transform: rotate(90deg);
    font-size: 90%;
    line-height: 1.5rem;
    color: #737373;
    padding: 0 0 0 35px;
    border-top: solid 1px;
    z-index: 100;
}
#page-top::before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 0px;
    width: 15px;
    border-top: solid 1px;
    transform: rotate(35deg);
    transform-origin: left top;
}
/* menu */
.top-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #fffdf7;
  height: 50px;
  padding: 0em 1em;
}

.menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

  .menu a{
    display: block;
    width: 100%;
    text-align: center;
  }
  .menu a:link { 
    color: #333333;
    text-decoration: none;
  }
  .menu a:visited { color: #333; }
  .menu a:hover { color: #b130ba; }
  .menu a:active { color: #333; }

.menu > li {
  margin: 0 1rem;
  overflow: hidden;
}

.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #666;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: '';
  margin-top: -8px;
}

.menu-button::after {
  content: '';
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

@media (max-width: 700px) {
  .menu-button-container {
    display: flex;
  }
  .menu {
    position: absolute;
    top: 0;
    margin-top: 50px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    z-index: 200;
  }
  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ .menu li {
    border: 1px solid #888;
    height: 4em;
    padding: 1em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 1em 0;
    width: 100%;
    color: white;
    background-color: #fff;
  }
  .menu > li:not(:last-child) {
    border-bottom: 1px solid #888;
  }
  .menu a:link { 
    color: #333333;
    text-decoration: none;
    font-size: 1rem;
    line-height: 50px;
  }
  .menu a{
    display: block;
    width: 100%;
    text-align: center;
  }
}


/* top */
.c-container {
	margin-left: auto;
	margin-right: auto;
    padding-left: min(1.6326530612vw + 13.8775510204px,40px);
    padding-right: min(1.6326530612vw + 13.8775510204px,40px);
    width: min(77.9591836735vw + 82.6530612245px,1330px);
}

.c-container.-s {
    width: min(48.0816326531vw + 194.693877551px,964px);
}

.accessh2{
   text-align: center;
   font-size: 2rem;
}
.index_intro {
    padding-block:min(4.0816326531vw + 34.693877551px,80px) min(8.1632653061vw + 69.387755102px,80px);
    font-size: 1.2rem;
}

.index_intro__copy {
        flex-direction: column;
        gap: min(1.6326530612vw + 13.8775510204px,40px)
}

.index_intro__copy__text {
        writing-mode: horizontal-tb
}

.index_intro__copy__text span.u-mr15 {
        margin-right: 15px;
        margin-top: 0px
}



#reiki{
   padding: 60px 0;
}
.index_intro,
.index_reiki{
	background-color:  #FFEDF3;
}



/*qa*/
.qa{
    margin: 60px auto;
    padding: 60px;
}

.cp_qa03 {
	margin: 0 36px;
}

.cp_qa03 .cp_actab {
  position: relative;
  width: 100%;
  margin: 0 0 1em 0;
  color: #1b2538;
}
.cp_qa03 .cp_actab input {
  display: none;
}
/* 質問 */
.cp_qa03 .cp_actab label {
  font-weight: bold;
  line-height: 1.6em;
  position: relative;
  display: block;
  margin: 0 0 0 0;
  padding: 1em 2em 1em 3.5em;
  cursor: pointer;
  text-indent: 1em;
  border-radius: 0.5em;
  background: #e8dcf2;
  transition: transform 3s;
}
.cp_qa03 .cp_actab label::before {
  content: 'Q';
  font-size: 1.5em;
  margin-left: -2em;
  padding-right: 0.5em;
}
.cp_qa03 .cp_actab label:hover {
  color: #800080;
  transition: all 3s;
}
/* --質問の＋アイコン */
.cp_qa03 .cp_actab label::after {
  position: absolute;
  top: 0;
  right: 0;
  content: '+';
  font-size: 1.7em;
  font-weight: bold;
  line-height: 2em;
  display: inline-block;
  width: 2em;
  height: 2em;
  transition: transform 3s;
}
/* 答え */
.cp_qa03 .cp_actab .cp_actab-content {
  position: relative;
  overflow: hidden;
  max-height: 0;
  padding: 0 0 0 2.5em;
  border-radius: 0 0 0.5em 0.5em;
  transition: max-height 1.5s;
}
.cp_qa03 .cp_actab .cp_actab-content::before {
  position: absolute;
  content: 'A';
  font-size: 1.5em;
  margin: 0.4em 0 0 -1em;
  padding: 0;
}
.cp_qa03 .cp_actab .cp_actab-content p {
  margin: 1em 1em 1em 0.5em;
}
/* 質問を開いた時の仕様 */
/* --答えの高さ */
.cp_qa03 .cp_actab input:checked ~ .cp_actab-content {
  max-height: 100em;
  border: 10px solid rgba(27,37,56,0.1);
    transition-duration: 3s;
}
/* 質問をクリックした時のアイコンの動き */
.cp_qa03 .cp_actab input:checked ~ label {
  color: #800080;
  border-radius: 0.5em 0.5em 0 0;
  transition-duration: 3s;
}
/* 質問をクリックした時の+の動き */
.cp_qa03 .cp_actab input[type=checkbox]:checked + label::after {
  transform: rotateZ(45deg);
  transform-origin: 50% 50%;
  transition-duration: 3s;
}


/*固定する背景*/
.parabg {
  box-sizing: border-box;
  color: #000;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 10%;
}
.parallax-bg {
  background-image: url(img/star.jpg);
  background-attachment: fixed;
  background-position: left 30% center;
  background-size: cover;
  background-repeat: no-repeat;
}
 
/*スクロールするコンテンツ*/
.scrollbox1 {
  background-color: #FFEDF3;
}
.scrollbox2 {
  background-color: #FFEDF3;
}

#price,
#qa{
   background-color: #ffffff;
   margin-top: 60px;
}

.card-wrap{
  padding: 0 60px 0px;
}
.qa-wrap{
  padding: 0 60px 60px;
}
.detail-wrap{
  padding: 0 60px 0;
}
.detailh2{
  margin: 0 0 30px 0;
}

/* pricebox */

.sample04-b .card {
  display: flex;
  flex-wrap: wrap;
}

.sample04-b .card .item {
  display: flex;
  width: 32%;
}

.sample04-b .card .item:not(:nth-child(3n)) {
  margin-right: 2%;
}

.sample04-b .card .item:nth-child(n+4) {
  margin-top: 15px;
}


.sample04-b .card .txt {
  background: #FFEDF3;
  margin: 5px 0 15px;
  padding: 30px;
  flex-grow: 1; /* ★ポイント★ */
}

.title{
  font-weight: bold;
  font-size: 1.2rem;
}

.card li{
  list-style: none;
}

#footer{
	padding: 60px;
	background-color: #FFEDF3;
}

.footer-wrap{
  display: flex;
  flex-wrap: wrap;
	margin-left: auto;
	margin-right: auto;
    padding-left: min(1.6326530612vw + 13.8775510204px,60px);
    padding-right: min(1.6326530612vw + 13.8775510204px,60px);
    width: min(77.9591836735vw + 82.6530612245px,1330px);
}

#footer .footer-wrap .item{
  width: 40%;
}

.access {
  margin-right: 20px;
  border-right: 1px solid #666666;
}

.contact{
	padding-left: 30px;
}

.footer-logo{
	width: 160px;
	margin: 0 auto 60px;
}

.contact-box{
	display: inline-block;
}

.contact-box p{
    width: 40px;
    margin-right: 45px;
    float: left;
}

.copy{
	margin: 4px auto;
	width: 100%;
}

.copy p{
	margin: 0;
	padding: 0;
	text-align: center;
}

.shapedividers_com-4135{
	overflow:hidden;
	position:relative;
}
.shapedividers_com-4135::before{
	content:'';
	font-family:'shape divider from ShapeDividers.com';
	position: absolute;
	bottom: -1px;
	left: -1px;
	right: -1px;
	top: -1px;
	z-index: 20;
	pointer-events: none;
	background-repeat: no-repeat; 
	background-size: 100% 90px;
	background-position: 50% 0%;    
	background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23fbd8c2"/><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" opacity=".5" fill="%23fbd8c2"/><path d="M0 1.85c2.56-.83 7.68-.3 11.79-.42 4.1-.12 6.86-.61 9.58-.28 2.73.33 5.61 1.17 8.61 1 3-.19 4.73-.82 5.3-.84V.1H0z" opacity=".5" fill="%23fbd8c2"/></svg>'); 
}
.kv{
	background-color: #e9eef4;
	position: relative;
	z-index: 10;
}

.kv__logo {
    position: absolute;
    left: 50%;
    top: 46%;
    transform: translate(-50%,-50%);
    transition: 1.2s ease .10s;
    z-index: 100;
}


@media (min-width:768px){
.shapedividers_com-4135::before{
background-size: 100% 90px;
background-position: 50% 0%;   
}
.m-container{
    width: 100%;
}
.m-container-in{
    margin: 0 auto 60px;
    padding: 0 40px;
}
.rootwrap{
    width: 100%;
    clear: both;
    margin-bottom: 60px;
    display: inline-block;
}
.left{
   float: left;
   width: 60%;
}

.right{
   float: right;
   width: 30%;
   margin-left: 10%;
   
}
 
}
 
@media (min-width:1025px){
.shapedividers_com-4135::before{ 
bottom: -0.1vw;
left: -0.1vw;
right: -0.1vw;
top: -0.1vw; 
background-size: 100% 90px;
background-position: 50% 0%;  
background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23ffedf3"/><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" opacity=".5" fill="%23ffedf3"/><path d="M0 1.85c2.56-.83 7.68-.3 11.79-.42 4.1-.12 6.86-.61 9.58-.28 2.73.33 5.61 1.17 8.61 1 3-.19 4.73-.82 5.3-.84V.1H0z" opacity=".5" fill="%23ffedf3"/></svg>'); 
}
}
@media (min-width:2100px){
.shapedividers_com-4135::before{
background-size: 100% calc(2vw + 90px);
}
}

.shapedividers_com-8266 {
  overflow: hidden;
  position: relative;
  height: 100px;
}
.shapedividers_com-8266::before {
  content: "";
  position: absolute;
  z-index: 3;
  pointer-events: none;
  background-repeat: no-repeat;
  bottom: -0.1vw;
  left: -0.1vw;
  right: -0.1vw;
  top: -0.1vw;
  transform: scaleX(4);
  transform-origin: 100% 0;
  animation: 10s infinite alternate shape-anim-8266 linear;
  background-size: 100% 100px;
  background-position: 50% 0%;
  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23e8dcf2"/><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" opacity=".5" fill="%23e8dcf2"/><path d="M0 1.85c2.56-.83 7.68-.3 11.79-.42 4.1-.12 6.86-.61 9.58-.28 2.73.33 5.61 1.17 8.61 1 3-.19 4.73-.82 5.3-.84V.1H0z" opacity=".5" fill="%23e8dcf2"/></svg>');
}

@media (min-width: 2100px) {
  .shapedividers_com-8266::before {
    background-size: 100% calc(2vw + 100px);
  }
}

@keyframes shape-anim-8266 {
  100% {
    transform: scaleX(4) translateX(calc(100% - (100% / 4)));
  }
}
.kv.content {
  padding: 5rem;
}
.kv .content-u {
  padding: 2rem;
  text-align: center;
}

.kv .pink {
  background: #e8dcf2;
  padding: 6rem;
}
.detail{
  background-color: #e9eef4;
  padding: 60px 0 60px;
}

#head .shapedividers_com-8266 {
  background-color: #e9eef4;
}


.detail.content {
  padding: 2rem;
}

.js-anim_elm {
    backface-visibility: hidden
}

.js-anim_elm.-base {
    display: block;
    filter: blur(10px);
    opacity: 0;
    transform: translateY(2em) rotate(.0001deg);
    transition: opacity .6s cubic-bezier(.39,.575,.565,1) .2s,filter .6s cubic-bezier(.39,.575,.565,1) .2s,transform 1s cubic-bezier(.215,.61,.355,1) .2s
}

.js-anim_elm.-base.is-act {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0) rotate(.0001deg)
}

.js-anim_elm.-blur_base {
    filter: blur(10px);
    opacity: 0;
    transform: translateY(1.5em rotate(.0001deg));
    transition: opacity .4s cubic-bezier(.39,.575,.565,1),transform .4s cubic-bezier(.215,.61,.355,1)
}

.js-anim_elm.-blur_base figure {
    overflow: hidden
}

.js-anim_elm.-blur_base img {
    -webkit-mask-image: url(img/bg1.jpg);
    mask-image: url(img/bg1.jpg);
    mask-mode: alpha;
    -webkit-mask-position: center bottom;
    mask-position: center bottom;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: auto 200%;
    mask-size: auto 200%
}

.js-anim_elm.-blur_base.is-act {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0) rotate(.0001deg)
}

.js-anim_elm.-blur_base.is-act img {
    animation: mask-animation 3s cubic-bezier(.115,.405,.24,1) 0s forwards
}

.js-anim_elm.-orderlist>* {
    display: block;
    filter: blur(10px);
    opacity: 0;
    transform: translateY(2em) rotate(.0001deg);
    transition: opacity .4s cubic-bezier(.39,.575,.565,1) .2s,filter .4s cubic-bezier(.39,.575,.565,1) .2s,transform 1s cubic-bezier(.215,.61,.355,1) .2s
}

.js-anim_elm.-orderlist>:nth-child(0) {
    transition-delay: -.4s
}

.js-anim_elm.-orderlist>:first-child {
    transition-delay: 0s
}

.js-anim_elm.-orderlist>:nth-child(2) {
    transition-delay: .4s
}

.js-anim_elm.-orderlist>:nth-child(3) {
    transition-delay: .8s
}

.js-anim_elm.-orderlist>:nth-child(4) {
    transition-delay: 1.2s
}

.js-anim_elm.-orderlist>:nth-child(5) {
    transition-delay: 1.6s
}

.js-anim_elm.-orderlist>:nth-child(6) {
    transition-delay: 2s
}

.js-anim_elm.-orderlist>:nth-child(7) {
    transition-delay: 2.4s
}

.js-anim_elm.-orderlist>:nth-child(8) {
    transition-delay: 2.8s
}

.js-anim_elm.-orderlist>:nth-child(9) {
    transition-delay: 3.2s
}

.js-anim_elm.-orderlist>:nth-child(10) {
    transition-delay: 3.6s
}

.js-anim_elm.-orderlist>:nth-child(11) {
    transition-delay: 4s
}

.js-anim_elm.-orderlist>:nth-child(12) {
    transition-delay: 4.4s
}

.js-anim_elm.-orderlist>:nth-child(13) {
    transition-delay: 4.8s
}

.js-anim_elm.-orderlist>:nth-child(14) {
    transition-delay: 5.2s
}

.js-anim_elm.-orderlist>:nth-child(15) {
    transition-delay: 5.6s
}

.js-anim_elm.-orderlist>:nth-child(16) {
    transition-delay: 6s
}

.js-anim_elm.-orderlist>:nth-child(17) {
    transition-delay: 6.4s
}

.js-anim_elm.-orderlist>:nth-child(18) {
    transition-delay: 6.8s
}

.js-anim_elm.-orderlist>:nth-child(19) {
    transition-delay: 7.2s
}

.js-anim_elm.-orderlist>:nth-child(20) {
    transition-delay: 7.6s
}

.js-anim_elm.-orderlist.is-act>* {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0)
}

.js-anim_elm.-blur_orderlist>* {
    filter: blur(10px);
    opacity: 0;
    transform: translateY(1.5em) rotate(.0001deg);
    transition: opacity 1s cubic-bezier(.39,.575,.565,1),transform 1s cubic-bezier(.215,.61,.355,1)
}

.js-anim_elm.-blur_orderlist>:nth-child(0) {
    transition-delay: -.3s
}

.js-anim_elm.-blur_orderlist>:first-child {
    transition-delay: 0s
}

.js-anim_elm.-blur_orderlist>:nth-child(2) {
    transition-delay: .3s
}

.js-anim_elm.-blur_orderlist>:nth-child(3) {
    transition-delay: .6s
}

.js-anim_elm.-blur_orderlist>:nth-child(4) {
    transition-delay: .9s
}

.js-anim_elm.-blur_orderlist>:nth-child(5) {
    transition-delay: 1.2s
}

.js-anim_elm.-blur_orderlist>:nth-child(6) {
    transition-delay: 1.5s
}

.js-anim_elm.-blur_orderlist>:nth-child(7) {
    transition-delay: 1.8s
}

.js-anim_elm.-blur_orderlist>:nth-child(8) {
    transition-delay: 2.1s
}

.js-anim_elm.-blur_orderlist>:nth-child(9) {
    transition-delay: 2.4s
}

.js-anim_elm.-blur_orderlist>:nth-child(10) {
    transition-delay: 2.7s
}

.js-anim_elm.-blur_orderlist>:nth-child(11) {
    transition-delay: 3s
}

.js-anim_elm.-blur_orderlist>:nth-child(12) {
    transition-delay: 3.3s
}

.js-anim_elm.-blur_orderlist>:nth-child(13) {
    transition-delay: 3.6s
}

.js-anim_elm.-blur_orderlist>:nth-child(14) {
    transition-delay: 3.9s
}

.js-anim_elm.-blur_orderlist>:nth-child(15) {
    transition-delay: 4.2s
}

.js-anim_elm.-blur_orderlist>:nth-child(16) {
    transition-delay: 4.5s
}

.js-anim_elm.-blur_orderlist>:nth-child(17) {
    transition-delay: 4.8s
}

.js-anim_elm.-blur_orderlist>:nth-child(18) {
    transition-delay: 5.1s
}

.js-anim_elm.-blur_orderlist>:nth-child(19) {
    transition-delay: 5.4s
}

.js-anim_elm.-blur_orderlist>:nth-child(20) {
    transition-delay: 5.7s
}

.js-anim_elm.-blur_orderlist>* figure {
    overflow: hidden
}

.js-anim_elm.-blur_orderlist>* img {
    -webkit-mask-image: url(../../img/common/parts/mask.webp);
    mask-image: url(../../img/common/parts/mask.webp);
    mask-mode: alpha;
    -webkit-mask-position: center bottom;
    mask-position: center bottom;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: auto 200%;
    mask-size: auto 200%
}

.js-anim_elm.-blur_orderlist.is-act>* {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0)
}


.js-anim_elm.-blur_orderlist.is-act>* img {
    animation: mask-animation 3s cubic-bezier(.115,.405,.24,1) 0s forwards
}

.bold{
	font-weight: bold;
}

ul{
    padding-inline-start: 0;
   }

.map {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9のアスペクト比 */
    height: 0;
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


@media only screen and (max-width: 1023px) {
}

@media only screen and (max-width: 767px) {
	#price{
		padding: 20px 20px 0;
		margin: 0 auto;
	}
	#qa{
		padding: 20px;
		margin: 0 auto 40px;
	}

	.index_intro,
	.index_reiki{
		display: inline-flex;
}
.index_intro {
    font-size: 1rem;
}

	h3{
	    margin: 0 0 30px;
	}
	.scrollbox1,
	.scrollbox2,
	.scrollbox3{
		margin: 0;
	}
	.parabg{
		padding: 20%;
	}
	

    .index_intro__copy {
        flex-direction: column;
        gap: min(1.6326530612vw + 13.8775510204px,40px)
    }f

    .index_intro__copy__text {
        writing-mode: horizontal-tb
    }

    .index_intro__copy__text span.u-mr15 {
        margin-right: 0!important;
        margin-top: 15px
    }

    .p-index_parallax-bg__bg.-bg01 {
        background-image: url(../../img/index/nature_bg_sp@2x.webp)
    }

    .p-index_parallax-bg__bg.-bg02 {
        background-image: url(../../img/index/cuisine_bg_sp@2x.webp)
    }

    .p-index_parallax-bg__bg.-bg03 {
        background-image: url(../../img/index/purity_bg_sp@2x.webp)
    }

    .p-index_cuisine .c-title-primary,.index_reiki .c-title-primary,.p-index_purity .c-title-primary {
        height: 90px
    }

    .p-index_cuisine .c-title-primary img,.index_reiki .c-title-primary img,.p-index_purity .c-title-primary img {
        height: 100%;
        -o-object-fit: fill;
        object-fit: fill
    }

    .p-index_about .c-title-primary .en {
        height: 50px
    }

    .p-index_about .c-title-primary .en img {
        height: 100%;
        -o-object-fit: fill;
        object-fit: fill
    }

    .p-index_about__inner {
        flex-direction: column
    }

    .p-index_about__side {
        max-width: 100%;
        min-width: 100%;
        position: relative
    }

    .p-index_about__navi__item:nth-of-type(2) {
        margin-top: 0
    }
    .detail-wrap{
	  padding: 0 5%;
	  margin: 0;
	  max-width: fit-content;
	}

    .card{
    	display: block;
    }
    .card-wrap,
    .qa-wrap{
    	padding: 0;
    }
    .cp_qa03,
    .qa-wrap{
    	margin: 0;
    }

    ul.card{
    	padding: 0;
    }
    .card .item{
    	width: 100% !important;
    	margin: 0 !important;
    }
    #footer{
    	padding: 40px 20px;
    }
    .footer-logo{
    	width: 140px;
    	margin: 0 auto 40px;
    }
    .footer-wrap{
    	display: block;
		width: 100% !important;
		padding: 0;
    }
	#footer .footer-wrap .item{
		width: 100%;
	}
	.access,
	.contact{
		margin: 0;
		border-right: none;
	}
	.contact{
		padding-left: 0;
	}
	
}

@media only screen and (max-width: 567px) {
    .wp-pagenavi>:not(.previouspostslink):not(.nextpostslink) {
        min-width:2em
    }

    .c-container {
        width: 100%;
    }
    .m-container{
       padding: 0 20px;
       margin-bottom: 30px;
    }
    .rootwrap{
    width: 100%;
    margin-bottom: 30px;
	}
	.left{
	   float: none;
	   width: 100%;
	}

	.right{
	   float: none;
	   width: 100%;
	}

}

@media only screen and (max-width: 374px) {
    .u-visible-min {
        display:none!important
    }

    .u-hidden-min {
        display: block!important
    }

    .u-hidden-min.-f {
        display: flex!important
    }

    .u-hidden-min.-i {
        display: inline!important
    }

    .u-hidden-min.-ib {
        display: inline-block!important
    }
}



