@charset "UTF-8";
/* MVP.css v1.8 - https://github.com/andybrewer/mvp */
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&display=swap");
:root {
  --active-brightness: 0.85;
  --border-radius: 5px;
  --box-shadow: 2px 2px 10px;
  --color: #118bee;
  --color-accent: #118bee15;
  --color-bg-secondary: #e9e9e9;
  --color-link: #000;
  --color-secondary: #920de9;
  --color-secondary-accent: #920de90b;
  --color-shadow: #f4f4f4;
  --color-table: #118bee;
  --color-text: #000;
  --color-text-secondary: #999;
  --hover-brightness: 1.2;
  --justify-important: center;
  --justify-normal: left;
  --line-height: 1.5;
  --width-card: 285px;
  --width-card-medium: 460px;
  --width-card-wide: 800px;
  --width-content: 1080px;
  --font-size: 14px;
}

/* Layout */
article aside {
  background: var(--color-secondary-accent);
  border-left: 4px solid var(--color-secondary);
  padding: 0.01rem 0.8rem;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-family);
  font-size: var(--font-size);
  line-height: var(--line-height);
  margin: 0;
  overflow-x: hidden;
  padding: 0;
}

footer,
header,
main {
  margin: 0 auto;
  max-width: var(--width-content);
  padding: 3rem 1rem;
}

hr {
  background-color: var(--color-bg-secondary);
  border: none;
  height: 1px;
  margin: 4rem 0;
  width: 100%;
}

section {
  display: flex;
  flex-wrap: wrap;
  justify-content: var(--justify-important);
}

section img,
article img {
  max-width: 100%;
}

section pre {
  overflow: auto;
}

section aside {
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow) var(--color-shadow);
  margin: 1rem;
  padding: 1.25rem;
  width: var(--width-card);
}

section aside:hover {
  box-shadow: var(--box-shadow) var(--color-bg-secondary);
}

[hidden] {
  display: none;
}

/* Headers */
article header,
div header,
main header {
  padding-top: 0;
}

header {
  text-align: var(--justify-important);
}

header a b,
header a em,
header a i,
header a strong {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

header nav img {
  margin: 1rem 0;
}

section header {
  padding-top: 0;
  width: 100%;
}

/* Nav */
nav {
  align-items: center;
  display: flex;
  font-weight: bold;
  justify-content: space-between;
}

nav ul {
  list-style: none;
  padding: 0;
}

nav ul li {
  display: inline-block;
  margin: 0 0.5rem;
  position: relative;
  text-align: left;
}

/* Nav Dropdown */
nav ul li:hover ul {
  display: block;
}

nav ul li ul {
  background: var(--color-bg);
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow) var(--color-shadow);
  display: none;
  height: auto;
  left: -2px;
  padding: 0.5rem 1rem;
  position: absolute;
  top: 1.7rem;
  white-space: nowrap;
  width: auto;
  z-index: 1;
}

nav ul li ul::before {
  /* fill gap above to make mousing over them easier */
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -0.5rem;
  height: 0.5rem;
}

nav ul li ul li,
nav ul li ul li a {
  display: block;
}

/* Typography */
code,
samp {
  background-color: var(--color-accent);
  border-radius: var(--border-radius);
  color: var(--color-text);
  display: inline-block;
  margin: 0 0.1rem;
  padding: 0 0.5rem;
}

details {
  margin: 1.3rem 0;
}

details summary {
  font-weight: bold;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: var(--line-height);
}

mark {
  padding: 0.1rem;
}

ol li,
ul li {
  padding: 0.2rem 0;
}

p {
  margin: 0.75rem 0;
  padding: 0;
  width: 100%;
}

pre {
  margin: 1rem 0;
  max-width: var(--width-card-wide);
  padding: 1rem 0;
}

pre code,
pre samp {
  display: block;
  max-width: var(--width-card-wide);
  padding: 0.5rem 2rem;
  white-space: pre-wrap;
}

small {
  color: var(--color-text-secondary);
}

sup {
  background-color: var(--color-secondary);
  border-radius: var(--border-radius);
  color: var(--color-bg);
  font-size: xx-small;
  font-weight: bold;
  margin: 0.2rem;
  padding: 0.2rem 0.3rem;
  position: relative;
  top: -2px;
}

/* Links */
a {
  color: var(--color-link);
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
}

a:active {
  filter: brightness(var(--active-brightness));
  text-decoration: underline;
}

a:hover {
  filter: brightness(var(--hover-brightness));
  text-decoration: underline;
}

a b,
a em,
a i,
a strong,
button {
  border-radius: var(--border-radius);
  display: inline-block;
  font-size: medium;
  font-weight: bold;
  line-height: var(--line-height);
  margin: 0.5rem 0;
  padding: 1rem 2rem;
}

button {
  font-family: var(--font-family);
}

button:active {
  filter: brightness(var(--active-brightness));
}

button:hover {
  cursor: pointer;
  filter: brightness(var(--hover-brightness));
}

a b,
a strong,
button {
  background-color: var(--color-link);
  border: 2px solid var(--color-link);
  color: var(--color-bg);
}

article aside a {
  color: var(--color-secondary);
}

/* Images */
figure {
  margin: 0;
  padding: 0;
}

figure img {
  max-width: 100%;
}

figure figcaption {
  color: var(--color-text-secondary);
}

/* Forms */
button:disabled,
input:disabled {
  background: var(--color-bg-secondary);
  border-color: var(--color-bg-secondary);
  color: var(--color-text-secondary);
  cursor: not-allowed;
}

button[disabled]:hover {
  filter: none;
}

form {
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow) var(--color-shadow);
  display: block;
  max-width: var(--width-card-wide);
  padding: 1.5rem;
  text-align: var(--justify-normal);
}

form header {
  margin: 1.5rem 0;
  padding: 1.5rem 0;
}

input,
label,
select,
textarea {
  display: block;
  font-size: inherit;
  max-width: var(--width-card-wide);
}

input[type=checkbox],
input[type=radio] {
  display: inline-block;
}

input[type=checkbox] + label,
input[type=radio] + label {
  display: inline-block;
  font-weight: normal;
  position: relative;
  top: 1px;
}

input,
select,
textarea {
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  padding: 0.4rem 0.8rem;
}

input[readonly],
textarea[readonly] {
  background-color: var(--color-bg-secondary);
}

label {
  font-weight: bold;
  margin-bottom: 0.2rem;
}

/* Tables */
table {
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--border-radius);
  border-spacing: 0;
  display: inline-block;
  max-width: 100%;
  overflow-x: auto;
  padding: 0;
  white-space: nowrap;
}

table td,
table th,
table tr {
  padding: 0.4rem 0.8rem;
  text-align: var(--justify-important);
}

table thead {
  background-color: var(--color-table);
  border-collapse: collapse;
  border-radius: var(--border-radius);
  color: var(--color-bg);
  margin: 0;
  padding: 0;
}

table thead th:first-child {
  border-top-left-radius: var(--border-radius);
}

table thead th:last-child {
  border-top-right-radius: var(--border-radius);
}

table thead th:first-child,
table tr td:first-child {
  text-align: var(--justify-normal);
}

table tr:nth-child(even) {
  background-color: var(--color-accent);
}

/* Quotes */
blockquote {
  display: block;
  font-size: x-large;
  line-height: var(--line-height);
  margin: 1rem auto;
  max-width: var(--width-card-medium);
  padding: 1.5rem 1rem;
  text-align: var(--justify-important);
}

blockquote footer {
  color: var(--color-text-secondary);
  display: block;
  font-size: small;
  line-height: var(--line-height);
  padding: 1.5rem 0;
}

