@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* lg 992 */
html,
body {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
  font-style: normal;
}

:root {
  --upu-blue: rgb(200, 230, 240);
  --upu-gold: rgb(200, 170, 90);
}

.bg-white,
body.bg-upu .bg-container:nth-child(even),
#indextop .bg-container:nth-child(even) {
  background-color: #fff;
}
.bg-upu,
body.bg-upu .bg-container:nth-child(odd),
#indextop .bg-container:nth-child(odd),
#sns.bg-upu,
#information.bg-upu {
  background-color: var(--upu-blue);
}
.text-upu {
  color: var(--upu-blue) !important;
}
.bg-upug {
  background-color: var(--upu-gold);
}
.text-upug,
.text-upug a {
  color: var(--upu-gold) !important;
}
.border-upug {
  border-color: var(--upu-gold);
}
.vh-100 {
  min-height: 100vh;
}
.container-fluid.pt-80,
.container.pt-80 {
  padding-top: 40px;
}
.container-fluid.pt-120,
.container.pt-120 {
  padding-top: 120px;
}
.pb-10 {
  padding-bottom: 100px;
}
/* 見出し */
h2 {
  display: flex;
  align-items: center;
  color: var(--upu-gold);
}
h2:before,
h2:after {
  content: "";
  height: 5px;
  flex-grow: 1;
  background-color: var(--upu-gold);
}
h2:before {
  margin-right: 10rem;
}
h2:after {
  margin-left: 10rem;
}
@media screen and (max-width: 768px) {
  h2:before {
    margin-right: 1rem;
  }
  h2:after {
    margin-left: 1rem;
  }
}
/* animation */
h2 {
  overflow: hidden;
  /*font-family: 'Zen Antique Soft', serif; */
  font-family: "Varta", sans-serif;
  font-weight: 300;
}
h2 span {
  display: block;
  transform: translate(0, 105%);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}
h2.-visible span {
  transform: translate(0, 0);
}
h2 span:nth-child(2) {
  transition-delay: 0.06s;
}
h2 span:nth-child(3) {
  transition-delay: 0.12s;
}
h2 span:nth-child(4) {
  transition-delay: 0.18s;
}
h2 span:nth-child(5) {
  transition-delay: 0.24s;
}
h2 span:nth-child(6) {
  transition-delay: 0.3s;
}
h2 span:nth-child(7) {
  transition-delay: 0.36s;
}
h2 span:nth-child(8) {
  transition-delay: 0.42s;
}
h2 span:nth-child(9) {
  transition-delay: 0.48s;
}
h2 span:nth-child(10) {
  transition-delay: 0.54s;
}
h2 span:nth-child(11) {
  transition-delay: 0.6s;
}
h2 span:nth-child(12) {
  transition-delay: 0.66s;
}
h2 span:nth-child(13) {
  transition-delay: 0.72s;
}
h2 span:nth-child(14) {
  transition-delay: 0.78s;
}
.bg-container:nth-child(even) h3,
#indextop .bg-container:nth-child(even) h3 {
  font-size: 1.5rem;
  color: var(--upu-blue);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}
.bg-container:nth-child(odd) h3,
#indextop .bg-container:nth-child(odd) h3,
#information h3.text-white {
  font-size: 1.5rem;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}
h3.text-gold {
  font-size: 1.5rem;
  color: var(--upu-gold) !important;
  text-shadow: none !important;
}

/* menu */
nav#menu {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  /*  opacity: 0.9; */
  justify-content: space-between;
  align-items: flex-start;

  font-family: "Zen Antique Soft", serif;
  padding: 0;
}
nav#menu h1 {
  padding: 10px;
  margin: 0;
}

nav#menu h1 img {
  height: 80px;
}

@media screen and (max-width: 576px) {
  nav#menu h1 img {
    height: 60px;
  }
}

