@charset "utf-8";
:root {
  --yuai-pink01 :#e494b3;
  --yuai-pink02 :#e68474;
  --yuai-pink03 :#fde1d6;
  --yuai-pink04 :#fff4ee;
 
}
html {
  margin: 0;
  padding: 0;
  overflow-y: scroll;
  height: 100%;
  font-size: 0.67vw;
  font-size: 62.5%;
}
body {
  margin: 0;
  padding: 0;
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
  color: #1e2123;
  font-size: 1.5rem;
  font-feature-settings: "palt" 1;
}
@media (max-width: 767px) {
  body {
    font-size: 1.3rem;
  }
}
label {
  width: auto;
  max-width: auto;
}
p {
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: underline;
}
a:link {
  color: inherit;
  text-decoration: underline;
}
a:visited {
  color: inherit;
  text-decoration: underline;
}
a:hover {
  color: inherit;
  text-decoration: none;
}
a:active {
  color: rgba(71, 71, 71, 1.00);
}
a img {
  transition: 0.5s;
}
a:hover img {
  opacity: 0.8;
  transition: 0.5s;
}
@media screen and (min-width:598px) {
  a.tel_link {
    color: inherit;
    text-decoration: none;    
  }
}
.hover_img {
  overflow: hidden;
  display: block;
}
.hover_img img{
 transition:1s all;
}
.hover_img img:hover{
  transform:scale(1.04,1.04);
  transition:0.4s all;
}

/*	header#globalHeader　----------------------------------------------------*/
header#globalHeader {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 9999;
}
.navbar-collapse {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
}
ul.navbar-nav {
  list-style: none;
  padding: 0 2rem 0 0;
  margin: 0;
  gap: 3rem;
}
ul.navbar-nav li {
  list-style: none;
  display: inline;
  padding: 0;
  margin: 0;
}
ul.navbar-nav li a {
  text-decoration: none;
  color: #c14e34;
  font-size: 1.8rem;
  font-weight: 700;
}
ul.sub-nav {
  padding: 0 2rem 1rem 0;
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
ul.sub-nav li a {
  text-decoration: none;
}
ul.sub-nav li.line a {
  display: block;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  background-color: #00b900;
  border-radius: 10rem;
  width: 16rem;
  text-align: center;
  padding-block: 1rem;
}

ul.sub-nav li.access a {
  color: #c14e34;
  font-size: 1.8rem;
  font-weight: 700;
}
ul.sub-nav li.access a i {
  margin-right: 0.6rem;
}
header#globalHeader.fixed {
  position: sticky;
  top: 0px;
  left: 0px;

  animation: DownAnime 1s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}
.navbar-brand {
  padding: 2.5rem 3rem;
  position: relative;
}
header#globalHeader.fixed .navbar-brand img {
  zoom: 0.5;
}
/*トグルボタン----------------------------------*/
.toggle {
  position: absolute;
  top: 30px;
  right: 15px;
  background-color: transparent;
  border-style: none;
  z-index: 9999;
}
.toggle:focus {
  outline: none;
}
.pc {
  display: none;
}
@media (min-width: 991px) {
  .toggle {
    display: none;
  }
}
@media (min-width: 744px) {
  .smp {
    display: none;
  }
  .pc {
    display: inline-block;
  }
}
@media (max-width: 743px) {
  .navbar-brand {
    padding: 1rem;
  }
  .navbar-brand img {
    zoom: 0.6;
  }
}
@media (max-width: 991px) {
  body.active {
    height: 100%;
    overflow: hidden;
  }
  .navbar-collapse {
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9998;
  }
  ul.navbar-nav {
    height: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  ul.navbar-nav li {
    display: block;
    margin: 0 0 1rem 0;
  }
  .navbar {
    text-align: center;
   }
   ul.sub-nav {
    width: 100%;
    padding: 0 0 2rem 0;
    position: absolute;
    left: 0;
    bottom: 5%;
    justify-content: center;
   }
}
.navbar-toggle-anime, .navbar-toggle-anime span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.navbar-toggle-anime {
  position: relative;
  width: 26px;
  height: 26px;
}
.navbar-toggle-anime span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--yuai-pink01);
  border-radius: 4px;
}
.navbar-toggle-anime span:nth-of-type(1) {
  top: 0;
}
.navbar-toggle-anime span:nth-of-type(2) {
  top: 10px;
}
.navbar-toggle-anime span:nth-of-type(3) {
  bottom: 5px;
}
.navbar-toggle-anime.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.navbar-toggle-anime.active span:nth-of-type(2) {
  opacity: 0;
}
.navbar-toggle-anime.active span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(315deg);
  transform: translateY(-9px) rotate(315deg);
}