.headerNav {
  z-index: 5;
  position: relative;
  width: 100%;
  height: 60px;
  overflow: hidden;
  position: sticky;
  margin: 0;
  top: 0;
  display: flex;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.9);
}
.headerNav .header {
  width: 100%;
  max-width: 1280px;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 757px) {
  .headerNav .header {
    display: grid;
    grid-template-columns: 1fr 165px;
    align-items: center;
  }
}
@media (max-width: 757px) {
  .headerNav .header .logo {
    grid-row: 1/2;
    grid-column: 1/5;
  }
}
.headerNav .header .logo a {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
}
.headerNav .header .logo a .logo__img,
.headerNav .header .logo a .logo__text {
  display: flex;
  align-items: center;
}
.headerNav .header .logo a .logo__text {
  margin-left: 1rem;
  font-size: 1.4rem;
}
@media (max-width: 757px) {
  .headerNav .header .logo a .logo__text {
    margin-left: 0.2rem;
    font-size: 1.2rem;
    display: none;
  }
}
.headerNav .header .menu {
  cursor: pointer;
  display: flex;
}
@media (max-width: 757px) {
  .headerNav .header .menu {
    grid-row: 1/2;
    grid-column: 2/5;
    margin-left: 0;
    justify-self: end;
    display: flex;
    justify-content: center;
  }
}
.headerNav .header .menu img {
  height: 32px;
  width: auto;
  margin: 0 5px;
}
.headerNav .header .menu img:active {
  opacity: 0.4;
}
.headerNav .header .tel-resv {
  display: flex;
  align-items: center;
}
@media (max-width: 757px) {
  .headerNav .header .tel-resv {
    justify-self: center;
    grid-row: 1/2;
    grid-column: 2/5;
  }
}
.headerNav .header .tel-resv .reservation {
  margin-right: 0.5vw;
}
.headerNav .header .tel-resv .reservation .tel {
  margin-right: 15px;
}
.headerNav .header .tel-resv .reservation .tel i {
  border: none;
  transform: scaleX(-1);
  font-size: 1.8em;
  padding: 0;
  color: var(--tone-and-manner);
}
.headerNav .header .tel-resv .reservation .tel-btn {
  color: var(--tone-and-manner);
  font-size: 1.5em;
}
.headerNav .header .tel-resv .reservation .tel-btn a {
  text-decoration: underline;
}
.headerNav .header .tel-resv .reservation .button {
  font-weight: normal;
  letter-spacing: 0.1em;
}

.headerMenuLogo {
  height: 40px;
}
@media (max-width: 757px) {
  .headerMenuLogo {
    max-width: 100px;
    max-height: 60px;
  }
}

.headerMenu__nav {
  max-height: 100vh;
  transition: max-height 0.5s ease-in;
  width: 100%;
  position: fixed;
  overflow: hidden;
  top: 60px;
  z-index: 5;
  background-color: rgba(255, 255, 255, 0.9);
}
.headerMenu__nav div {
  width: 100%;
}
.headerMenu__nav div ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}
.headerMenu__nav div ul li {
  width: 260px;
  margin: 0.5rem 0;
  border-bottom: #707070 solid 1px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.headerMenu__nav.close {
  max-height: 0vh;
  transition: max-height 0.5s ease-in;
}

footer {
  background-color: #330000;
  background-color: var(--tone-and-manner);
  max-width: 100%;
  color: white;
  display: flex;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: lighter;
}
footer a {
  font-weight: lighter;
}
footer .footer__container {
  width: 100%;
  max-width: 1080px;
  --color-link: #fff;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 757px) {
  footer .footer__container {
    grid-template-columns: repeat(1, 1fr);
  }
}
footer .footer__container ul {
  list-style: none;
  padding: 0;
}
footer .footer__container .shop__info {
  grid-row: 1/3;
}
@media (max-width: 757px) {
  footer .footer__container .shop__info {
    grid-row: inherit;
  }
}
footer .footer__container .shop__info .shop__info__title {
  font-size: 1.6rem;
}
footer .footer__container .shop__info .shop__info__title a {
  font-weight: bold;
}
footer .footer__container .sitemap ul,
footer .footer__container .snsLinks ul {
  display: flex;
  flex-wrap: wrap;
}
footer .footer__container .sitemap ul li,
footer .footer__container .snsLinks ul li {
  margin: 0 0.5rem;
}
@media (max-width: 757px) {
  footer .footer__container .sitemap ul li,
footer .footer__container .snsLinks ul li {
    margin: 0;
  }
  footer .footer__container .sitemap ul li a,
footer .footer__container .snsLinks ul li a {
    margin-right: 1rem;
  }
}
footer .footer__container .sitemap {
  align-self: end;
}
@media (max-width: 757px) {
  footer .footer__container .sitemap {
    display: none;
  }
}

.sitemap .menu-menu-container ul li.line_icon::before {
  content: none;
}
.sitemap .menu-menu-container ul li.facebook_icon::before {
  content: none;
}
.sitemap .menu-menu-container ul li.insta_icon::before {
  content: none;
}
.sitemap .menu-menu-container ul li.twitter_icon::before {
  content: none;
}
.sitemap .menu-menu-container ul li.pepper_icon::before {
  content: none;
}

.foot_navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-around;
  position: fixed;
  width: 100%;
  bottom: 0px;
  background: rgba(248, 248, 248, 0.9);
  box-sizing: border-box;
  align-items: flex-start;
  z-index: 9999;
}
.foot_navi div {
  text-align: center;
  display: block;
  font-size: 11px;
  width: 33.3333333333%;
  padding: 15px 5px 5px 5px;
  border-right: 1px solid #ccc;
}
.foot_navi div:last-child {
  border-right: none;
}
.foot_navi div a {
  line-height: 1.1;
}
.foot_navi div a img {
  max-width: 25px;
}
.foot_navi div a p {
  line-height: 1;
  margin: 5px 0;
}

.foot_navi {
  position: fixed;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
.foot_navi.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.foot_navi.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}

.button {
  background-color: var(--tone-and-manner);
  --color-link: #fff;
  padding: 0.3rem 1rem;
  border-radius: 1rem;
  color: white;
  font-weight: bolder;
}