nav button {
  z-index: 10;
  margin: 10px;
}
.navbar-light .navbar-toggler {
  border: 0;
  color: var(--upu-gold);
  border-radius: 0;
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(200, 170, 90, 1)' stroke-width='2' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

div#navmenu {
}

div#navmenu ul.navbar-nav {
  width: 100%;
  padding: 0px 20px 10px;
}
div#navmenu li.active a {
  color: #fff;
  transition: all 0.5s ease 0s;
}
div#navmenu li a:hover /*, nav#menu li a:active */ {
  text-decoration: none;
  color: #fff;
}

div#navmenu ul li {
  margin: 10px auto;
  border-bottom: solid 1px;
  width: 100%;
  text-align: left;
}
div#navmenu ul li.active {
  border-color: #fff;
}
div#navmenu ul li a {
  width: 100%;
  display: inline-block;
}

/* footer */
footer {
  padding: 1rem;
  text-align: center;
  background: #fff;
  font-weight: bold;
}
/* toppage */
div#home {
  width: 100%;
  padding: 0;
  position: relative;
  /* margin-top: 80px; */
}
div#home div#topimage {
  margin: 0;
}
div#home div#topimage img {
  width: 100%;
  margin: 0;
  position: relative;
  animation-name: fade;
  animation-duration: 3s;
}

div#home #topimage h1 {
  position: absolute;
  bottom: 40%;
  right: 0;
  z-index: 3;
}

div#home #topimage h1 img {
  width: 350px;
}

@media screen and (max-width: 576px) {
  div#home #topimage h1 {
    bottom: 10%;
    left: 0;
    right: auto;
  }
  div#home #topimage h1 img {
    width: 80%;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* effect */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.fadeUp2 {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUp_t,
.fadeUp_t2 {
  opacity: 0;
}

/* menu/campaign */
#estheticmenu p,
#campaign p {
  margin-bottom: 3rem;
}
img.campaign,
img.menu {
  max-width: 100%;
  margin: 1rem auto 1rem;
}
/* message */

div#message {
  padding: 50px 0;
}
div#message .row {
  align-items: center;
}
div.messagebody {
 }

div.messagebody p {
  opacity: 0;
  transition: opacity 3s;
  margin-bottom: 0;
  line-height: 2.5rem;
}

div.messageimg img {
  max-width: 100%;
  border-radius: 10px;
}

div.messagebody p.view {
  opacity: 1;
}

@media screen and (max-width: 982px) {
  div.messagebody div{
    padding: 20px;
    margin-top: 20px;
    background-color: rgba(255, 255, 255, 0.7);
}
}

/* map */
div.map {
  text-align: center;
}
div.map iframe {
  width: 90%;
  height: 60vh;
  border: solid 5px #fff;
  box-shadow: 0px 3px 5px #ccc;
  margin: 1rem auto 0;
}
@media screen and (max-width: 576px) {
  div.map iframe {
    width: 100%;
    height: 60vh;
    /*    border: 0;
    box-shadow: 0 0 0; */
    margin: 1rem auto;
  }
}
p.tel a {
  color: #000;
  text-decoration: none;
}
/* qanda */
div.qa_area {
  margin: 3rem auto;
}
div.qa_area h3 {
  color: #212529 !important;
  text-shadow: none !important;
  font-size: 1.12rem !important;
  padding: 1rem;
  text-align: left;
  padding-left: 50px;
  position: relative;
}
div.qa_area h3:before {
  content: "Q.";
  color: var(--upu-gold);
  font-weight: bold;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 2rem;
  text-align: center;
  position: absolute;
  top: 0%;
  left: 0;
}
div.qa_area_a {
  position: relative;
  text-align: left;
  padding: 8px 0 0 50px;
}
div.qa_area_a:before {
  content: "A.";
  color: var(--upu-blue);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica,
    Arial, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ",
    Meiryo, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: bold;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 2rem;
  text-align: center;
  position: absolute;
  top: 0%;
  left: 0;
}
div.qa_area_a p {
  line-height: 2rem;
  margin-bottom: 0;
}
/* reservation */
div#reservation {
  padding-bottom: 80px;
}
a.reservation_btn {
  padding: 1rem;
  color: var(--upu-gold);
  font-weight: bold;
  font-size: 1.2rem;
  margin: 3rem auto;
  display: inline-block;
  width: 100%;
}
div#reservation a.reservation_btn {
  border-color: var(--upu-gold);
  border-width: 3px;
}
a.reservation_btn span {
  font-weight: normal;
  font-size: 0.9rem;
}
div#reservation_float {
  position: fixed;
  bottom: 0px;
  width: 100%;
  text-align: center;
  border-top: solid 3px var(--upu-gold);
  display: none;
  z-index: 10;
}
div#reservation_float a.reservation_btn {
  background-color: #fff;
  margin: 0;
}
/* sns */
div#sns {
  padding-bottom: 80px;
}
div.snsaccount {
  text-align: center;
  padding-bottom: 20px;
}
div.snsaccount a {
  display: inline-block;
}
div.snsaccount img {
  width: 50px;
}
div.snsaccount span {
}