/*	footer#globalFooter　----------------------------------------------------*/
footer#globalFooter {
	clear: both;
  width: 100%;
  padding:1.68rem;
  position: relative;
}
.footer {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  background-color: var(--yuai-pink03);
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  padding: 2rem;
  justify-content: space-between;
}
.footer:before {
  content: "";
  background-image: url(../images/monstera03_left.svg);
  background-repeat: none;
  width: 11.8rem;
  height: 7rem;
  position: absolute;
  top: -1rem;
  left: -1rem;
}
.footer:after {
  content: "";
  background-image: url(../images/monstera03_right.svg);
  background-repeat: none;
  width: 9.8rem;
  height: 6.3rem;
  position: absolute;
  top: -1rem;
  right: -1rem;
}
.flogo {
  position: relative;
  z-index: 10;
}
.fnav {
  position: relative;
  z-index: 10;
}
.fnav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fnav ul li {
  margin-bottom: 1rem;
}
.fnav ul li a {
  color: var(--yuai-pink02);
  text-decoration: none;
  font-weight: 700;
}
.page-top {
  right: -50px;
  bottom: 20px;
  position: fixed;
  z-index: 9999;
}
.page-top a {
  border-radius: 10rem;
  background-color: var(--yuai-pink01);
  background-size: 40px 40px;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  display:block;
  position: relative;
}
.page-top a:after {
  content: "";
  display: block;
  background: #ffffff;
  height: calc(tan(60deg) * 60px / 2);
  width: 10px;
  height: 10px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  position: absolute;
  top: 50%;
  left:50%;
  transform: translate(-50%,-50%);
}
/* copyright　----------------------------------------------------*/
footer#globalFooter p.copyright {
	text-align: center;
  width: 100%;
  font-size: 1.2rem;
  color: var(--yuai-pink02);
}

@media (max-width:743px) {
  .footer {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    justify-content: center;
  }
  .flogo img {
    zoom: 0.7;
    margin-bottom: 3rem;
  }
  .fnav {
    text-align: center;
  }
}


/* common ----------------------------------------------------*/
.contentSec {
  margin-bottom: 15rem;
}
.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flex-start {
	justify-content: flex-start;
}
.flex-center {
	justify-content:center;
}
.flex-end {
	justify-content:flex-end;
}
.flex-around {
	justify-content:space-around;
}
.center_center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width:767px) {
	.flex {
		display: block;
	}
  .contentSec {
    margin-bottom: 5rem;
  }
}

/*  ------------------------------------------------------------------------------*/
/* BUTTON */

.button a {
  display: inline-block;
  width:100%;
  max-width: 260px;
  text-align: center;
  border: 1px solid #ffffff;
  background-color: #fff;
  color: var(--yuai-pink02);
  text-decoration: none!important;
  font-weight: bold;
  padding: 12px 0;
  border-radius: 10rem;
  transition: .4s;

  text-decoration: none;
}
.button a:hover {
  background-color: var(--yuai-pink02);
  border-color: #fff;
  color: #fff;
}