.hero {
  height: 80vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media (min-width: 758px) and (max-width: 1023px) {
  .hero {
    height: 50vh;
  }
}
@media (max-width: 757px) {
  .hero {
    height: inherit;
  }
}
.hero .hero__imgs {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  display: flex;
  animation: heroSlide 15s infinite;
}
@media (max-width: 757px) {
  .hero .hero__imgs {
    position: relative;
    height: 30vh;
  }
}
@media (max-width: 757px) {
  .hero .hero__imgs {
    animation: heroSlideMobile 15s infinite;
  }
}
.hero .hero__imgs .hero__img {
  width: 50vw;
  min-width: 50vw;
  height: 100%;
  margin-right: 25vw;
  overflow: hidden;
}
@media (max-width: 757px) {
  .hero .hero__imgs .hero__img {
    width: 100vw;
    min-width: 100vw;
  }
}
@media (max-width: 757px) {
  .hero .hero__imgs .hero__img {
    margin-right: 0;
  }
}
.hero .hero__imgs .hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .hero__text {
  background-color: rgba(255, 255, 255, 0.6);
  width: 25vw;
  height: 100%;
  margin-left: 50vw;
  padding: 0 1rem;
  padding-left: 3rem;
  position: absolute;
  display: flex;
  align-items: flex-end;
  padding-bottom: 1rem;
}
@media (max-width: 757px) {
  .hero .hero__text {
    width: 100%;
    margin-left: 0;
    height: inherit;
    position: relative;
    background-color: none;
    padding-left: 1rem;
  }
}
@media (min-width: 758px) and (max-width: 1023px) {
  .hero .hero__text {
    width: 50vw;
  }
}

.topStyle__details {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.topStyle__title {
  font-weight: bold;
  margin: 1rem 0;
}

.map__info {
  padding: 0 1rem;
  display: flex;
}
@media (max-width: 757px) {
  .map__info {
    flex-direction: column;
  }
}
.map__info .map {
  width: 50%;
  height: 25vw;
}
@media (max-width: 757px) {
  .map__info .map {
    width: 100%;
    height: 50vw;
  }
}
.map__info .map iframe {
  padding-right: 1rem;
}
.map__info .info {
  width: 50%;
  padding-left: 1rem;
}
@media (max-width: 757px) {
  .map__info .info {
    width: 100%;
    margin-top: 1rem;
  }
}
.map__info .info .info__title {
  font-weight: bold;
}
.map__info .info .info__payment ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}
.map__info .info .info__payment ul .payment {
  height: 1.6rem;
  margin-right: 1rem;
  margin-bottom: 0.4rem;
}
.map__info .info .info__payment ul .payment img {
  height: 100%;
}

.shops__details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem;
}
@media (min-width: 1024px) and (max-width: 1329px) {
  .shops__details {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 758px) and (max-width: 1023px) {
  .shops__details {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 757px) {
  .shops__details {
    grid-template-columns: repeat(3, 1fr);
  }
}
.shops__details .detail {
  width: 100%;
  margin-bottom: 1rem;
}
.shops__details .detail:last-child {
  margin-bottom: 0;
}
.shops__details .detail a {
  width: 100%;
}
.shops__details .detail a .shop__img {
  width: 100%;
  height: 13.8vw;
  overflow: hidden;
}
@media (max-width: 757px) {
  .shops__details .detail a .shop__img {
    height: 19.2vw;
  }
}
.shops__details .detail a .shop__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shops__details .detail a .shop__description {
  font-weight: normal;
}

.insta__details i {
  border: none;
  padding: 0 10px 0 0;
  color: white;
}

.blog__more {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}

.blog__items {
  width: 100%;
}
.blog__items .blog__item {
  padding: 0.5rem 1rem;
  border-bottom: #707070 solid 1px;
}
.blog__items .blog__item a {
  font-weight: normal;
  display: flex;
  justify-content: space-between;
}

@keyframes heroSlide {
  0% {
    transform: translateX(0);
  }
  14% {
    transform: translateX(0);
  }
  28% {
    transform: translateX(-75vw);
  }
  42% {
    transform: translateX(-75vw);
  }
  56% {
    transform: translateX(-150vw);
  }
  70% {
    transform: translateX(-150vw);
  }
  84% {
    transform: translateX(-225vw);
  }
  100% {
    transform: translateX(-225vw);
  }
}
@keyframes heroSlideMobile {
  0% {
    transform: translateX(0);
  }
  14% {
    transform: translateX(0);
  }
  28% {
    transform: translateX(-100vw);
  }
  42% {
    transform: translateX(-100vw);
  }
  56% {
    transform: translateX(-200vw);
  }
  70% {
    transform: translateX(-200vw);
  }
  84% {
    transform: translateX(-300vw);
  }
  100% {
    transform: translateX(-300vw);
  }
}
.concept__hero {
  width: 100%;
  display: flex;
  height: 80vh;
}
@media (min-width: 758px) and (max-width: 1023px) {
  .concept__hero {
    height: 55vh;
  }
}
@media (max-width: 757px) {
  .concept__hero {
    position: relative;
    display: block;
    height: inherit;
  }
}
.concept__hero .concept__hero__img {
  width: 50%;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 757px) {
  .concept__hero .concept__hero__img {
    width: 100%;
    position: relative;
    height: 45vh;
  }
}
.concept__hero .concept__hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.concept__hero .concept__hero__text {
  width: 50%;
  height: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 757px) {
  .concept__hero .concept__hero__text {
    width: 100%;
    position: relative;
    background-color: rgba(255, 255, 255, 0.6);
  }
}

.concept__button a {
  background: black;
  color: white;
  display: inline-block;
  margin-top: 2em;
  max-width: 250px;
  text-align: center;
  font-weight: bold;
  padding: 0.3rem 1rem;
  border-radius: 1rem;
  font-weight: bolder;
}

.concept__detailBox {
  width: 100vw;
  display: flex;
}
@media (max-width: 757px) {
  .concept__detailBox {
    display: block;
  }
}
.concept__detailBox .detailBox__img {
  width: 50vw;
  overflow: hidden;
}
@media (max-width: 757px) {
  .concept__detailBox .detailBox__img {
    width: 100%;
  }
}
.concept__detailBox .detailBox__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.concept__detailBox .detailBox__img.wide {
  padding-left: 1rem;
  height: 25vw;
}
@media (max-width: 757px) {
  .concept__detailBox .detailBox__img.wide {
    height: 50vw;
    padding-right: 1rem;
  }
}
.concept__detailBox .detailBox__img.square {
  width: 25vw;
  height: 25vw;
  margin-left: 25vw;
}
@media (max-width: 757px) {
  .concept__detailBox .detailBox__img.square {
    width: 100%;
    height: 100vw;
    margin-left: 0;
    padding: 0 1rem;
  }
}
.concept__detailBox .detailBox__text {
  padding: 0 1rem;
  width: 50vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 757px) {
  .concept__detailBox .detailBox__text {
    width: 100%;
    margin-top: 1rem;
  }
}

body {
  -webkit-animation: fadeIn 1s ease 0s 1 normal;
  animation: fadeIn 1s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
}

/* fadeUp */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#lp .headerNav {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
#lp .headerNav .header .logo a {
  transition: all 0.3s;
}
#lp .headerNav .header .logo a:hover {
  color: var(--color-link);
  opacity: 0.5;
  text-decoration: none;
}
#lp .headerNav .header .tel-resv .reservation a {
  padding: 0.3rem 1rem;
  border-radius: 1rem;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  transition: all 0.3s;
}
@media (max-width: 757px) {
  #lp .headerNav .header .tel-resv .reservation a {
    padding: 0.3rem 1rem;
  }
}
#lp .headerNav .header .tel-resv .reservation a:hover {
  opacity: 0.5;
  text-decoration: none;
}
#lp .headerNav .header .tel-resv .menu {
  display: none;
}
#lp #lpTemplate .lp_yourube {
  margin-bottom: 10em;
}
@media (max-width: 757px) {
  #lp #lpTemplate .lp_yourube {
    margin-bottom: 5em;
  }
}
#lp #lpTemplate .lp_yourube lite-youtube {
  margin: 0 auto;
}
#lp #lpTemplate .button_wrap {
  display: flex;
  justify-content: center;
  margin-top: 5em;
}
@media (max-width: 757px) {
  #lp #lpTemplate .button_wrap {
    margin-top: 3em;
  }
}
#lp #lpTemplate .button_wrap .button {
  width: 70%;
  text-align: center;
  font-weight: 700;
  font-size: medium;
  border-radius: 5px;
  padding: 10px;
}
#lp #lpTemplate .swiper-button-next,
#lp #lpTemplate .swiper-button-prev {
  --swiper-navigation-color: #222;
}
#lp #lpTemplate section {
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 100px 30px;
  overflow: hidden;
}
@media (max-width: 757px) {
  #lp #lpTemplate section {
    padding: 50px 15px;
  }
  #lp #lpTemplate section:last-child {
    padding-bottom: 0;
  }
}
#lp #lpTemplate section > div {
  max-width: 1000px;
  width: 100%;
}
@media (max-width: 757px) {
  #lp #lpTemplate section > div {
    max-width: 100%;
  }
}
#lp #lpTemplate section h2 {
  position: relative;
  font-weight: normal;
  padding: 1.5rem;
  font-size: 2rem;
  text-align: center;
  padding: 0;
  margin: 0 0 50px;
}
#lp #lpTemplate section h2:before {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 15px);
  width: 30px;
  height: 3px;
  content: "";
  border-radius: 3px;
  background: var(--tone-and-manner);
}
#lp #lpTemplate section p {
  font-size: 1.2rem;
}
#lp #lpTemplate section .leadtext {
  text-align: center;
  font-size: 1.5rem;
  margin: 0 0 30px 0;
}
#lp #lpTemplate section.section_hero {
  background: #efefef;
  position: relative;
  padding: 0;
  align-items: flex-start;
}
@media (max-width: 757px) {
  #lp #lpTemplate section.section_hero {
    padding-bottom: 29vh;
  }
}
#lp #lpTemplate section.section_hero .swiper_hero {
  max-width: 100%;
  width: auto;
  height: 100%;
}
@media (max-width: 757px) {
  #lp #lpTemplate section.section_hero .swiper_hero {
    height: auto;
    width: 100%;
  }
}
#lp #lpTemplate section.section_hero .swiper_hero .swiper-wrapper {
  height: calc(100vh - 60px);
}
@media (max-width: 757px) {
  #lp #lpTemplate section.section_hero .swiper_hero .swiper-wrapper {
    height: auto;
  }
}
#lp #lpTemplate section.section_hero .swiper_hero .swiper-wrapper .lp_hero_img {
  overflow: hidden;
}
#lp #lpTemplate section.section_hero .swiper_hero .swiper-wrapper .lp_hero_img img {
  max-width: 100%;
  height: 100vh;
}
@media (max-width: 757px) {
  #lp #lpTemplate section.section_hero .swiper_hero .swiper-wrapper .lp_hero_img img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }
}
#lp #lpTemplate section.section_hero .lp_hero_title {
  position: absolute;
  left: 55vw;
  max-width: 500px;
  z-index: 3;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media (max-width: 757px) {
  #lp #lpTemplate section.section_hero .lp_hero_title {
    top: 30vh;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    padding: 0 20px;
  }
}
#lp #lpTemplate section.section_hero .lp_hero_title .hero_title h1 {
  font-size: 1.8rem;
  display: inline-block;
}
#lp #lpTemplate section.section_hero .lp_hero_title .lp_hero_lead {
  color: #222;
  display: inline;
  line-height: 2;
  z-index: 99;
}
#lp #lpTemplate section.section_hero .bgextend {
  animation-name: bgextendAnimeBase;
  animation-delay: 0.5s;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  display: block;
  opacity: 0;
}
@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes bgextendAnimeBase {
  from {
    -webkit-opacity: 0;
  }
  to {
    -webkit-opacity: 1;
  }
}
#lp #lpTemplate section.section_hero .bgappear {
  animation-name: bgextendAnimeSecond;
  animation-delay: 0.5s;
  animation-duration: 1.5s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#lp #lpTemplate section.section_hero .bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-delay: 0.5s;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 110%;
  background-color: white;
  z-index: -1;
}
@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(1);
  }
}
#lp #lpTemplate section.section_hero .bgappearTrigger,
#lp #lpTemplate section.section_hero .bgLRextendTrigger {
  opacity: 0;
}
#lp #lpTemplate section.section_hero .scrolldown {
  position: absolute;
  bottom: 2%;
  right: 3%;
  animation: arrowmove 1.2s ease-in-out infinite;
}
@media (max-width: 757px) {
  #lp #lpTemplate section.section_hero .scrolldown {
    right: 15px;
  }
}
#lp #lpTemplate section.section_hero .scrolldown span {
  position: absolute;
  right: -15px;
  top: -90px;
  color: black;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}