div.snsaccount a {
  padding: 20px;
  width: 100%;
  color: var(--upu-gold);
  border: solid 1px var(--upu-gold);
  border-radius: 5px;
  background-color: #fff;
  text-align: center;
  width: 100%;
}
div.snsaccount span {
  font-weight: bold;
  font-family: "Varta", sans-serif;
  margin-left: 0px;
  letter-spacing: 0.25rem;
  text-indent: 0.25rem;
  display: block;
  padding-top: 0.5rem;
}

div.snsaccount:hover,
div#reservation a.reservation_btn:hover,
a.item_btn:hover {
  opacity: 0.7;
}
a.reservation_btn:hover {
  opacity: 0.9;
}
/* about */
#about p {
  margin-bottom: 0;
  line-height: 2rem;
}
#about p:nth-child(3) {
  margin-bottom: 2rem;
}

#about img {
  border: solid 5px #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  width: 100%;
}
#about .about_message img {
  width: auto;
}
.about_message p {
  font-size: 2rem;
  font-weight: bold;
  color: var(--upu-gold);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
  vertical-align: middle;

  animation-name: fade;
  animation-duration: 3s;
}

#about ul {
  list-style: none;
  padding-left: 2rem;
}

@media screen and (max-width: 576px) {
  #about img,
  #about .about_message img {
    width: 100%;
  }
  .about_message p {
    font-size: 1.5rem;
  }
}
.about_body {
  justify-content: center;
  align-items: center;
}
.about_body p {
  margin: 0.5rem 0;
  text-indent: 1rem;
}

/* アルバム部分 */
.about_img_area {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
}
.about_img_area > div {
  width: 50%;
  padding: 10px;
  margin-top: 0;
}

.about_img_area > div:last-child {
  margin-top: 250px;
}

.about_img_area > div > div {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .about_img_area > div {
    width: 100%;
    margin: 0px auto !important;
  }
}

/* item */

div#item img {
  width: 100%;
}

/* recruit */
div#recruit div.snsaccount {
  text-align: center;
}
div#recruit div.snsaccount a {
  border: solid 3px var(--upu-gold);
  border-radius: 5px;
  background-color: #fff;
  padding: 10px;
}
div#recruit div.snsaccount span {
  padding-left: 1rem;
  display: inline;
}

/* sns_x */

div.sns_x_timeline {
  height: 500px;
  overflow: hidden;
}


  #gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  #gallery img {
    width: calc(33.33% - 10px);
    height: auto;
    max-width: 100%;
  }

  @media (max-width: 900px) {
    #gallery img {
      width: calc(50% - 10px);
    }
  }

  @media (max-width: 600px) {
    #gallery img {
      width: 100%;
    }
  }