/*　privacy-------------------------------------------------------------------------*/
.privacy {
  text-align: left;
  padding-bottom: 6rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.privacy h2 {
  font-size: 2rem;
  margin-top: 5rem;
  margin-bottom: 1.5rem;
}
.privacy h3 {
  font-size:1.8rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.privacy h4 {
  font-size: 1.7rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.privacy h5 {
  font-size: 1.6rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.privacy h6 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.privacy p {
  margin-bottom: 1.5rem;
}
.privacy ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 3rem;
  line-height: 1.6;
}
.privacy ul li{
  margin-bottom: 0.7rem;
}
.privacy ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 3rem;
  line-height: 1.6;
}
.privacy ol li {
  margin-bottom: 0.7rem;
}
.privacy a {
  text-decoration: underline;
}

/* =========================================
MV
========================================= */

.mv{
  position: relative;
  width: 100%;
  height: 100%;
}
.mv .mc {
  position: absolute;
  top: 45%;
  left: 10%;
  transform: translateY(-50%);
}
.mv .mc img {
  width: 22.9166666666vw;
}

@media (max-width: 743px) {
  .mv .mc {
    position: absolute;
    top: auto;
    left: 50%;
    bottom: 5%;
    transform: translate(-50%,-0%);
  }
  .mv .mc img {
    width: auto;
  }
}

/* =========================================
Common
========================================= */
.title {
  text-align: center;
  margin-bottom: 4rem;
}
.title span {
  font-family: serif;
  color: var(--yuai-pink01);
  font-size: 3rem;
}
.title h1,
.title h2{
  font-weight: 400;
  font-size: 3rem;
}
section {
  padding-block: 6rem;
}
/* =========================================
About
========================================= */

.about .container {
  position: relative;
}
.about .container:before {
  content: "";
  background-image: url(../images/monstera01_left.svg);
  background-repeat: none;
  width: 21rem;
  height: 12.3rem;
  position: absolute;
  top: 0;
  left: 0;
}
.about .container:after {
  content: "";
  background-image: url(../images/monstera01_right.svg);
  background-repeat: none;
  width: 21.6rem;
  height: 13.8rem;
  position: absolute;
  top: 0;
  right: 0;
}
.about h2{
  text-align: center;
  color: var(--yuai-pink01);
  margin-bottom: 4rem;
}

.about .row{}

.about article {}

.about img {
  margin-bottom: 3rem;
}

.about p {
  margin-bottom: 3rem;
  font-size: 1.8rem;
}

.profile {
  margin-top: 2rem;
  background-color: var(--yuai-pink04);
  padding: 3rem;
  border-radius: 2rem;
}
.about .profile img {
  margin-bottom: 0.7rem;
}
.profile h3 {
  font-size: 130%;
  margin-bottom: 1rem;
}

.profile table {
  margin-bottom: 1.5rem;
}
.profile p{
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.profile p.job {
  margin-bottom: 0;
}
.profile table tbody{}

.profile table tr {}

.profile table th{
  font-weight: 400;
  padding-right: 1.5rem;
  padding-bottom: 1rem;
}

.profile table td{
  padding-bottom: 1rem;
}

.profile ul {
  margin: 0;
  padding: 0 0 0 15px;
}

.profile li {
  margin-bottom: 0.5rem;
}


/* =========================================
Menu
========================================= */

.menu {
  background-color: #fde1d6;
  position: relative;
}
.menu .container {
  
}
.menu:before {
  content: "";
  background-image: url(../images/monstera02_left.svg);
  background-repeat: none;
  width: 21rem;
  height: 12.3rem;
  position: absolute;
  top: 2rem;
  left: 2rem;
}
.menu .container:after {
  content: "";
  background-image: url(../images/monstera02_right.svg);
  background-repeat: none;
  width: 21.6rem;
  height: 13.8rem;
  position: absolute;
  top: 2rem;
  right: 2rem;
}
.menu__box {
  background-color: #ffffff;
  border-radius: 2rem;
  position: relative;
  z-index: 10;
  padding-bottom: .5rem;
}

.menu__box h3 {
  border-radius: 2rem 2rem 0 0;
  background-color: var(--yuai-pink02);
  text-align: center;
  color: #ffffff;
  padding-block: 1rem;
  font-size: 2.2rem;
}

.menu__box .img {
  margin: 1.5rem;
}
.menu__box p.center {
  margin-bottom: 2rem;
}
.menu-content {
  padding-inline: 1.5rem;
  margin-bottom: 1.5rem;
}

.menu__inner{
  padding: 0 1.5rem 1.5rem;
  display: flex;
}

.menu__inner-ttl{
  background-color: var(--yuai-pink02);
  border-radius: 1rem;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  padding-inline: 1.5rem;
  color: #ffffff;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu__inner-content{}

.menu__block {
  margin: 0 1.5rem 1.5rem;
  background-color: var(--yuai-pink04);
  padding: 1rem;
  border-radius: 1.5rem;
}

.menu__block h4 {
  color: var(--yuai-pink02);
  text-align: center;
  margin-bottom: 0.5rem;
}

.menu__block ul {
  padding: 0;
  list-style: none;
  padding-left: 0.6rem;
}

.menu__block li {
  position: relative;
}
.menu__block li:before {
  content: "●";
  color: var(--yuai-pink02);
  margin-right: 0.5rem;
}

/* =========================================
Price
========================================= */

.price {}

.price__wrap {}

.price__wrap table{
  width: 100%;
}
.price__wrap table th{
  padding: 1rem 1rem;
}

.price__wrap table td{
  padding: 1rem 1rem;
  text-align: right;
}
.price__wrap thead{}

.price__wrap tbody{
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.price__wrap tr{}

.price__wrap tbody th{
  padding: 3rem 1rem;
  border-bottom: 1px solid #ccc;

}

.price__wrap tbody td{
  padding: 3rem 1rem;
  border-bottom: 1px solid #ccc;
  text-align: right;
}

.price__wrap p{
  margin-top: 1rem;
}


/* =========================================
Reserve
========================================= */

.reserve {
  background-color: #fde1d6;
  position: relative;
}
section.reserve{
  padding-bottom: 0;
}
.reserve:before {
  content: "";
  background-image: url(../images/monstera02_left.svg);
  background-repeat: none;
  width: 21rem;
  height: 12.3rem;
  position: absolute;
  top: 2rem;
  left: 2rem;
}
.reserve .container:after {
  content: "";
  background-image: url(../images/monstera02_right.svg);
  background-repeat: none;
  width: 21.6rem;
  height: 13.8rem;
  position: absolute;
  top: 2rem;
  right: 2rem;
}

.reserve__table .reserve__table-inner{
  background-color: #ffffff;
  border-radius: 2rem;
  margin-bottom: 2rem;
  padding: 3rem;
  border: 1px solid var(--yuai-pink02);
}

.reserve__table table{
  width: 100%;

}

.reserve__table thead {}
.reserve__table thead th {
  text-align: center;
}
.reserve__table tbody {}

.reserve__table tr{}

.reserve__table th {
  padding: 1rem;
}

.reserve__table td{
  font-size: 3rem;
  padding: 1rem;
  text-align: center;
  color: var(--yuai-pink02);
}
.reserve__table td.close {
  color: #666;
}
.reserve__table p{
  margin-bottom: 2rem;
}

.reserve__inner{
  background-color: #ffffff;
  border-radius: 2rem;
  margin-bottom: 2rem;
  padding: 3rem;
}
.reserve__inner:last-child {
  border: 2px solid #ccc;
}
.reserve__inner h3{
  color: var(--yuai-pink02);
  margin-bottom: 1.5rem;
}

.reserve__inner h4{
  margin-bottom: 1rem;
}

.reserve__inner ul{
  padding: 0 0 0 2rem;
}

.reserve__wrap{
  background-color: var(--yuai-pink02);
  text-align: center;
  padding-block: 6rem;
  color: #fff;
}

.reserve__wrap h2 {
  font-size: 1.8rem;
  margin-top: 3rem;
}

.reserve__wrap p {}

.reserve__wrap .tel {
  font-size: 3rem;
  font-family: serif;
  line-height: 1;
  margin-bottom: 2rem;
}

.reserve__wrap .tel a{
  text-decoration: none;
  color: #fff;
}

/* =========================================
Access
========================================= */

.access p{
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 700;
}

.gmap {
    position: relative;
    width: 100%;
    padding-top: 36%;
    height: 0;
    margin-bottom: 3rem;
}

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

/* =========================================
Information
========================================= */

.info{}

ul.info__wrap{
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}
ul.info__wrap li a {
  padding: 3rem;
  display: block;
  text-decoration: none;
}
ul.info__wrap li:nth-child(odd) a {
  background-color: var(--yuai-pink04);
  border-radius: 2rem;

}

.info__wrap .date {
  margin-right: 2rem;
  font-weight: 700;
  color: #888;
}

.info__wrap .title {}

/* =========================================
Page
========================================= */

.page{
  padding-block: 20vw 5rem;
}

.page article{}

.page header{
  margin-bottom: 3rem;
}

.page header h2{
  margin-bottom: 1rem;
  color: #6594e0;/*文字色*/
  /*線の種類（点線）2px 線色*/
  border-bottom: dashed 2px #6594e0
}

.page header time{
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #666;
  text-align: right;
}


.page main{
  margin-bottom: 10rem;
}

.page main p{
  margin-bottom: 2em;
}

.page main p:last-child{}


.page footer{
  text-align: center;
}

.page footer a{}

.page footer a:hover{}


.cookie__block {
  margin-bottom: 2rem;
}
.cookie__block h3 {
  margin-bottom: 1rem;
}
.cookie__block p {
  margin-bottom: 2rem;
}
/*　Media Queries　-------------------------------------------------------*/
@media (max-width:1280px) {}
@media (max-width:1120px) {}
@media (max-width:919px) {}
@media (max-width:743px) {
  a.privacy {
    display: block;
    margin: 0.5rem auto;
  }
  .privacypolicy h2 {
    font-size: 2.4rem;
  }
  .cookie__block h2 {
    font-size: 2.4rem;
  }
  .about .container:before {
    background-size: 10.5rem 6.15rem;
    width: 10.5rem;
    height: 6.15rem;
    top: -2.5rem;
    left: 0;
  }
  .about .container:after {
    background-size: 11rem 6.5rem;
    width: 11rem;
    height: 6.5rem;
    top: -2.5rem;
    right: 0;
  }
  .about h2 {
    font-size: 1.7rem;
  }
  .about p {
    margin-bottom: 2rem;
    font-size: 1.5rem;
  }
  .profile table th {
    white-space: nowrap;
  }
  .menu__box {
    margin-bottom: 3.5rem;
  }
  .menu:before {
    background-size: 10.5rem 6.15rem;
    width: 10.5rem;
    height: 6.15rem;
    top: 2.5rem;
    left: 0;
  }
  .menu .container:after {
    background-size: 11rem 6.5rem;
    width: 11rem;
    height: 6.5rem;
    top: 2.5rem;
    right: 0;
  }
  .reserve:before {
    background-size: 10.5rem 6.15rem;
    width: 10.5rem;
    height: 6.15rem;
    top: 2.5rem;
    left: 0;
  }
  .reserve .container:after {
    background-size: 11rem 6.5rem;
    width: 11rem;
    height: 6.5rem;
    top: 2.5rem;
    right: 0;
  }
  .reserve__table .reserve__table-inner {
    padding: 1rem;
  }
  .reserve__table th {
    padding: 0.4rem;
  }
  .reserve__table td {
    font-size: 1.2rem;
    padding: 0;
  }
  .reserve__inner {
    padding: 1.6rem ;
  }
  .reserve__inner h3 {
  margin-bottom: 0.7rem;
  }
  .gmap {
    padding-top: 100%;

  }
}
@media (max-width:576px) {}
@media (max-width:414px) {}
@media (max-width:320px) {}