@media (max-width: 757px) {
  #lp #lpTemplate section.section_hero .scrolldown span {
    right: 50%;
    margin-right: -30px;
  }
}
#lp #lpTemplate section.section_hero .scrolldown:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 1px;
  height: 20px;
  background: black;
  transform: skewX(-31deg);
}
@media (max-width: 757px) {
  #lp #lpTemplate section.section_hero .scrolldown:before {
    right: 50%;
    margin-right: -21px;
  }
}
#lp #lpTemplate section.section_hero .scrolldown:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 70px;
  background: black;
}
@media (max-width: 757px) {
  #lp #lpTemplate section.section_hero .scrolldown:after {
    right: 50%;
    margin-right: -15px;
  }
}
@keyframes arrowmove {
  0% {
    bottom: 2%;
  }
  50% {
    bottom: 4%;
  }
  100% {
    bottom: 2%;
  }
}
#lp #lpTemplate section.section_about .lp_about {
  margin-bottom: 5em;
}
@media (max-width: 757px) {
  #lp #lpTemplate section.section_about .lp_about {
    margin-bottom: 2em;
  }
}
#lp #lpTemplate section.section_about .lp_about .lp_about_child p {
  line-height: 2;
  padding: 0 15px;
}
@media (max-width: 757px) {
  #lp #lpTemplate section.section_about .lp_about .lp_about_child p {
    max-width: 100%;
  }
}
#lp #lpTemplate section.section_about .lp_box {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 757px) {
  #lp #lpTemplate section.section_about .lp_box {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
#lp #lpTemplate section.section_about .lp_box .lp_box_child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  opacity: 0;
  width: 33.3333333333%;
}
@media (max-width: 757px) {
  #lp #lpTemplate section.section_about .lp_box .lp_box_child {
    width: 100%;
    max-width: 300px;
    padding: 15px 0;
  }
}
#lp #lpTemplate section.section_about .lp_box .lp_box_child img {
  width: 100%;
}
#lp #lpTemplate section.section_about .lp_box .lp_box_child h3 {
  font-size: 1.3rem;
  font-weight: bolder;
  margin: 18px 0 0;
}
#lp #lpTemplate section.section_about .lp_box .lp_box_child p {
  line-height: 1.8;
  margin: 18px 0 0;
}
#lp #lpTemplate section.section_question {
  background: #efefef;
}
#lp #lpTemplate section.section_question .lp_question {
  display: flex;
  flex-wrap: wrap;
}
#lp #lpTemplate section.section_question .lp_question .lp_question_child {
  flex-basis: 50%;
  padding: 10px;
  position: relative;
}
@media (max-width: 757px) {
  #lp #lpTemplate section.section_question .lp_question .lp_question_child {
    flex-basis: 100%;
  }
}
#lp #lpTemplate section.section_question .lp_question .lp_question_child p {
  text-align: left;
  background: white;
  border-radius: 10px;
  display: block;
  padding: 2em;
  line-height: 1.6;
  margin: 0;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
#lp #lpTemplate section.section_gallery .lp_gallery {
  position: relative;
  margin-bottom: 5em;
  overflow: hidden;
}
@media (max-width: 757px) {
  #lp #lpTemplate section.section_gallery .lp_gallery {
    margin-bottom: 2em;
    position: relative;
  }
}
@media (min-width: 758px) and (max-width: 1023px) {
  #lp #lpTemplate section.section_gallery .lp_gallery .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 1024px) and (max-width: 1329px) {
  #lp #lpTemplate section.section_gallery .lp_gallery .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 1330px) {
  #lp #lpTemplate section.section_gallery .lp_gallery .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
  }
}
#lp #lpTemplate section.section_gallery .lp_gallery .swiper-wrapper .lp_gallery_child {
  padding: 0 5px;
}
@media (min-width: 758px) and (max-width: 1023px) {
  #lp #lpTemplate section.section_gallery .lp_gallery .swiper-wrapper .lp_gallery_child {
    padding: 3px 5px;
    width: 25%;
  }
}
@media (min-width: 1024px) and (max-width: 1329px) {
  #lp #lpTemplate section.section_gallery .lp_gallery .swiper-wrapper .lp_gallery_child {
    padding: 3px 5px;
    width: 25%;
  }
}
@media (min-width: 1330px) {
  #lp #lpTemplate section.section_gallery .lp_gallery .swiper-wrapper .lp_gallery_child {
    padding: 3px 5px;
    width: 25%;
  }
}
@media (min-width: 758px) and (max-width: 1023px) {
  #lp #lpTemplate section.section_gallery .lp_gallery .swiper-wrapper .lp_gallery_child img {
    width: 100%;
  }
}
@media (min-width: 1024px) and (max-width: 1329px) {
  #lp #lpTemplate section.section_gallery .lp_gallery .swiper-wrapper .lp_gallery_child img {
    width: 100%;
  }
}
@media (min-width: 1330px) {
  #lp #lpTemplate section.section_gallery .lp_gallery .swiper-wrapper .lp_gallery_child img {
    width: 100%;
  }
}
#lp #lpTemplate section.section_gallery .lp_gallery .swiper-button-prev,
#lp #lpTemplate section.section_gallery .lp_gallery .swiper-button-next {
  display: none;
}
@media (max-width: 757px) {
  #lp #lpTemplate section.section_gallery .lp_gallery .swiper-button-prev,
#lp #lpTemplate section.section_gallery .lp_gallery .swiper-button-next {
    display: block;
  }
}
#lp #lpTemplate section.section_gallery .lp_flow {
  position: relative;
  padding: 0 100px;
}
@media (max-width: 757px) {
  #lp #lpTemplate section.section_gallery .lp_flow {
    overflow: hidden;
    padding: 0;
  }
}
@media (max-width: 757px) {
  #lp #lpTemplate section.section_gallery .lp_flow .swiper-wrapper {
    padding-left: 0;
  }
}
#lp #lpTemplate section.section_gallery .lp_flow .swiper-wrapper .lp_flow_child {
  background: #efefef;
  padding: 2em;
  margin: 10px;
  border-radius: 20px;
  text-align: center;
}
@media (max-width: 757px) {
  #lp #lpTemplate section.section_gallery .lp_flow .swiper-wrapper .lp_flow_child {
    margin: 0;
  }
}
#lp #lpTemplate section.section_gallery .lp_flow .swiper-wrapper .lp_flow_child .step {
  color: var(--tone-and-manner);
  font-size: 1.4rem;
  font-weight: bold;
}
#lp #lpTemplate section.section_gallery .lp_flow .swiper-wrapper .lp_flow_child h3 {
  font-size: 1.2rem;
  margin: 10px 0 15px;
  font-weight: normal;
}
#lp #lpTemplate section.section_gallery .lp_flow .swiper-wrapper .lp_flow_child img {
  width: 90%;
  border-radius: 20px;
}
@media (max-width: 757px) {
  #lp #lpTemplate section.section_gallery .lp_flow .swiper-wrapper .lp_flow_child img {
    width: 100%;
  }
}
#lp #lpTemplate section.section_gallery .lp_flow .swiper-wrapper .lp_flow_child p {
  text-align: left;
  line-height: 1.7;
  margin-bottom: 0;
}
#lp #lpTemplate section.section_gallery .lp_flow .swiper-button-prev,
#lp #lpTemplate section.section_gallery .lp_flow .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
#lp #lpTemplate section.section_voice {
  background: #efefef;
}
#lp #lpTemplate section.section_voice .lp_voice {
  margin-top: 2em;
}
#lp #lpTemplate section.section_voice .lp_voice .lp_voice_child {
  background: white;
  padding: 1em 1em 1em 2em;
  border-radius: 20px;
  position: relative;
  margin-bottom: 2em;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
#lp #lpTemplate section.section_voice .lp_voice .lp_voice_child .number {
  color: var(--tone-and-manner);
  font-weight: bolder;
  font-size: 1.3rem;
  position: absolute;
  background: white;
  left: 0.8em;
}
#lp #lpTemplate section.section_voice .lp_voice .lp_voice_child .lp_voice_child_in {
  border-left: 2px solid var(--tone-and-manner);
  padding-left: 2em;
  padding-right: 1em;
}
#lp #lpTemplate section.section_voice .lp_voice .lp_voice_child .lp_voice_child_in h3 {
  color: var(--tone-and-manner);
  font-size: 1.5rem;
  font-weight: bolder;
}
#lp #lpTemplate section.section_voice .lp_voice .lp_voice_child .lp_voice_child_in .user {
  font-weight: 500;
}
#lp #lpTemplate section.section_voice .lp_voice .lp_voice_child .lp_voice_child_in p {
  line-height: 1.7;
}
#lp #lpTemplate section.section_message .lp_message {
  max-width: 900px;
}
#lp #lpTemplate section.section_message .lp_message .lp_message_child {
  display: flex;
  max-width: 1000px;
  margin-bottom: 5em;
}
@media (max-width: 757px) {
  #lp #lpTemplate section.section_message .lp_message .lp_message_child {
    max-width: 100%;
    flex-direction: column;
  }
}
#lp #lpTemplate section.section_message .lp_message .lp_message_child img {
  max-width: 400px;
  margin-right: 2em;
}
@media (max-width: 757px) {
  #lp #lpTemplate section.section_message .lp_message .lp_message_child img {
    max-width: 100%;
    margin-right: 0;
  }
}
#lp #lpTemplate section.section_message .lp_message .lp_message_child .lp_message_text h3 {
  font-size: 1.5rem;
  color: var(--tone-and-manner);
}
#lp #lpTemplate section.section_message .lp_message .lp_message_child .lp_message_text .user {
  font-weight: 500;
}
#lp #lpTemplate section.section_message .lp_message .lp_message_child .lp_message_text p {
  line-height: 1.7;
}
#lp #lpTemplate section.section_message .lp_menu {
  display: flex;
  flex-wrap: wrap;
}
#lp #lpTemplate section.section_message .lp_menu .lp_menu_child {
  flex-basis: 33.3333333333%;
  padding: 10px 20px;
}
@media (max-width: 757px) {
  #lp #lpTemplate section.section_message .lp_menu .lp_menu_child {
    flex-basis: 100%;
  }
}
#lp #lpTemplate section.section_message .lp_menu .lp_menu_child .title {
  display: flex;
  border-bottom: 1px solid #222;
  justify-content: space-between;
  align-items: center;
}
#lp #lpTemplate section.section_message .lp_menu .lp_menu_child p {
  line-height: 1.7;
}
#lp #lpTemplate section.section_faq {
  background: #efefef;
}
#lp #lpTemplate section.section_faq .accordion_area .accordion_one {
  margin-bottom: 1em;
}
#lp #lpTemplate section.section_faq .accordion_area .accordion_one .ac_header {
  background-color: white;
  padding: 1em 4em 1em 2em;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: 0.2s;
}
#lp #lpTemplate section.section_faq .accordion_area .accordion_one .ac_header:not(.open):hover {
  background-color: #f1f8ff;
}
#lp #lpTemplate section.section_faq .accordion_area .accordion_one .ac_header .p-faq__headinner {
  display: block;
  padding-left: 35px;
  position: relative;
  line-height: 1.5;
}
#lp #lpTemplate section.section_faq .accordion_area .accordion_one .ac_header .p-faq__headinner:before {
  position: absolute;
  left: 0;
  content: "Q．";
  color: var(--tone-and-manner);
  font-size: 20px;
  font-weight: bold;
}
#lp #lpTemplate section.section_faq .accordion_area .accordion_one .ac_header .p-faq__headinner .p-faq__q-txt {
  font-size: 1.1rem;
  font-weight: normal;
  margin: 0;
}
#lp #lpTemplate section.section_faq .accordion_area .accordion_one:nth-child(odd) .ac_header {
  background-color: white;
}
#lp #lpTemplate section.section_faq .accordion_area .accordion_one:nth-child(odd) .ac_header:not(.open):hover {
  background-color: white;
}
#lp #lpTemplate section.section_faq .accordion_area .accordion_one .ac_header .i_box {
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 20px;
  height: 20px;
  margin-top: -10px;
}
#lp #lpTemplate section.section_faq .accordion_area .accordion_one .ac_header .i_box:before, #lp #lpTemplate section.section_faq .accordion_area .accordion_one .ac_header .i_box:after {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
}
#lp #lpTemplate section.section_faq .accordion_area .accordion_one .ac_header .i_box:before {
  border-top: 2px solid #222;
  width: 20px;
  height: 0;
  top: 0;
  bottom: 0;
  right: 0;
  transition: 0.3s;
}
#lp #lpTemplate section.section_faq .accordion_area .accordion_one .ac_header .i_box:after {
  border-left: 2px solid #222;
  width: 0;
  height: 20px;
  top: 0;
  bottom: 0;
  right: 9px;
  transition: 0.3s;
}
#lp #lpTemplate section.section_faq .accordion_area .accordion_one .ac_header.open .i_box:after {
  height: 20px;
  transform: rotate(135deg);
}
#lp #lpTemplate section.section_faq .accordion_area .accordion_one .ac_header.open .i_box:before {
  transform: rotate(135deg);
}
#lp #lpTemplate section.section_faq .accordion_area .accordion_one .ac_inner {
  display: none;
  padding: 1em 2em;
  background: white;
}
#lp #lpTemplate section.section_faq .accordion_area .accordion_one .ac_inner .p-faq__bodyinner {
  display: block;
  padding-left: 35px;
  position: relative;
  line-height: 1.5;
}
#lp #lpTemplate section.section_faq .accordion_area .accordion_one .ac_inner .p-faq__bodyinner:before {
  position: absolute;
  left: 0;
  content: "A．";
  color: var(--tone-and-manner);
  font-size: 20px;
  font-weight: bold;
}
#lp #lpTemplate section.section_faq .accordion_area .accordion_one .ac_inner .p-faq__bodyinner .p-faq__a-txt {
  font-size: 1.1rem;
}
#lp #lpTemplate section.section_footer .lp_map {
  flex-direction: column;
}
#lp #lpTemplate section.section_footer .lp_map .map {
  width: 100%;
  height: 40vh;
}
@media (max-width: 757px) {
  #lp #lpTemplate section.section_footer .lp_map .map {
    height: 70vw;
  }
}
#lp #lpTemplate section.section_footer .lp_map .info_title {
  font-size: 1.5rem;
  font-weight: bolder;
  margin: 1em 0 0;
}
#lp #lpTemplate section.section_footer .lp_map .info {
  width: 1000px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 757px) {
  #lp #lpTemplate section.section_footer .lp_map .info {
    width: 100%;
  }
}
#lp #lpTemplate section.section_footer .lp_map .info dt,
#lp #lpTemplate section.section_footer .lp_map .info dd {
  margin: 0;
  padding: 0;
  padding: 10px 0;
}
#lp #lpTemplate section.section_footer .lp_map .info dt {
  flex-basis: 100px;
  font-weight: 700;
}
@media (max-width: 757px) {
  #lp #lpTemplate section.section_footer .lp_map .info dt {
    flex-basis: 80px;
  }
}
#lp #lpTemplate section.section_footer .lp_map .info dd {
  flex-basis: calc(100% - 100px);
  font-weight: 700;
}
@media (max-width: 757px) {
  #lp #lpTemplate section.section_footer .lp_map .info dd {
    flex-basis: calc(100% - 80px);
  }
}
@media (max-width: 757px) {
  #lp #lpTemplate section.section_footer .lp_map .info .payment {
    margin: 10px 0;
  }
}
#lp #lpTemplate section.section_footer .lp_map .info .payment ul {
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  align-items: center;
}
#lp #lpTemplate section.section_footer .lp_map .info .payment ul li {
  margin-right: 1rem;
  display: flex;
  align-items: center;
}
#lp #lpTemplate section.section_footer .lp_map .info .payment ul li img {
  max-width: 80px;
  max-height: 30px;
}
@media (max-width: 757px) {
  #lp #lpTemplate section.section_footer .lp_map .info .payment ul li img {
    margin-bottom: 5px;
  }
}
#lp #lpTemplate section.section_footer .copyright {
  width: 70vw;
  margin-top: 5em;
  display: block;
  text-align: center;
  border-top: 1px solid black;
  padding: 3em 0;
}
@media (max-width: 757px) {
  #lp #lpTemplate section.section_footer .copyright {
    width: 100%;
    margin-top: 2em;
    padding: 2em 0 6em;
  }
}
#lp footer {
  display: none;
}

.wpcf7 {
  width: 100%;
  display: flex;
  justify-content: center;
}
.wpcf7 .wpcf7-form {
  width: 100%;
  box-shadow: none;
  border: none;
}
.wpcf7 .wpcf7-form input[type=text],
.wpcf7 .wpcf7-form input[type=email],
.wpcf7 .wpcf7-form textarea {
  margin-top: 0.5rem;
  width: 100%;
}
.wpcf7 .wpcf7-form input[type=submit] {
  margin: 0 auto;
  background-color: var(--tone-and-manner);
  --color-link: #fff;
  color: var(--color-link);
  font-weight: bold;
  padding: 0.3rem 1rem;
  border-radius: 1rem;
}

.contact__content {
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact__content > p {
  display: block;
  max-width: var(--width-card-wide);
  min-width: var(--width-card);
  padding: 0 1.5rem;
}

.wpcf7-response-output {
  border: none !important;
}

.recruit__Hero {
  width: 100%;
}
.recruit__Hero .recruit__Hero__img {
  width: 100%;
  height: 33vh;
  overflow: hidden;
}
.recruit__Hero .recruit__Hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruit__Message {
  width: 100%;
}
.recruit__Message .recruit__Message__details {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 757px) {
  .recruit__Message .recruit__Message__details {
    flex-direction: column;
  }
}
.recruit__Message .recruit__Message__details .recruit__Message__details__img {
  width: 24vw;
  height: 24vw;
  overflow: hidden;
}
@media (min-width: 758px) and (max-width: 1023px) {
  .recruit__Message .recruit__Message__details .recruit__Message__details__img {
    width: 40vw;
    height: 40vw;
  }
}
@media (max-width: 757px) {
  .recruit__Message .recruit__Message__details .recruit__Message__details__img {
    width: calc(100vw - 2rem);
    height: calc(100vw - 2rem);
  }
}
.recruit__Message .recruit__Message__details .recruit__Message__details__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recruit__Message .recruit__Message__details .recruit__Message__details__text {
  width: calc(26vw - 2rem);
  padding-left: 1rem;
}
@media (min-width: 758px) and (max-width: 1023px) {
  .recruit__Message .recruit__Message__details .recruit__Message__details__text {
    width: calc(60vw - 2rem);
  }
}
@media (max-width: 757px) {
  .recruit__Message .recruit__Message__details .recruit__Message__details__text {
    width: 100%;
    padding-left: 0;
    margin-top: 1rem;
  }
}

.recruit__recruit {
  width: 100%;
}
.recruit__recruit .recruit__recruit__details {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.recruit__recruit .recruit__recruit__details .detail {
  margin-bottom: 1rem;
}
.recruit__recruit .recruit__recruit__details .detail:last-child {
  margin-bottom: 0;
}
.recruit__recruit .recruit__recruit__details .detail a {
  font-weight: normal;
}
.recruit__recruit .recruit__recruit__details .detail a .detail__img {
  width: 24vw;
  height: 9.6vw;
  overflow: hidden;
}
@media (min-width: 1024px) and (max-width: 1329px) {
  .recruit__recruit .recruit__recruit__details .detail a .detail__img {
    width: 29vw;
    height: 11.6vw;
  }
}
@media (min-width: 758px) and (max-width: 1023px) {
  .recruit__recruit .recruit__recruit__details .detail a .detail__img {
    width: 31vw;
    height: 16vw;
  }
}
@media (max-width: 757px) {
  .recruit__recruit .recruit__recruit__details .detail a .detail__img {
    width: calc(50vw - 1.5rem);
    height: 24vw;
  }
}
.recruit__recruit .recruit__recruit__details .detail a .detail__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recruit__recruit .recruit__recruit__details .detail a .detail__text {
  margin-top: 0.5rem;
  display: flex;
  justify-content: space-between;
}
.recruit__recruit .recruit__recruit__details .detail a .detail__text .position__headCount {
  display: flex;
}
.recruit__recruit .recruit__recruit__details .detail a .detail__text .position__headCount .headCount {
  margin-left: 1rem;
}

.recruit__to__contact {
  display: flex;
  justify-content: center;
}

.recruit__detail {
  width: 100%;
}
.recruit__detail .recruit__detail__items .detail__item {
  display: flex;
  margin-bottom: 1rem;
}
.recruit__detail .recruit__detail__items .detail__item:last-child {
  margin-bottom: 0;
}
.recruit__detail .recruit__detail__items .detail__item .item__subject {
  font-weight: bold;
  min-width: 128px;
  border-right: rgba(112, 112, 112, 0.4) solid 1px;
}
.recruit__detail .recruit__detail__items .detail__item .item__description {
  padding-left: 1rem;
}

.main__wrapper {
  display: flex;
}
@media (max-width: 757px) {
  .main__wrapper {
    flex-direction: column;
  }
}
.main__wrapper .category_nav {
  list-style: none;
  padding-left: 1rem;
  padding-top: 1rem;
  width: 25vw;
}
@media (max-width: 757px) {
  .main__wrapper .category_nav {
    width: 100%;
    padding-right: 1rem;
    display: flex;
    padding: 0.5rem 1rem;
  }
  .main__wrapper .category_nav li {
    margin-right: 0.5rem;
  }
}
.main__wrapper .category_nav li {
  padding: 0.2rem 0;
}
.main__wrapper .category_nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 0.2rem;
}
.main__wrapper .category_nav .categoty_nav_navigation {
  position: sticky;
  top: calc(60px + 1rem);
}
.main__wrapper .category_nav a {
  font-weight: normal;
}

.menu__wrapper {
  width: 75vw;
  padding-right: 1rem;
}
.menu__wrapper .menuBox {
  width: 100%;
}
.menu__wrapper .menuBox .subject {
  margin: 30px 0;
}
.menu__wrapper .menuBox .menus__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (min-width: 758px) and (max-width: 1023px) {
  .menu__wrapper .menuBox .menus__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 757px) {
  .menu__wrapper .menuBox .menus__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.menu__wrapper .menuBox:first-child .subject {
  margin-top: 0;
}

.menu__self {
  width: 23vw;
  margin-bottom: 2rem;
}
@media (min-width: 758px) and (max-width: 1023px) {
  .menu__self {
    width: 33vw;
  }
}
@media (max-width: 757px) {
  .menu__self {
    width: 100%;
  }
}
.menu__self .self__title {
  font-weight: bold;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.5rem;
  border-bottom: rgba(112, 112, 112, 0.4) 1px solid;
}
.menu__self .self__description {
  padding-top: 0.5rem;
  min-height: 100px;
}
@media (max-width: 757px) {
  .menu__self .self__description {
    min-height: auto;
  }
}
.menu__self .self__reservation {
  padding-top: 0.5rem;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 757px) {
  .menu__self .self__reservation {
    padding-top: 1rem;
  }
}

.post__wrapper {
  width: 75vw;
  padding-right: 1rem;
}
.post__wrapper .blog__item {
  padding: 0.5rem 1rem;
  border-bottom: #707070 solid 1px;
}
.post__wrapper .blog__item a {
  font-weight: normal;
  display: flex;
  justify-content: space-between;
}

.post__pagenation {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
.post__pagenation ul {
  display: flex;
  list-style: none;
  padding: 0;
}
.post__pagenation ul li {
  padding: 0 10px;
}

.content__wrapper {
  width: 75vw;
  padding-right: 1rem;
}
.content__wrapper .content {
  border-top: #707070 solid 1px;
  border-bottom: #707070 solid 1px;
  padding: 1rem 0;
}
.content__wrapper img {
  width: 100%;
  height: auto;
}
.content__wrapper .content__pagenation {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.content__wrapper .content__pagenation .pagenation__prev {
  justify-self: start;
}
.content__wrapper .content__pagenation .pagenation__index {
  justify-self: center;
}
.content__wrapper .content__pagenation .pagenation__next {
  justify-self: end;
}

.staff__wrapper {
  width: 75vw;
  padding-right: 25vw;
  border-top: #707070 solid 1px;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 1024px) and (max-width: 1329px) {
  .staff__wrapper {
    padding-right: 10vw;
  }
}
@media (min-width: 758px) and (max-width: 1023px) {
  .staff__wrapper {
    padding-right: 1rem;
  }
}
@media (max-width: 757px) {
  .staff__wrapper {
    padding-right: 1rem;
    border: none;
  }
}

.staff:last-child {
  margin-bottom: 0;
}
.staff .staff__info {
  width: 100%;
  display: flex;
  align-items: flex-end;
}
@media (min-width: 758px) and (max-width: 1023px) {
  .staff .staff__info {
    align-items: flex-start;
  }
}
@media (max-width: 757px) {
  .staff .staff__info {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 1rem;
    border-top: #707070 solid 1px;
  }
}
@media (max-width: 757px) {
  .staff .staff__info .staff__info__img {
    width: 50vw;
    height: 60vw;
  }
}
.staff .staff__info .staff__info__detail {
  width: 25vw;
  padding-left: 1rem;
}
@media (min-width: 1024px) and (max-width: 1329px) {
  .staff .staff__info .staff__info__detail {
    width: 40vw;
  }
}
@media (min-width: 758px) and (max-width: 1023px) {
  .staff .staff__info .staff__info__detail {
    width: 50vw;
  }
}
@media (max-width: 757px) {
  .staff .staff__info .staff__info__detail {
    width: 100%;
    padding-left: 0;
    margin-top: 0.5rem;
  }
}
.staff .staff__info .staff__info__detail .staff__detail__position {
  color: gray;
}
.staff .staff__info .staff__info__detail .staff__detail__nameBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.5rem;
}
.staff .staff__info .staff__info__detail .staff__detail__nameBox .nameBox__name__SNS {
  display: flex;
  align-items: center;
}
.staff .staff__info .staff__info__detail .staff__detail__nameBox .nameBox__name__SNS .name {
  font-size: 1.4rem;
  font-weight: bold;
  max-height: 36px;
  display: flex;
  align-items: center;
}
.staff .staff__info .staff__info__detail .staff__detail__nameBox .nameBox__name__SNS .SNS {
  margin-left: 1rem;
  display: flex;
  align-items: center;
}
.staff .staff__info .staff__info__detail .staff__detail__nameBox .nameBox__name__SNS .SNS a {
  display: flex;
  height: 100%;
  align-items: center;
}
.staff .staff__info .staff__info__detail .staff__detail__nameBox .nameBox__name__SNS .SNS a img {
  width: auto;
  height: 1.4rem;
}
.staff .staff__info .staff__info__detail .staff__detail__messages ul {
  list-style: none;
  padding: 0;
  display: flex;
}
.staff .staff__info .staff__info__detail .staff__detail__messages ul li:first-child {
  min-width: 120px;
}
.staff .staff__info .staff__info__detail .staff__detail__messages ul .li__bold {
  font-weight: bold;
}
.staff .staff__style .subject {
  margin-top: 1rem;
}
@media (max-width: 757px) {
  .staff .staff__style .subject {
    margin-top: 0;
  }
}
.staff .staff__style .staff__style__styles {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 5em;
}
.staff .staff__style .staff__style__styles .staff__style__styles__detail {
  margin-left: 1rem;
}
.staff .staff__style .staff__style__styles .staff__style__styles__detail .styleImg {
  width: 12vw;
  height: 16.8vw;
}
@media (max-width: 757px) {
  .staff .staff__style .staff__style__styles .staff__style__styles__detail .styleImg {
    width: 28vw;
    height: 39.2vw;
  }
}

.style__wrapper {
  width: 75vw;
  padding-right: 1rem;
}

.style__detail__wrapper {
  display: flex;
  width: 100%;
}
@media (max-width: 757px) {
  .style__detail__wrapper {
    flex-direction: column;
  }
}
.style__detail__wrapper .style__detail__selected {
  width: 23vw;
}
@media (max-width: 757px) {
  .style__detail__wrapper .style__detail__selected {
    width: 100%;
  }
}
.style__detail__wrapper .style__detail__selected .styleImg {
  width: 22vw;
  height: 30.8vw;
}
@media (max-width: 757px) {
  .style__detail__wrapper .style__detail__selected .styleImg {
    width: 100%;
    height: calc((100vw - 2rem) * 1.4);
  }
}
.style__detail__wrapper .style__detail__selected .style__title {
  font-weight: bold;
  padding: 0.5rem 0;
  border-bottom: #707070 solid 1px;
}
.style__detail__wrapper .style__detail__selected .style__review {
  margin-top: 0.5rem;
}
.style__detail__wrapper .style__detail__list {
  margin-left: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  padding-right: 10vw;
}
@media (min-width: 758px) and (max-width: 1023px) {
  .style__detail__wrapper .style__detail__list {
    padding-right: 0;
  }
}
@media (max-width: 757px) {
  .style__detail__wrapper .style__detail__list {
    padding-right: 0;
    margin-left: 0;
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.style__detail__wrapper .style__detail__list .detail__list__preview {
  margin-right: 1rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 757px) {
  .style__detail__wrapper .style__detail__list .detail__list__preview {
    margin: 0;
    margin-bottom: 0.5rem;
  }
}
.style__detail__wrapper .style__detail__list .detail__list__preview a .styleImg {
  width: 11vw;
  height: 15.4vw;
}
.style__detail__wrapper .style__detail__list .detail__list__preview a .styleImg:hover {
  filter: grayscale(0);
}
@media (max-width: 757px) {
  .style__detail__wrapper .style__detail__list .detail__list__preview a .styleImg {
    width: 29vw;
    height: 40.6vw;
  }
}

.content__wrapper {
  width: 75vw;
  margin: 2em auto 5em;
  padding-right: 1rem;
}
@media (max-width: 757px) {
  .content__wrapper {
    width: 90vw;
    padding-right: 0;
  }
}
.content__wrapper .content {
  border-top: #707070 solid 1px;
  border-bottom: #707070 solid 1px;
  padding: 1rem 0;
}
.content__wrapper img {
  width: 100%;
  height: auto;
}
.content__wrapper h2 {
  text-align: center;
  padding: 1em;
  border-bottom: 1px solid #000;
  border-top: 1px solid #000;
  margin: 2em 0;
}
.content__wrapper h3 {
  margin-top: 2em;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  color: #999;
}
.content__wrapper h4 {
  margin-top: 2em;
  border-left: 5px solid #ccc;
  padding-left: 1em;
}
.content__wrapper h5 {
  margin-top: 1em;
  border-bottom: 3px solid #ccc;
  display: inline-block;
  margin-bottom: 0;
}
.content__wrapper a {
  text-decoration: underline;
  color: #0066c0;
}

.line_icon::before {
  content: "";
  background-image: url("/wp-content/themes/note/img/line.png");
  background-size: 32px 32px;
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
  display: inline-block;
  margin-right: 1rem;
}
@media (max-width: 757px) {
  .line_icon {
    margin-top: 0 !important;
  }
}

.facebook_icon::before {
  content: "";
  background-image: url("/wp-content/themes/note/img/facebook.svg");
  background-size: 32px 32px;
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
  display: inline-block;
  margin-right: 1rem;
}
@media (max-width: 757px) {
  .facebook_icon {
    margin-top: 0 !important;
  }
}

.insta_icon::before {
  content: "";
  background-image: url("/wp-content/themes/note/img/instagram.svg");
  background-size: 32px 32px;
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
  display: inline-block;
  margin-right: 1rem;
}
@media (max-width: 757px) {
  .insta_icon {
    margin-top: 0 !important;
  }
}

.twitter_icon::before {
  content: "";
  background-image: url("/wp-content/themes/note/img/twitter.svg");
  background-size: 32px 32px;
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
  display: inline-block;
  margin-right: 1rem;
}
@media (max-width: 757px) {
  .twitter_icon {
    margin-top: 0 !important;
  }
}

.pepper_icon::before {
  content: "";
  background-image: url("/wp-content/themes/note/img/hotpepper.png");
  background-size: 32px 32px;
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
  display: inline-block;
  margin-right: 1rem;
}
@media (max-width: 757px) {
  .pepper_icon {
    margin-top: 0 !important;
  }
}

* {
  box-sizing: border-box;
}

main {
  padding: 0;
  max-width: 100%;
  min-height: 60vh;
}

.width_3 {
  padding-left: calc(25vw + 1rem);
  padding-right: 1rem;
}
@media (min-width: 1024px) and (max-width: 1329px) {
  .width_3 {
    padding-left: calc(20vw + 1rem);
  }
}
@media (min-width: 758px) and (max-width: 1023px) {
  .width_3 {
    padding-left: calc(20vw + 1rem);
  }
}
@media (max-width: 757px) {
  .width_3 {
    padding-left: 1rem;
  }
}

.width_2 {
  padding-left: calc(50vw + 1rem);
  padding-right: 1rem;
}
@media (min-width: 1024px) and (max-width: 1329px) {
  .width_2 {
    padding-left: calc(35vw + 1rem);
  }
}
@media (min-width: 758px) and (max-width: 1023px) {
  .width_2 {
    padding-left: calc(25vw + 1rem);
  }
}
@media (max-width: 757px) {
  .width_2 {
    padding-left: 1rem;
  }
}

.width_2__center {
  padding: 0 25vw;
}
@media (min-width: 1024px) and (max-width: 1329px) {
  .width_2__center {
    padding: 0 20vw;
  }
}
@media (min-width: 758px) and (max-width: 1023px) {
  .width_2__center {
    padding: 0 1rem;
  }
}
@media (max-width: 757px) {
  .width_2__center {
    padding: 0 1rem;
  }
}

.top__margin__60 {
  margin-top: 60px;
}

.bottom__margin__60 {
  margin-bottom: 60px;
}

.top__bottom__margin__60 {
  margin: 60px 0;
}

.top__margin__1rem {
  margin-top: 1rem;
}

.bottom__margin__1rem {
  margin-bottom: 1rem;
}

.top__bottom__margin__1rem {
  margin: 1rem 0;
}

.subject {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
  width: 100%;
  margin-bottom: 1rem;
}
.subject::after {
  content: "";
  flex-grow: 1;
  margin-left: 1rem;
  background: #707070;
  height: 1px;
  font-size: 0px;
  line-height: 0px;
}

.styleImg {
  width: 23vw;
  height: 32.2vw;
  overflow: hidden;
}
@media (min-width: 1024px) and (max-width: 1329px) {
  .styleImg {
    width: 24vw;
    height: 33.6vw;
  }
}
@media (min-width: 758px) and (max-width: 1023px) {
  .styleImg {
    width: 24vw;
    height: 33.6vw;
  }
}
@media (max-width: 757px) {
  .styleImg {
    width: 30vw;
    height: 42vw;
  }
}
.styleImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.message__404 {
  width: 100%;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wp-editor__content {
  padding-left: calc(50vw + 1rem);
  padding-right: 1rem;
}
@media (min-width: 1024px) and (max-width: 1329px) {
  .wp-editor__content {
    padding-left: calc(35vw + 1rem);
  }
}
@media (min-width: 758px) and (max-width: 1023px) {
  .wp-editor__content {
    padding-left: calc(25vw + 1rem);
  }
}
@media (max-width: 757px) {
  .wp-editor__content {
    padding-left: 1rem;
  }
}
.wp-editor__content img {
  margin-bottom: 1rem;
  display: block;
  width: 100%;
  height: 100%;
  margin-left: calc(-25vw - 1rem);
}
@media (min-width: 1024px) and (max-width: 1329px) {
  .wp-editor__content img {
    margin-left: calc(-15vw - 1rem);
  }
}
@media (min-width: 758px) and (max-width: 1023px) {
  .wp-editor__content img {
    margin-left: calc(-10vw - 1rem);
  }
}
@media (max-width: 757px) {
  .wp-editor__content img {
    margin: 0;
    margin-bottom: 1rem;
  }
}

.pageTitle {
  margin-top: 60px;
  font-size: 1.2rem;
  font-weight: bold;
  margin-left: 1rem;
}
@media (max-width: 757px) {
  .pageTitle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 1rem;
  }
}

.onlyMobile {
  display: none;
}
@media (max-width: 757px) {
  .onlyMobile {
    display: block;
    font-size: 1rem;
  }
}

@media (max-width: 757px) {
  .categoty_nav_navigation {
    display: none;
  }
}

@media (max-width: 757px) {
  .postMobileWrapper {
    width: 100%;
    padding-left: 1rem;
  }
}

input[type=submit] {
  -webkit-appearance: none;
  border: none;
}

.solsol {
  opacity: 0;
}

/*# sourceMappingURL=styles.css.map */
