@charset "UTF-8";
/* ===================================================================
CSS information
 file name  :  _mixin.scss
 style info :  mixin a
=================================================================== */
/* ===================================================================
CSS information
 file name : _utility.scss
 style info : utility
=================================================================== */
@media all and (max-width : 768px) {
  .pc-only {
    display: none !important;
  }
}

@media all and (min-width: 1201px) {
  .tb-only {
    display: none !important;
  }
}

@media all and (min-width: 1201px) {
  .sp-only {
    display: none !important;
  }
}
@media all and (max-width : 1000px) {
  .sp-only {
    display: none !important;
  }
}
@media all and (max-width : 768px) {
  .sp-only {
    display: block !important;
  }
}

/* # =================================================================
   # ANIMATION
   # ================================================================= */
.whiteBgTrigger {
  display: block;
  position: relative;
  overflow: hidden;
  transition: 0.5s;
}
.whiteBgTrigger figure,
.whiteBgTrigger .text {
  transition: 1s;
  opacity: 0;
}
.whiteBgTrigger:before {
  background-color: #ffffff;
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  transform: translateX(-100%);
  z-index: 3;
  top: 0;
  left: 0;
}
.whiteBgTrigger.whiteBg::before {
  transition: 0.5s;
  transform: translateX(0);
  left: 0;
}
.whiteBgTrigger.whiteBg.on figure,
.whiteBgTrigger.whiteBg.on .text {
  opacity: 1;
}
.whiteBgTrigger.whiteBg.on::before {
  transform: translateX(100%);
}

/*==================================================
ふわっ
===================================*/
/* その場で */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下から */
.fadeUp {
  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);
  }
}
/* 上から */
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左から */
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右から */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.blur {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
/*==================================================
ぱたっ
===================================*/
/* flipLeftTop */
.flipLeftTop {
  animation-name: flipLeftTopAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes flipLeftTopAnime {
  from {
    transform: translate(-20px, 80px) rotate(-15deg);
    opacity: 0;
  }
  to {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.zoomInTrigger,
.flipLeftTopTrigger,
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.blurTrigger {
  opacity: 0;
}

.slide-in {
  overflow: hidden;
  transform: translate(-100%, 0%) matrix(1, 0, 0, 1, 0, 0);
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;
  transform: translate(100%, 0%) matrix(1, 0, 0, 1, 0, 0);
}

.slideAnimeLeftRight {
  animation-name: slideText-100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

@keyframes slideText-100 {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
.slideAnimeRightLeft {
  animation-name: slideText100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

@keyframes slideText100 {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
/*==================================================
シャッ
===================================*/
/*背景色が伸びて出現 共通*/
.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*中の要素*/
.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*--------- 左から --------*/
.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  /*伸びる背景色の設定*/
}

@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(0);
  }
}
/*--------- 右から --------*/
.bgRLextend::before {
  animation-name: bgRLextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  /*伸びる背景色の設定*/
}

@keyframes bgRLextendAnime {
  0% {
    transform-origin: right;
    transform: scaleX(0);
  }
  50% {
    transform-origin: right;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: left;
  }
  100% {
    transform-origin: left;
    transform: scaleX(0);
  }
}
/*--------- 下から --------*/
.bgDUextend::before {
  animation-name: bgDUextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  /*伸びる背景色の設定*/
}

@keyframes bgDUextendAnime {
  0% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
  50% {
    transform-origin: bottom;
    transform: scaleY(1);
  }
  50.001% {
    transform-origin: top;
  }
  100% {
    transform-origin: top;
    transform: scaleY(0);
  }
}
/*--------- 上から --------*/
.bgUDextend::before {
  animation-name: bgUDextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  /*伸びる背景色の設定*/
}

@keyframes bgUDextendAnime {
  0% {
    transform-origin: top;
    transform: scaleY(0);
  }
  50% {
    transform-origin: top;
    transform: scaleY(1);
  }
  50.001% {
    transform-origin: bottom;
  }
  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}
.delay-time02 {
  animation-delay: 0.2s;
}

.delay-time04 {
  animation-delay: 0.4s;
}

.delay-time05 {
  animation-delay: 0.5s;
}

.delay-time10 {
  animation-delay: 1s;
}

.delay-time15 {
  animation-delay: 1.5s;
}

.delay-time20 {
  animation-delay: 2s;
}

.delay-time25 {
  animation-delay: 2.5s;
}

.delay-time30 {
  animation-delay: 3s;
}

/* ===================================================================
CSS information
 file name  :  _base.scss
 style info : reset css
=================================================================== */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  vertical-align: bottom;
}

/* ===================================================================
CSS information
 file name  :  _common.scss
 style info : 共通項01
=================================================================== */
html {
  overflow: auto !important;
}

/* body
----------------------------------------------------------------------------- */
body {
  width: 100%;
  margin: 0 auto;
  font-family: Noto Sans JP;
  font-weight: 500;
  line-height: 1.8;
  font-size: 14px;
  color: #626C7C;
  text-align: center;
  background: #EFEFF4;
  position: relative;
  overflow: hidden;
  display: flex;
  width: 100%;
  min-height: 100vh;
  flex-direction: column;
  margin: 0;
}

body * {
  box-sizing: border-box;
}

/* font
----------------------------------------------------------------------------- */
.rich_font {
  font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 500;
}

.robot_font {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}

/* anchor
----------------------------------------------------------------------------- */
a {
  color: #626C7C;
  text-decoration: none;
}

a:link {
  color: #626C7C;
  text-decoration: none;
}

a:visited {
  color: #626C7C;
  text-decoration: none;
}

a:hover {
  color: #B7BFCE;
  text-decoration: none;
}

a:active {
  color: #B7BFCE;
  text-decoration: none;
}

/* layout
----------------------------------------------------------------------------- */
.sp_mode {
  display: none !important;
}

.table_mode {
  display: none !important;
}

.table_mode2 {
  display: none !important;
}

.pc_mode {
  display: block !important;
}

/* table layout default
----------------------------------------------------------------------------- */
table {
  margin-bottom: 40px;
  width: 100%;
}

tr {
  border-bottom: 1px dotted #888;
}

tr:first-child {
  border-top: 1px dotted #888;
}

th {
  background-color: #edecf0;
  vertical-align: top;
  font-weight: normal;
}

td {
  width: 100px;
  vertical-align: top;
}

/* ol layout default
----------------------------------------------------------------------------- */
ol {
  line-height: normal;
}

/* scroll_prevent
----------------------------------------------------------------------------- */
.scroll_prevent {
  position: fixed;
}

/* img
----------------------------------------------------------------------------- */
img {
  max-width: 100%;
  height: auto !important;
}

/* header
----------------------------------------------------------------------------- */
header {
  position: absolute;
  top: 45px;
  left: 45px;
  z-index: 1000;
}
@media all and (max-width : 768px) {
  header {
    top: 19px;
    left: 17px;
  }
}
header .logo a {
  display: block;
  width: max-content;
}
@media all and (max-width : 768px) {
  header .logo a {
    width: 170px;
    text-align: left;
  }
  header .logo a img {
    max-width: 100%;
    max-height: 50px;
    width: auto;
  }
}

/* hamburger
----------------------------------------------------------------------------- */
.g-nab-btn {
  position: fixed;
  top: 45px;
  right: 55px;
  border-color: transparent;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 140px;
  z-index: 1000;
}
@media all and (max-width : 768px) {
  .g-nab-btn {
    top: 19px;
    right: 14px;
    width: 120px;
  }
}
.g-nab-btn::focus-visible {
  outline: none;
}
.g-nab-btn p {
  font-family: Work Sans;
  font-size: 18px;
  font-weight: 500;
  color: #444 !important;
}
@media all and (max-width : 768px) {
  .g-nab-btn p {
    font-size: 14px;
  }
}
.g-nab-btn p::after {
  content: "MENU";
}
.g-nab-btn div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 9px;
}
.g-nab-btn div span {
  transition: all 0.4s;
  height: 2px;
  background: #444;
}
.g-nab-btn div span:first-of-type {
  width: 64px;
}
@media all and (max-width : 768px) {
  .g-nab-btn div span:first-of-type {
    width: 50px;
  }
}
.g-nab-btn div span:last-of-type {
  width: 43px;
}
@media all and (max-width : 768px) {
  .g-nab-btn div span:last-of-type {
    width: 34px;
  }
}
.g-nab-btn.active p {
  color: #fff !important;
}
.g-nab-btn.active p::after {
  font-family: Work Sans;
  content: "CLOSE";
}
.g-nab-btn.active div {
  color: #fff !important;
}
.g-nab-btn.active div span {
  background: #fff !important;
}
.g-nab-btn.active div span:first-of-type {
  width: 43px;
  transform: translateY(6px) rotate(-45deg);
}
.g-nab-btn.active div span:last-of-type {
  width: 43px;
  transform: translateY(-6px) rotate(45deg);
}

/* toggle nav
----------------------------------------------------------------------------- */
.g-nav {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100vw;
  height: 100vh;
  background: #626C7C;
  z-index: 100;
  transition: 1s;
  display: flex;
  align-items: center;
  gap: 53px;
}
@media all and (max-width : 768px) {
  .g-nav {
    overflow: auto;
    max-height: 100vh;
    padding: 30px 0;
  }
}
.g-nav.active {
  left: 0;
}
.g-nav .img {
  width: 50%;
  height: 100vh;
  display: flex;
  align-items: center;
}
@media all and (max-width : 768px) {
  .g-nav .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: block;
    z-index: -1;
  }
}
.g-nav .img img {
  width: 100%;
  object-fit: contain;
  opacity: 0.7;
}
@media all and (max-width : 768px) {
  .g-nav .img img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    opacity: 0.2;
  }
}
.g-nav nav {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 414px;
  margin: 0 0 0 10px;
}
@media all and (max-width : 768px) {
  .g-nav nav {
    width: 100%;
    padding: 0 30px;
  }
}
.g-nav nav .top {
  padding: 0 0 23px;
  width: 100%;
  border-bottom: 1px solid #B7BFCE;
}
.g-nav nav .top ul {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  gap: 13px;
}
.g-nav nav .top ul li {
  width: 100%;
}
.g-nav nav .top ul li a {
  font-family: Work Sans;
  font-size: 15px;
  text-align: left;
  color: #fff;
  display: flex;
  align-items: center;
}
.g-nav nav .top ul li a:hover {
  color: #b7bfce;
}
.g-nav nav .top ul li a.sub-menu:after {
  content: "+";
  margin: 0 0 0 1em;
  font-size: 15px;
}
.g-nav nav .top ul li a.active.sub-menu:after {
  content: "-";
  margin: 0 0 0 1em;
  font-size: 15px;
}
.g-nav nav .top ul li .sub {
  display: none;
  padding: 13px 0 13px 9px;
}
.g-nav nav .top ul li .sub ul {
  display: flex;
  gap: 8px 35px;
  flex-direction: row;
  flex-wrap: wrap;
}
.g-nav nav .top ul li .sub ul li {
  width: max-content;
}
.g-nav nav .down {
  padding: 22px 0 0;
}
.g-nav nav .down ul {
  display: flex;
  align-items: center;
  gap: 45px;
}
.g-nav nav .down ul li a {
  font-family: Work Sans;
  font-size: 15px;
  text-align: left;
  color: #fff;
}
.g-nav nav .down ul li a:hover {
  color: #b7bfce;
}
.g-nav nav .down ul li .sub {
  display: none;
}
.g-nav nav .sns {
  padding: 38px 0 0;
}
.g-nav nav .sns ul {
  display: flex;
  align-items: center;
  gap: 14px;
}
.g-nav nav .sns ul li a img {
  width: 28px;
  aspect-ratio: 1;
}
.g-nav nav .sns ul li a:hover {
  opacity: 0.5;
}

/* float-sns
----------------------------------------------------------------------------- */
.float-sns {
  position: fixed;
  top: 0;
  left: 50px;
  bottom: 0;
  margin: auto;
  height: 100vh;
  display: flex;
  align-items: center;
  z-index: 10;
}
@media all and (max-width : 1000px) {
  .float-sns {
    display: none;
  }
}
.float-sns ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

/* float-link
----------------------------------------------------------------------------- */
.float-link {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
@media all and (max-width : 768px) {
  .float-link {
    height: auto;
    width: 100%;
    top: initial;
    right: 0;
    bottom: 0;
  }
}
.float-link .reserve {
  writing-mode: vertical-rl;
  text-orientation: sideways-right;
  display: flex;
  gap: 10px;
}
@media all and (max-width : 768px) {
  .float-link .reserve {
    writing-mode: initial;
    width: 100%;
    gap: 0;
  }
}
.float-link .reserve a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 202px;
  width: 48px;
  background: #FFFF6E;
  color: #626C7C;
  font-size: 16px;
  font-family: Work Sans;
}
@media all and (max-width : 768px) {
  .float-link .reserve a {
    height: 45px;
    width: 50%;
  }
  .float-link .reserve a:last-of-type {
    border-left: 1px solid #626C7C;
  }
}
.float-link .reserve a:hover {
  opacity: 0.7;
}

/* pankuzu
----------------------------------------------------------------------------- */
/* fv
----------------------------------------------------------------------------- */
/* main
----------------------------------------------------------------------------- */
/* wrapper
----------------------------------------------------------------------------- */
/* page_top
----------------------------------------------------------------------------- */
/* footer
----------------------------------------------------------------------------- */
footer {
  margin: 122px auto 0;
  width: 100%;
  padding: 122px 0 0;
  margin: auto 0 0;
}
@media all and (max-width : 768px) {
  footer {
    margin-top: 60px;
    width: 100%;
    padding: 60px 0 0;
    margin: auto 0 0;
  }
}
footer .wrapper {
  width: 100%;
}
footer .wrapper.up {
  padding: 0 0 42px;
}
footer .wrapper.up .inner {
  padding: 0 100px;
  text-align: left;
}
@media all and (max-width : 768px) {
  footer .wrapper.up .inner {
    padding: 0 11px;
  }
}
footer .wrapper.up .inner .breadcrumbs ul {
  display: flex;
  align-items: center;
}
@media all and (max-width : 768px) {
  footer .wrapper.up .inner .breadcrumbs ul {
    flex-wrap: wrap;
  }
}
footer .wrapper.up .inner .breadcrumbs ul li a {
  display: flex;
  align-items: center;
  font-size: 11px;
  color: #626C7C;
}
footer .wrapper.up .inner .breadcrumbs ul li a::after {
  content: ">";
  color: #B7BFCE;
  padding: 0 10px;
}
footer .wrapper.up .inner .breadcrumbs ul li a:hover {
  color: #b7bfce;
}
footer .wrapper.up .inner .breadcrumbs ul li span {
  display: flex;
  align-items: center;
  font-size: 11px;
  color: #626C7C;
}
footer .wrapper.up .inner .breadcrumbs ul li span::after {
  content: ">";
  color: #B7BFCE;
  padding: 0 10px;
}
footer .wrapper.up .inner .breadcrumbs ul li span:hover {
  color: #b7bfce;
}
footer .wrapper.up .inner .breadcrumbs ul li:first-of-type a {
  color: #B7BFCE;
}
footer .wrapper.up .inner .breadcrumbs ul li:first-of-type span {
  color: #B7BFCE;
}
footer .wrapper.up .inner .breadcrumbs ul li:last-of-type a::after {
  display: none;
}
footer .wrapper.up .inner .breadcrumbs ul li:last-of-type span::after {
  display: none;
}
footer .wrapper.up .inner .footer-title {
  margin-top: 11px;
  font-size: 11px;
  color: #626C7C;
}
@media all and (max-width : 768px) {
  footer .wrapper.up .inner .footer-title {
    padding-right: 85px;
  }
}
footer .wrapper.down {
  background: #626C7C;
  padding: 51px 0 37px;
}
@media all and (max-width : 768px) {
  footer .wrapper.down {
    padding: 35px 0 84px;
  }
}
footer .wrapper.down .inner .f-nav {
  padding: 0 100px;
}
@media all and (max-width : 768px) {
  footer .wrapper.down .inner .f-nav {
    padding: 0 0 0 18px;
  }
}
footer .wrapper.down .inner .f-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media all and (max-width : 768px) {
  footer .wrapper.down .inner .f-nav ul {
    width: 200px;
    gap: 15px 12px;
  }
}
footer .wrapper.down .inner .f-nav ul li a {
  font-size: 13px;
  color: #fff;
}
@media all and (max-width : 768px) {
  footer .wrapper.down .inner .f-nav ul li a {
    font-size: 12px;
  }
}
footer .wrapper.down .inner .f-sns {
  margin-top: 47px;
  padding: 0 0 0 18px;
}
footer .wrapper.down .inner .f-sns ul {
  display: flex;
  align-items: center;
  gap: 13px;
}
@media all and (max-width : 768px) {
  footer .wrapper.down .inner .f-sns ul {
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media all and (max-width : 768px) {
  footer .wrapper.down .inner .f-sns ul li:first-of-type {
    text-align: left;
    width: 100%;
  }
}
footer .wrapper.down .inner .f-sns ul li p {
  font-size: 24px;
  font-family: "Caveat", cursive;
  color: #fff;
  margin-right: 10px;
}
@media all and (max-width : 768px) {
  footer .wrapper.down .inner .f-sns ul li p {
    width: 100%;
  }
}
@media all and (max-width : 768px) {
  footer .wrapper.down .inner .f-sns ul li a {
    width: 33px;
  }
  footer .wrapper.down .inner .f-sns ul li a img {
    width: 100%;
    aspect-ratio: 1;
    height: 36px !important;
  }
}
footer .page-top {
  position: absolute;
  bottom: 234px;
  right: 60px;
  transition: all 0.4s;
}
@media all and (max-width : 768px) {
  footer .page-top {
    position: absolute;
    bottom: 450px;
    right: 2px;
  }
}
footer .page-top:hover {
  bottom: 244px;
}
@media all and (max-width : 768px) {
  footer .page-top:hover {
    bottom: 450px;
  }
}

/* [modalBox] モーダルリンク ----------*/
.modalBox {
  display: none;
  box-sizing: border-box;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 800px;
  margin-left: -400px;
  padding: 26px 32px 18px 20px;
  background: #FFF;
}

.modalClose {
  overflow: hidden;
  position: absolute;
  top: -17px;
  right: -7px;
  width: 44px;
  height: 44px;
  background: url(../images/common/btn_modal_close.png) no-repeat;
  background-size: contain;
  text-indent: -9999px;
  cursor: pointer;
}

.modalBox table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  line-height: 1.4;
  margin-bottom: 0;
}

.modalBox th,
.modalBox td {
  text-align: center;
  vertical-align: middle;
}

.modalBox tr th:nth-child(2),
.modalBox tr td:nth-child(2) {
  border-left: 2px solid #CCC;
  border-right: 2px solid #CCC;
}

.modalBox th {
  padding: 5px;
  background: #9b9b9b;
  font-size: 14px;
  font-weight: bold;
  color: #FFF;
}

.modalBox td {
  padding: 14px 18px;
}

.modalBox tbody tr:nth-child(even) td {
  background: #f4f4f4;
}

.modalBox tr td.shop {
  font-size: 16px;
}

.modalBox tr td.tel {
  width: 28%;
  font-size: 22px;
  font-weight: bold;
  white-space: nowrap;
}

.modalBox tr td.reserve {
  width: 32%;
}

.modalBox .btn {
  display: block;
  width: 200px;
  padding: 10px 0;
  background: #e88bba;
  font-size: 14px;
  font-weight: bold;
  color: #FFF;
}

#lean_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 2000;
}

@media screen and (max-width: 768px) {
  /* [modalBox] モーダルリンク ----------*/
  .modalBox {
    width: 290px;
    margin-left: -145px;
    padding: 14px;
  }
  .modalClose {
    top: -11px;
    right: -7px;
    width: 26px;
    height: 26px;
  }
  .modalBox thead {
    display: none;
  }
  .modalBox table,
  .modalBox tbody,
  .modalBox tr,
  .modalBox th,
  .modalBox td {
    display: block;
    padding: 0;
  }
  .modalBox tr {
    padding: 10px 0;
    border-bottom: 1px solid #CCC;
  }
  .modalBox tr:before,
  .modalBox tr:after {
    content: "";
    display: table;
  }
  .modalBox tr:after {
    clear: both;
  }
  .modalBox tbody tr:nth-child(even) td {
    background: inherit;
  }
  .modalBox tr td:nth-child(2) {
    border: 0;
  }
  .modalBox tr td.shop,
  .modalBox tr td.tel,
  .modalBox tr td.reserve {
    width: auto;
    font-size: 12px;
  }
  .modalBox tr td.shop {
    padding-bottom: 10px;
  }
  .modalBox .btn {
    width: 100%;
    padding: 5px 0;
    font-size: 12px;
  }
  .modalBox .btn span {
    display: inline-block;
    background-repeat: no-repeat;
    background-position: 0 50%;
    background-size: auto 15px;
  }
  .modalBox .tel .btn span {
  }
  .modalBox .reserve .btn span {
  }
}
/* ===================================================================
CSS information
 file name  :  _page.scss
 style info :  ページ設定
=================================================================== */
.ttl-wrapper {
  margin-inline: auto;
  max-width: 1000px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ttl-wrapper h2.title {
  text-align: left;
  font-size: 56px;
  font-family: "Playfair Display", serif;
  color: #626C7C;
}
@media all and (max-width : 768px) {
  .ttl-wrapper h2.title {
    font-size: 30px;
    padding: 0 0 0 28px;
  }
}
.ttl-wrapper h2.title.--center {
  margin-inline: auto;
  padding: 0;
}

.more-btn {
  display: flex;
  align-items: center;
  gap: 3px;
  width: 120px;
  font-size: 32px;
  color: #444;
  transition: all 0.4s;
}
@media all and (max-width : 768px) {
  .more-btn {
    gap: 2;
    font-size: 23px;
    width: 80px;
  }
}
.more-btn p {
  font-family: "Caveat", cursive;
}
.more-btn:hover {
  gap: 8px;
}
.more-btn img {
  padding: 10px 0 0;
}
@media all and (max-width : 768px) {
  .more-btn img {
    padding: 5px 0 0;
    width: 20px;
    height: 20px;
  }
}

main.page .wrapper .inner {
  padding-top: 140px;
  max-width: 1000px;
  margin-inline: auto;
}
@media all and (max-width : 768px) {
  main.page .wrapper .inner {
    padding: 95px 11px 0;
  }
}
main.page .wrapper .inner h2.page--ttl {
  font-family: "Playfair Display", serif;
  font-size: 46px;
  text-align: left;
  color: #626c7c;
  line-height: 1;
}
@media all and (max-width : 768px) {
  main.page .wrapper .inner h2.page--ttl {
    padding: 0 0 0 7px;
    font-size: 30px;
  }
}
main.page .wrapper .inner h2.page--ttl span {
  margin-top: 6px;
  display: block;
  font-size: 13px;
  text-align: left;
}
@media all and (max-width : 768px) {
  main.page .wrapper .inner h2.page--ttl span {
    font-size: 13px;
    margin-top: 14px;
  }
}
main.page .wrapper .inner .page-nav {
  margin-top: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media all and (max-width : 768px) {
  main.page .wrapper .inner .page-nav {
    margin-top: 27px;
  }
}
main.page .wrapper .inner .page-nav .prev {
  margin: 0 auto 0 0;
}
@media all and (max-width : 768px) {
  main.page .wrapper .inner .page-nav .prev svg {
    width: 7px;
  }
}
main.page .wrapper .inner .page-nav .next {
  margin: 0 0 0 auto;
}
@media all and (max-width : 768px) {
  main.page .wrapper .inner .page-nav .next svg {
    width: 7px;
  }
}
main.page .wrapper .inner .page-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: transparent;
  color: #b7bfce;
  border: 1px solid #b7bfce;
  border-radius: 50%;
  gap: 22px;
  transition: all 0.4s;
}
@media all and (max-width : 768px) {
  main.page .wrapper .inner .page-nav a {
    width: 40px;
    height: 40px;
    gap: 15px;
    font-size: 13px;
  }
}
main.page .wrapper .inner .page-nav a:hover {
  color: #626c7c;
  border: 1px solid #626c7c;
}
main.page .wrapper .inner .page-nav a:hover path {
  stroke: #626c7c;
}
main.page .wrapper .inner .page-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
@media all and (max-width : 768px) {
  main.page .wrapper .inner .page-nav ul {
    gap: 15px;
  }
}
main.page .wrapper .inner .page-nav ul li.active a {
  color: #fff;
  background: #626c7c;
  border: 1px solid #626c7c;
}
main.page .wrapper .inner .page-nav .more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}
@media all and (max-width : 768px) {
  main.page .wrapper .inner .page-nav .more {
    width: auto;
  }
}
main.page .wrapper .inner .staff-banner {
  margin-top: 40px;
  width: 100%;
  border-top: 1px solid #626c7c;
  border-bottom: 1px solid #626c7c;
  padding: 22px 13px 26px;
  display: flex;
  align-items: center;
  gap: 17px;
}
@media all and (max-width : 768px) {
  main.page .wrapper .inner .staff-banner {
    margin-top: 32px;
    padding: 21px 13px 29px 0;
    gap: 13px;
  }
}
main.page .wrapper .inner .staff-banner .photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
}
@media all and (max-width : 768px) {
  main.page .wrapper .inner .staff-banner .photo {
    width: 100px;
    height: 100px;
  }
}
main.page .wrapper .inner .staff-banner .photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
@media all and (max-width : 768px) {
  main.page .wrapper .inner .staff-banner .data {
    line-height: 1;
  }
}
main.page .wrapper .inner .staff-banner .data .shop-name a {
  text-decoration: underline;
  font-size: 11px;
  color: #444;
}
main.page .wrapper .inner .staff-banner .data .job {
  margin-top: 8px;
  font-size: 11px;
  color: #444;
}
@media all and (max-width : 768px) {
  main.page .wrapper .inner .staff-banner .data .job {
    margin-top: 3px;
  }
}
main.page .wrapper .inner .staff-banner .data .name {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #444;
  gap: 9px;
}
@media all and (max-width : 768px) {
  main.page .wrapper .inner .staff-banner .data .name {
    margin-top: 9px;
    font-size: 18px;
    gap: 12px;
  }
}
main.page .wrapper .inner .staff-banner .data .reserve {
  width: 150px;
  height: 33px;
  background: #ffff6e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #626c7c;
}
@media all and (max-width : 768px) {
  main.page .wrapper .inner .staff-banner .data .reserve {
    width: 168px;
    height: 31px;
    margin-top: 18px;
  }
}
main.page .wrapper .inner .page-nav-tw {
  margin-top: 96px;
  max-width: 1000px;
}
@media all and (max-width : 768px) {
  main.page .wrapper .inner .page-nav-tw {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    margin-top: 50px;
  }
}
main.page .wrapper .inner .page-nav-tw ul {
  display: flex;
  border-top: 1px solid #b7bfce;
  border-bottom: 1px solid #b7bfce;
}
@media all and (max-width : 768px) {
  main.page .wrapper .inner .page-nav-tw ul {
    flex-wrap: wrap;
  }
}
main.page .wrapper .inner .page-nav-tw ul li {
  width: 50%;
}
@media all and (max-width : 768px) {
  main.page .wrapper .inner .page-nav-tw ul li {
    width: 100%;
  }
}
main.page .wrapper .inner .page-nav-tw ul li a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 28px 12px;
  font-size: 13px;
  color: #626c7c;
  gap: 14px;
}
@media all and (max-width : 768px) {
  main.page .wrapper .inner .page-nav-tw ul li a {
    padding: 20px 10px;
  }
}
main.page .wrapper .inner .page-nav-tw ul li a:hover {
  color: #b7bfce;
}
main.page .wrapper .inner .page-nav-tw ul li a:hover path {
  stroke: #b7bfce;
}
main.page .wrapper .inner .page-nav-tw ul li.prev {
  text-align: left;
}
main.page .wrapper .inner .page-nav-tw ul li.next {
  text-align: right;
}
main.page .wrapper .inner .page-nav-tw ul li.next a {
  justify-content: flex-end;
}
main.page .wrapper .inner .page-nav-tw .go-top {
  display: block;
  margin-top: 20px;
  margin-inline: auto;
  padding: 28px 12px;
  max-width: 700px;
  font-size: 13px;
}

a figure {
  position: relative;
}
a figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
a figure figcaption {
  font-family: "Playfair Display", serif;
  transition: all 0.4s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(41, 69, 117, 0.5);
  font-size: 16px;
  color: #fff;
  opacity: 0;
}
a:hover figcaption {
  opacity: 1;
}

.special-nav {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
}
@media all and (max-width : 768px) {
  .special-nav {
    display: block;
  }
}
.special-nav .link {
  width: 100%;
}
@media all and (max-width : 768px) {
  .special-nav .link {
    width: 100%;
    transition: all 0.4s;
  }
}
.special-nav .link a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  font-size: 13px;
  padding: 0 36px;
  color: #B7BFCE;
  background: #fff;
  border: 1px solid #fff;
}
@media all and (max-width : 768px) {
  .special-nav .link a {
    justify-content: flex-start;
    padding: 0 14px;
    font-size: 14px;
    height: 50px;
    width: 100%;
  }
  .special-nav .link a svg {
    margin: 0 0 0 auto;
    width: 9px;
    height: 4px;
  }
}
.special-nav .link.active a {
  color: #efeff4;
  background: #626c7c;
}
.special-nav .link:hover a {
  color: #626C7C;
  border: 1px solid #626c7c;
}
@media all and (max-width : 768px) {
  .special-nav .link:hover a {
    background: #fff;
    border: 1px solid #626c7c;
    color: #626C7C;
  }
}
@media all and (max-width : 768px) {
  .special-nav .link.active:hover a {
    color: #efeff4;
    background: #626c7c;
  }
}
@media all and (max-width : 768px) {
  .special-nav .link:not(.active) {
    display: none;
    opacity: 0;
  }
  .special-nav .link.open {
    display: block;
    opacity: 1;
    margin-top: -1px;
  }
}

/*
top
**********************************************************/
main.top .fv .wrapper .inner {
  max-width: 1600px;
  margin-inline: auto;
  padding: 102px 0 0 100px;
}
@media all and (max-width : 768px) {
  main.top .fv .wrapper .inner {
    padding: 0;
  }
}
main.top .fv .wrapper .inner .contents {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media all and (max-width : 768px) {
  main.top .fv .wrapper .inner .contents {
    flex-wrap: wrap;
    gap: 0;
  }
}
main.top .fv .wrapper .inner .contents .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: calc(50% - 40px);
  flex: 1;
  text-align: left;
}
@media all and (max-width : 768px) {
  main.top .fv .wrapper .inner .contents .text {
    order: 2;
    width: 100%;
    padding: 25px 23px;
  }
}
main.top .fv .wrapper .inner .contents .text h2 {
  font-size: 36px;
  line-height: 1.5;
  font-weight: bold;
}
@media all and (max-width : 768px) {
  main.top .fv .wrapper .inner .contents .text h2 {
    font-size: 22px;
  }
}
main.top .fv .wrapper .inner .contents .text p {
  margin: 35px auto 0;
  font-size: 13px;
  line-height: 2.2;
}
@media all and (max-width : 768px) {
  main.top .fv .wrapper .inner .contents .text p {
    margin-top: 24px;
  }
}
main.top .fv .wrapper .inner .contents .slider {
  width: 50%;
  flex: 1;
}
@media all and (max-width : 768px) {
  main.top .fv .wrapper .inner .contents .slider {
    order: 1;
    width: 100%;
    height: auto;
  }
}
main.top .fv .wrapper .inner .contents .slider .swiper-slide img {
  width: 100%;
  /*height: 100vh;*/
  object-fit: contain;
}
@media all and (max-width : 768px) {
  main.top .fv .wrapper .inner .contents .slider .swiper-slide img {
    height: auto;
  }
}
main.top .fv .wrapper .inner .contents .slider .swiper-pagination {
  bottom: 35px;
  right: 25px;
  left: auto;
  width: max-content;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
main.top .fv .wrapper .inner .contents .slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin-inline: auto;
  background: #fff;
  opacity: 1;
}
main.top .fv .wrapper .inner .contents .slider .swiper-pagination-bullet-active {
  background: #626C7C;
  opacity: 0.85;
}
main.top section:not(.fv) {
  padding: 84px 0 0;
}
main.top .gallery .wrapper .inner {
  margin: 40px auto 0;
}
@media all and (max-width : 768px) {
  main.top .gallery .wrapper .inner {
    margin: 25px auto 0;
  }
}
main.top .gallery .wrapper .inner .contents {
  margin-inline: auto;
  max-width: 1400px;
}
main.top .gallery .wrapper .inner .contents .gallery-li {
  display: grid;
  /*
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  */
  grid-template-columns: repeat(3, minmax(25%, 1fr));
  gap: 3px;
}
@media all and (max-width : 768px) {
  main.top .gallery .wrapper .inner .contents .gallery-li {
    /*
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    */
    grid-template-columns: repeat(auto-fit, minmax(33.3333333333%, 1fr));
  }
}
main.top .gallery .wrapper .inner .contents .gallery-li .item a figure {
  position: relative;
}
main.top .gallery .wrapper .inner .contents .gallery-li .item a figure img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
main.top .gallery .wrapper .inner .contents .gallery-li .item a figure figcaption {
  transition: all 0.4s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(41, 69, 117, 0.5);
  font-size: 16px;
  color: #fff;
  opacity: 0;
}
main.top .gallery .wrapper .inner .contents .gallery-li .item a:hover figcaption {
  opacity: 1;
}
main.top .news .wrapper .inner {
  margin: 36px auto 0;
  max-width: 1000px;
}
@media all and (max-width : 768px) {
  main.top .news .wrapper .inner {
    margin: 25px auto 0;
  }
}
main.top .news .wrapper .inner .contents .news-list {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(auto, 1fr);
  gap: 6px;
}
main.top .news .wrapper .inner .contents .news-list .item a {
  display: flex;
  align-items: center;
  height: 107px;
  width: 100%;
  padding: 0 35px;
  background: #fff;
}
@media all and (max-width : 768px) {
  main.top .news .wrapper .inner .contents .news-list .item a {
    height: 85px;
    padding: 0 14px;
  }
}
main.top .news .wrapper .inner .contents .news-list .item a p {
  display: flex;
  gap: 20px;
  font-size: 16px;
}
@media all and (max-width : 768px) {
  main.top .news .wrapper .inner .contents .news-list .item a p {
    display: block;
    gap: 0;
    text-align: left;
    font-size: 14px;
    line-height: 1.5;
  }
}
main.top .news .wrapper .inner .contents .news-list .item a p .day {
  color: #b7bfce;
}
main.top .news .wrapper .inner .contents .news-list .item a p .text {
  color: #444;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 1.5;
}
@media all and (max-width : 768px) {
  main.top .news .wrapper .inner .contents .news-list .item a p .text {
    -webkit-line-clamp: 2;
  }
}
main.top .news .wrapper .inner .contents .news-list .item a:hover p .text {
  color: #B7BFCE;
}
main.top .staff-blog .wrapper .inner {
  margin: 36px auto 0;
  max-width: 1000px;
}
@media all and (max-width : 768px) {
  main.top .staff-blog .wrapper .inner {
    margin: 25px auto 0;
  }
}
main.top .staff-blog .wrapper .inner .contents .staff-blog-li {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media all and (max-width : 768px) {
  main.top .staff-blog .wrapper .inner .contents .staff-blog-li {
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
  }
}
main.top .staff-blog .wrapper .inner .contents .staff-blog-li .item {
  width: 100%;
  height: 352px;
  padding: 13px 10px;
  background: #fff;
}
@media all and (max-width : 768px) {
  main.top .staff-blog .wrapper .inner .contents .staff-blog-li .item {
    width: 100%;
    height: auto;
    padding: 21px 13px 22px;
  }
}
main.top .staff-blog .wrapper .inner .contents .staff-blog-li .item a {
  display: block;
  height: 100%;
  overflow: hidden;
}
@media all and (max-width : 768px) {
  main.top .staff-blog .wrapper .inner .contents .staff-blog-li .item a {
    display: flex;
    gap: 7px;
  }
}
main.top .staff-blog .wrapper .inner .contents .staff-blog-li .item a figure {
  position: relative;
  height: 165px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media all and (max-width : 768px) {
  main.top .staff-blog .wrapper .inner .contents .staff-blog-li .item a figure {
    height: auto;
    width: 140px;
  }
}
main.top .staff-blog .wrapper .inner .contents .staff-blog-li .item a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}
main.top .staff-blog .wrapper .inner .contents .staff-blog-li .item a figure figcaption {
  font-family: "Playfair Display", serif;
  transition: all 0.4s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(41, 69, 117, 0.5);
  font-size: 16px;
  color: #fff;
  opacity: 0;
}
main.top .staff-blog .wrapper .inner .contents .staff-blog-li .item a .text {
  margin: 20px auto 0;
  text-align: left;
}
@media all and (max-width : 768px) {
  main.top .staff-blog .wrapper .inner .contents .staff-blog-li .item a .text {
    margin: 0 auto;
    flex: 1;
  }
}
main.top .staff-blog .wrapper .inner .contents .staff-blog-li .item a .text .day {
  font-size: 16px;
  color: #b7bfce;
}
@media all and (max-width : 768px) {
  main.top .staff-blog .wrapper .inner .contents .staff-blog-li .item a .text .day {
    font-size: 14px;
    line-height: 1.5;
  }
}
main.top .staff-blog .wrapper .inner .contents .staff-blog-li .item a .text .text02 {
  margin: 8px auto 0;
  font-size: 16px;
  color: #444;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 1.5;
}
@media all and (max-width : 768px) {
  main.top .staff-blog .wrapper .inner .contents .staff-blog-li .item a .text .text02 {
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.5;
  }
}
main.top .staff-blog .wrapper .inner .contents .staff-blog-li .item a:hover figure {
  overflow: hidden;
}
main.top .staff-blog .wrapper .inner .contents .staff-blog-li .item a:hover figure img {
  scale: 1.2;
}
main.top .staff-blog .wrapper .inner .contents .staff-blog-li .item a:hover figcaption {
  opacity: 1;
}
main.top .staff-blog .wrapper .inner .contents .staff-blog-li .item a:hover .text .text02 {
  color: #b7bfce;
}
main.top .recommended .wrapper .inner {
  margin: 36px auto 0;
  max-width: 1000px;
}
@media all and (max-width : 768px) {
  main.top .recommended .wrapper .inner {
    margin: 25px auto 0;
  }
}
main.top .recommended .wrapper .inner .contents .recommended-li {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  gap: 1px;
}
@media all and (max-width : 768px) {
  main.top .recommended .wrapper .inner .contents .recommended-li {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(auto, 1fr);
  }
}
main.top .recommended .wrapper .inner .contents .recommended-li .item a {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 558px;
  background: #fff;
  padding-bottom: 28px;
}
@media all and (max-width : 768px) {
  main.top .recommended .wrapper .inner .contents .recommended-li .item a {
    display: flex;
    height: auto;
    padding-bottom: 0;
  }
}
main.top .recommended .wrapper .inner .contents .recommended-li .item a figure {
  position: relative;
  height: 333px;
  overflow: hidden;
}
@media all and (max-width : 768px) {
  main.top .recommended .wrapper .inner .contents .recommended-li .item a figure {
    width: 50%;
    height: auto;
    aspect-ratio: 1;
  }
}
main.top .recommended .wrapper .inner .contents .recommended-li .item a figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: all 0.4s;
}
@media all and (max-width : 768px) {
  main.top .recommended .wrapper .inner .contents .recommended-li .item a figure img {
    object-fit: cover;
  }
}
main.top .recommended .wrapper .inner .contents .recommended-li .item a figure figcaption {
  font-family: "Playfair Display", serif;
  transition: all 0.4s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(41, 69, 117, 0.5);
  font-size: 16px;
  color: #fff;
  opacity: 0;
}
main.top .recommended .wrapper .inner .contents .recommended-li .item a .text {
  padding: 15px 22px 0;
  text-align: left;
}
@media all and (max-width : 768px) {
  main.top .recommended .wrapper .inner .contents .recommended-li .item a .text {
    padding: 20px 16px;
    width: 50%;
  }
}
main.top .recommended .wrapper .inner .contents .recommended-li .item a .text .title {
  font-size: 18px;
  color: #444;
}
@media all and (max-width : 768px) {
  main.top .recommended .wrapper .inner .contents .recommended-li .item a .text .title {
    font-size: 15px;
  }
}
main.top .recommended .wrapper .inner .contents .recommended-li .item a .text .text02 {
  margin: 15px auto 0;
  font-size: 13px;
  color: #626c7c;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
@media all and (max-width : 768px) {
  main.top .recommended .wrapper .inner .contents .recommended-li .item a .text .text02 {
    margin-top: 20px;
    font-size: 13px;
  }
}
main.top .recommended .wrapper .inner .contents .recommended-li .item a:hover figure img {
  scale: 1.2;
}
main.top .recommended .wrapper .inner .contents .recommended-li .item a:hover figcaption {
  opacity: 1;
}
main.top .recommended .wrapper .inner .contents .recommended-li .item a:hover .text .title {
  color: #b7bfce;
}
main.top .recommended .wrapper .inner .contents .recommended-li .item a:hover .text .text02 {
  color: #b7bfce;
}
main.top .salon-list .wrapper .inner {
  margin: 36px auto 0;
  max-width: 1000px;
}
@media all and (max-width : 768px) {
  main.top .salon-list .wrapper .inner {
    margin: 25px auto 0;
  }
}
main.top .salon-list .wrapper .inner .contents .salon-list-li {
  padding: 67px 61px 98px;
  background: #fff;
  display: grid;
  grid-template-rows: repeat(auto, 1fr);
  gap: 83px;
}
@media all and (max-width : 768px) {
  main.top .salon-list .wrapper .inner .contents .salon-list-li {
    padding: 30px 13px 37px;
    gap: 30px;
  }
}
main.top .salon-list .wrapper .inner .contents .salon-list-li .item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}
@media all and (max-width : 768px) {
  main.top .salon-list .wrapper .inner .contents .salon-list-li .item {
    grid-template-columns: repeat(1, 1fr);
    gap: 27px;
  }
}
main.top .salon-list .wrapper .inner .contents .salon-list-li .item .img {
  max-width: 420px;
}
main.top .salon-list .wrapper .inner .contents .salon-list-li .item .img img {
  width: 100%;
}
main.top .salon-list .wrapper .inner .contents .salon-list-li .item .text h3 {
  text-align: left;
}
main.top .salon-list .wrapper .inner .contents .salon-list-li .item .text h3 a {
  font-size: 18px;
  color: #444;
}
@media all and (max-width : 768px) {
  main.top .salon-list .wrapper .inner .contents .salon-list-li .item .text h3 a {
    font-size: 15px;
  }
}
main.top .salon-list .wrapper .inner .contents .salon-list-li .item .text h3 a:hover {
  color: #b7bfce;
}
main.top .salon-list .wrapper .inner .contents .salon-list-li .item .text dl {
  width: 100%;
  display: grid;
  grid-template-columns: 86px auto;
  text-align: left;
}
main.top .salon-list .wrapper .inner .contents .salon-list-li .item .text dl dt {
  font-size: 13px;
  color: #b7bfce;
}
@media all and (max-width : 768px) {
  main.top .salon-list .wrapper .inner .contents .salon-list-li .item .text dl dt {
    width: 75px;
    padding: 0 0 0 10px;
  }
}
main.top .salon-list .wrapper .inner .contents .salon-list-li .item .text dl.tel {
  margin: 21px auto 0;
  padding: 8px 0;
  border-top: 1px solid #efeff4;
  align-items: center;
}
main.top .salon-list .wrapper .inner .contents .salon-list-li .item .text dl.tel dd a {
  font-size: 23px;
  color: #444;
  line-height: 1;
}
@media all and (max-width : 768px) {
  main.top .salon-list .wrapper .inner .contents .salon-list-li .item .text dl.tel dd a {
    font-size: 19px;
  }
}
main.top .salon-list .wrapper .inner .contents .salon-list-li .item .text dl.address {
  padding: 16px 0 19px;
  border-top: 1px solid #efeff4;
  border-bottom: 1px solid #efeff4;
  font-size: 13px;
  line-height: 1.7;
  color: #444;
}
main.top .salon-list .wrapper .inner .contents .salon-list-li .item .text .link {
  margin: 26px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
main.top .salon-list .wrapper .inner .contents .salon-list-li .item .text .link .reserve {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Work Sans;
  width: 198px;
  height: 40px;
  font-size: 13px;
  color: #626c7c;
  background: #ffff6e;
}
main.top .salon-list .wrapper .inner .contents .salon-list-li .item .text .link .reserve:hover {
  opacity: 0.7;
}
main.top .salon-list .wrapper .inner .contents .salon-list-li .item .text .link .more-btn {
  color: #444;
}
main.top .special .wrapper .inner {
  margin: 36px auto 0;
  max-width: 1000px;
  display: flex;
}
@media all and (max-width : 768px) {
  main.top .special .wrapper .inner {
    margin: 25px auto 0;
    display: block;
    padding: 0 0 30px;
    background: #626C7C;
  }
}
main.top .special .wrapper .inner .text {
  flex: 1;
  width: 360px;
  background: #626C7C;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media all and (max-width : 768px) {
  main.top .special .wrapper .inner .text {
    width: 100%;
  }
}
main.top .special .wrapper .inner .text h2 {
  font-size: 48px;
  font-family: "Playfair Display", serif;
  color: #fff;
  line-height: 1;
}
@media all and (max-width : 768px) {
  main.top .special .wrapper .inner .text h2 {
    font-size: 24px;
    padding-top: 10px;
  }
}
main.top .special .wrapper .inner .text p {
  font-family: "Poppins", sans-serif;
  margin: 10px auto 0;
  color: #fff;
  font-size: 13px;
  color: #b7bfce;
}
@media all and (max-width : 768px) {
  main.top .special .wrapper .inner .text p {
    font-size: 11px;
    padding-bottom: 5px;
    margin-top: 0;
  }
}
main.top .special .wrapper .inner .slider {
  flex: 1;
  max-width: calc(100% - 360px);
  position: relative;
}
@media all and (max-width : 768px) {
  main.top .special .wrapper .inner .slider {
    max-width: 100%;
  }
}
main.top .special .wrapper .inner .slider a figure {
  position: relative;
}
main.top .special .wrapper .inner .slider a figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
main.top .special .wrapper .inner .slider a figure figcaption {
  font-family: "Playfair Display", serif;
  transition: all 0.4s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(41, 69, 117, 0.5);
  font-size: 16px;
  color: #fff;
  opacity: 0;
}
main.top .special .wrapper .inner .slider a:hover figcaption {
  opacity: 1;
}
main.top .special .wrapper .inner .slider .swiper-pagination02 {
  position: absolute;
  left: auto;
  right: calc(100% + 22px);
  bottom: 20px;
  width: max-content;
  z-index: 10;
}
@media all and (max-width : 768px) {
  main.top .special .wrapper .inner .slider .swiper-pagination02 {
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -26px;
  }
}
main.top .special .wrapper .inner .slider .swiper-pagination-bullet {
  opacity: 1;
  background: #fff;
}
main.top .special .wrapper .inner .slider .swiper-pagination-bullet-active {
  background: #FFFF6E;
  opacity: 1;
}
main.top .group .wrapper .inner {
  margin: 36px auto 0;
  max-width: 1000px;
}
@media all and (max-width : 768px) {
  main.top .group .wrapper .inner {
    margin: 25px auto 0;
  }
}
main.top .group .wrapper .inner .contents .group-li {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 22px;
}
@media all and (max-width : 768px) {
  main.top .group .wrapper .inner .contents .group-li {
    grid-template-columns: repeat(1, 1fr);
    gap: 7px;
  }
}
main.top .group .wrapper .inner .contents .group-li .item {
  display: flex;
  background: #fff;
  padding: 26px 0 27px 13px;
  gap: 26px;
  text-align: left;
  transition: all 0.4s;
}
@media all and (max-width : 768px) {
  main.top .group .wrapper .inner .contents .group-li .item {
    gap: 19px;
  }
}
main.top .group .wrapper .inner .contents .group-li .item .img {
  width: 172px;
  height: 100%;
}
@media all and (max-width : 768px) {
  main.top .group .wrapper .inner .contents .group-li .item .img {
    width: 138px;
  }
}
main.top .group .wrapper .inner .contents .group-li .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main.top .group .wrapper .inner .contents .group-li .item .text {
  width: calc(100% - 172px - 26px);
}
@media all and (max-width : 768px) {
  main.top .group .wrapper .inner .contents .group-li .item .text {
    width: calc(100% - 138px - 26px);
  }
}
main.top .group .wrapper .inner .contents .group-li .item .text h3 {
  padding-right: 21px;
}
main.top .group .wrapper .inner .contents .group-li .item .text h3 a {
  font-weight: normal;
  font-size: 18px;
  color: #444;
}
main.top .group .wrapper .inner .contents .group-li .item .text p.tel {
  font-size: 16px;
  color: #626c7c;
  margin-bottom: 12px;
  padding-right: 21px;
}
main.top .group .wrapper .inner .contents .group-li .item .text .more-btn {
  margin: 0 0 0 auto;
}
main.top .group .wrapper .inner .contents .group-li .item:hover {
  box-shadow: 0px 0px 10px rgba(98, 108, 124, 0.3);
}
main.top .group .wrapper .inner .contents .group-li .item:hover .more-btn {
  gap: 8px;
}
main.top .sns .wrapper .inner {
  margin: 36px auto 0;
  max-width: 1000px;
}
@media all and (max-width : 768px) {
  main.top .sns .wrapper .inner {
    margin: 25px auto 0;
  }
}
main.top .sns .wrapper .inner .contents .sns-li {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media all and (max-width : 768px) {
  main.top .sns .wrapper .inner .contents .sns-li {
    grid-template-columns: repeat(1, 1fr);
    display: block;
  }
}
main.top .sns .wrapper .inner .contents .sns-li .item {
  width: 100%;
  padding: 20px;
  background: #fff;
}
main.top .sns .wrapper .inner .contents .sns-li .item iframe {
  width: 100% !important;
}
main.top .sns .wrapper .inner .contents .youtube {
  margin-top: 30px;
  width: 100%;
  padding: 56px 46px;
  background: #fff;
  aspect-ratio: 16/9;
}
main.top .sns .wrapper .inner .contents .youtube iframe {
  width: 100%;
  height: 100%;
}

/*
news
**********************************************************/
main.news .news-li {
  display: grid;
  margin-top: 30px;
  border-top: 1px solid #b7bfce;
}
main.news .news-li .item {
  border-bottom: 1px solid #b7bfce;
}
main.news .news-li .item a {
  text-align: left;
  padding: 26px 0;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
@media all and (max-width : 768px) {
  main.news .news-li .item a {
    padding: 11px 0;
    display: block;
  }
}
main.news .news-li .item a span {
  font-size: 16px;
  color: #b7bfce;
}
@media all and (max-width : 768px) {
  main.news .news-li .item a span {
    font-size: 14px;
  }
}
main.news .news-li .item a p {
  font-size: 16px;
  color: #444;
}
@media all and (max-width : 768px) {
  main.news .news-li .item a p {
    font-size: 14px;
    padding-right: 10px;
  }
}
main.news .news-li .item a:hover p {
  color: #b7bfce;
}
main.news .contents {
  margin-top: 40px;
  margin-inline: auto;
  max-width: 700px;
}
@media all and (max-width : 768px) {
  main.news .contents {
    margin-top: 24px;
  }
}
main.news .contents .day {
  font-family: Work Sans;
  font-size: 13px;
  text-align: left;
  color: #b7bfce;
}
@media all and (max-width : 768px) {
  main.news .contents .day {
    font-size: 14px;
  }
}
main.news .contents .ttl {
  margin-top: 10px;
  font-size: 28px;
  text-align: left;
  color: #444;
  line-height: 1.5;
}
@media all and (max-width : 768px) {
  main.news .contents .ttl {
    font-size: 22px;
  }
}
main.news .contents .detail-area {
  margin-top: 25px;
  text-align: left;
}
@media all and (max-width : 768px) {
  main.news .contents .detail-area {
    margin-top: 66px;
  }
}
main.news .contents .detail-area p {
  margin-top: 30px;
  font-size: 16px;
  text-align: left;
  color: #444;
  line-height: 2;
  font-weight: normal;
}
@media all and (max-width : 768px) {
  main.news .contents .detail-area p {
    margin-top: 26px;
    font-size: 14px;
  }
}
main.news .contents .detail-area .img {
  margin-top: 60px;
  width: 100%;
}
@media all and (max-width : 768px) {
  main.news .contents .detail-area .img {
    padding-top: 28px;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
main.news .contents .detail-area .img img {
  width: 100%;
}

/*
blog
**********************************************************/
main.blog .blog-hero {
  margin-top: 30px;
}
main.blog .blog-hero a {
  width: 100%;
  display: flex;
  gap: 60px;
}
@media all and (max-width : 768px) {
  main.blog .blog-hero a {
    flex-wrap: wrap;
    gap: 0;
  }
}
main.blog .blog-hero a figure {
  display: block;
  max-width: 480px;
}
@media all and (max-width : 768px) {
  main.blog .blog-hero a figure {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
main.blog .blog-hero a .text {
  max-width: 460px;
  text-align: left;
}
@media all and (max-width : 768px) {
  main.blog .blog-hero a .text {
    width: 100%;
    margin-top: 19px;
  }
}
main.blog .blog-hero a .text .day {
  color: #b7bfce;
  font-size: 13px;
}
@media all and (max-width : 768px) {
  main.blog .blog-hero a .text .day {
    font-size: 14px;
  }
}
main.blog .blog-hero a .text .ttl {
  margin-top: 10px;
  color: #444;
  font-size: 28px;
  line-height: 1.5;
}
@media all and (max-width : 768px) {
  main.blog .blog-hero a .text .ttl {
    font-size: 22px;
  }
}
main.blog .blog-hero a .text .text {
  margin-top: 30px;
  font-size: 16px;
  line-height: 2;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media all and (max-width : 768px) {
  main.blog .blog-hero a .text .text {
    margin-top: 24px;
    font-size: 14px;
  }
}
main.blog .blog-li {
  margin-top: 60px;
  border-top: 1px solid #b7bfce;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
}
@media all and (max-width : 768px) {
  main.blog .blog-li {
    margin-top: 35px;
    grid-template-columns: repeat(1, 1fr);
  }
}
main.blog .blog-li .item {
  border-bottom: 1px solid #b7bfce;
}
main.blog .blog-li .item:nth-child(odd) {
  border-right: 1px solid #b7bfce;
}
@media all and (max-width : 768px) {
  main.blog .blog-li .item:nth-child(odd) {
    border-right: 0;
  }
}
main.blog .blog-li .item:nth-child(odd) a {
  padding: 30px 30px 30px 0;
}
@media all and (max-width : 768px) {
  main.blog .blog-li .item:nth-child(odd) a {
    padding: 15px 0 13px;
  }
}
main.blog .blog-li .item:nth-child(even) a {
  padding: 30px;
}
@media all and (max-width : 768px) {
  main.blog .blog-li .item:nth-child(even) a {
    padding: 15px 0 13px;
  }
}
main.blog .blog-li .item a {
  display: flex;
  gap: 17px;
}
@media all and (max-width : 768px) {
  main.blog .blog-li .item a {
    gap: 8px;
  }
}
main.blog .blog-li .item a figure {
  width: 200px;
  height: 113px;
}
@media all and (max-width : 768px) {
  main.blog .blog-li .item a figure {
    width: 140px;
    min-width: 140px;
    height: auto;
    aspect-ratio: 140/79;
  }
}
main.blog .blog-li .item a figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
main.blog .blog-li .item a .text {
  text-align: left;
}
main.blog .blog-li .item a .text .day {
  font-size: 13px;
  color: #b7bfce;
}
@media all and (max-width : 768px) {
  main.blog .blog-li .item a .text .day {
    font-size: 14px;
  }
}
main.blog .blog-li .item a .text .ttl {
  margin-top: 4px;
  font-size: 18px;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media all and (max-width : 768px) {
  main.blog .blog-li .item a .text .ttl {
    font-size: 14px;
  }
}
main.blog .widget {
  margin-top: 100px;
}
@media all and (max-width : 768px) {
  main.blog .widget {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 30px 0 0;
  }
}
main.blog .widget .widget-li {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media all and (max-width : 768px) {
  main.blog .widget .widget-li {
    grid-template-columns: repeat(1, 1fr);
  }
}
main.blog .widget .widget-li .item .calender {
  background: #fff;
  height: 338px;
}
main.blog .widget .widget-li .item .calender .ttl {
  width: 100%;
  height: 39px;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #efeff4;
  padding: 0 17px;
  background: #626c7c;
  border: 1px solid #b7bfce;
}
main.blog .widget .widget-li .item .search {
  margin-top: 22px;
}
@media all and (max-width : 768px) {
  main.blog .widget .widget-li .item .search {
    padding: 0 10px;
    width: 100vw;
  }
}
main.blog .widget .widget-li .item .search form {
  display: flex;
  align-items: center;
  width: 100%;
  height: 41px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #b7bfce;
  overflow: hidden;
  padding: 0 0 0 15px;
}
main.blog .widget .widget-li .item .search form input[type=search] {
  width: 100%;
  border: none !important;
  outline: none !important;
  background: #fff !important;
}
main.blog .widget .widget-li .item .search form input[type=search]:focus {
  border: none !important;
  outline: none !important;
  background: #fff !important;
}
main.blog .widget .widget-li .item .search form input[type=search]:focus-visible {
  border: none !important;
  outline: none !important;
  background: #fff !important;
}
main.blog .widget .widget-li .item .last-post .ttl {
  width: 100%;
  height: 39px;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #efeff4;
  padding: 0 17px;
  background: #626c7c;
  border: 1px solid #b7bfce;
}
@media all and (max-width : 768px) {
  main.blog .widget .widget-li .item .last-post .ttl {
    font-size: 14px;
  }
}
main.blog .widget .widget-li .item .last-post .last-post-li {
  padding-top: 5px;
}
main.blog .widget .widget-li .item .last-post .last-post-li .item-sec a {
  display: block;
  max-width: 460px;
  padding: 15px 13px 18px;
  font-size: 13px;
  text-align: left;
  border-bottom: 1px solid #b7bfce;
}
@media all and (max-width : 768px) {
  main.blog .widget .widget-li .item .last-post .last-post-li .item-sec a {
    padding: 10px;
    font-size: 12px;
  }
}
main.blog .widget .widget-li .item .last-post .last-post-li .item-sec a:hover {
  color: #b7bfce;
}
main.blog .widget .widget-li .item .category {
  margin-top: 15px;
}
main.blog .widget .widget-li .item .category .ttl {
  width: 100%;
  height: 39px;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #efeff4;
  padding: 0 17px;
  background: #626c7c;
  border: 1px solid #b7bfce;
}
@media all and (max-width : 768px) {
  main.blog .widget .widget-li .item .category .ttl {
    font-size: 14px;
  }
}
main.blog .widget .widget-li .item .category .category-li {
  padding-top: 5px;
}
main.blog .widget .widget-li .item .category .category-li .item-sec a {
  display: block;
  max-width: 460px;
  padding: 15px 13px 18px;
  font-size: 13px;
  text-align: left;
  border-bottom: 1px solid #b7bfce;
}
@media all and (max-width : 768px) {
  main.blog .widget .widget-li .item .category .category-li .item-sec a {
    padding: 10px;
    font-size: 12px;
  }
}
main.blog .widget .widget-li .item .category .category-li .item-sec a:hover {
  color: #b7bfce;
}
main.blog .ranking {
  margin-top: 33px;
}
main.blog .ranking .ttl {
  text-align: left;
  font-size: 30px;
  font-family: "Playfair Display", serif;
}
@media all and (max-width : 768px) {
  main.blog .ranking .ttl {
    margin-left: 13px;
  }
}
main.blog .ranking .ranking-li {
  margin-top: 23px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media all and (max-width : 768px) {
  main.blog .ranking .ranking-li {
    grid-template-columns: repeat(1, 1fr);
    gap: 7px;
  }
}
main.blog .ranking .ranking-li .item {
  position: relative;
  background: #fff;
  padding: 13px 11px;
  display: block;
}
@media all and (max-width : 768px) {
  main.blog .ranking .ranking-li .item {
    padding: 20px 10px;
    display: flex;
    gap: 8px;
  }
}
main.blog .ranking .ranking-li .item .icon {
  position: absolute;
  top: -1px;
  left: 13px;
  z-index: 1;
}
@media all and (max-width : 768px) {
  main.blog .ranking .ranking-li .item .icon {
    top: 0;
    left: 10px;
  }
}
main.blog .ranking .ranking-li .item .icon svg {
  width: 27px;
  height: 36px;
}
@media all and (max-width : 768px) {
  main.blog .ranking .ranking-li .item .icon svg {
    width: 26px;
    height: 35px;
  }
}
main.blog .ranking .ranking-li .item figure {
  aspect-ratio: 294/164;
}
@media all and (max-width : 768px) {
  main.blog .ranking .ranking-li .item figure {
    width: 140px;
    aspect-ratio: 140/79;
  }
}
main.blog .ranking .ranking-li .item .day {
  text-align: left;
  padding: 0 10px;
  margin-top: 22px;
  font-size: 16px;
  color: #b7bfce;
}
@media all and (max-width : 768px) {
  main.blog .ranking .ranking-li .item .day {
    padding: 0;
    margin-top: 0;
    font-size: 14px;
  }
}
main.blog .ranking .ranking-li .item .text {
  text-align: left;
  padding: 0 10px;
  margin-top: 5px;
  font-size: 16px;
  color: #444;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
@media all and (max-width : 768px) {
  main.blog .ranking .ranking-li .item .text {
    margin-top: 0;
    font-size: 14px;
    -webkit-line-clamp: 2;
    padding: 0;
  }
}
main.blog .ranking .ranking-li .item:hover p {
  color: #b7bfce;
}
main.blog .contents {
  margin-top: 40px;
  margin-inline: auto;
  max-width: 700px;
}
@media all and (max-width : 768px) {
  main.blog .contents {
    margin-top: 24px;
  }
}
main.blog .contents .day {
  font-family: Work Sans;
  font-size: 13px;
  text-align: left;
  color: #b7bfce;
}
@media all and (max-width : 768px) {
  main.blog .contents .day {
    font-size: 14px;
  }
}
main.blog .contents .genre {
  margin-top: 55px;
}
@media all and (max-width : 768px) {
  main.blog .contents .genre {
    margin-top: 14px;
  }
}
main.blog .contents .genre ul {
  display: flex;
  gap: 10px;
}
main.blog .contents .genre ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  background: #fff;
  padding: 0 20px;
  line-height: 1;
  font-size: 12px;
  color: #b7bfce;
}
main.blog .contents .ttl {
  margin-top: 10px;
  font-size: 28px;
  text-align: left;
  color: #444;
  line-height: 1.5;
}
@media all and (max-width : 768px) {
  main.blog .contents .ttl {
    font-size: 22px;
  }
}
main.blog .contents .detail-area {
  margin-top: 25px;
  text-align: left;
}
main.blog .contents .detail-area p {
  margin-top: 30px;
  font-size: 16px;
  text-align: left;
  color: #444;
  line-height: 2;
  font-weight: normal;
}
@media all and (max-width : 768px) {
  main.blog .contents .detail-area p {
    margin-top: 26px;
    font-size: 14px;
  }
}
main.blog .contents .detail-area .img {
  margin-top: 60px;
  width: 100%;
}
@media all and (max-width : 768px) {
  main.blog .contents .detail-area .img {
    padding-top: 28px;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
main.blog .contents .detail-area .img img {
  width: 100%;
}

main.blog .contents .blog_salon_tel {
  margin-top: 20px;
  font-size: 22px;
}

main.blog .contents .blog_salon_tel span {
  display: block;
  font-size: 14px;
}

main.blog .contents .blog_salon_addr {
  margin-top: 10px;
  text-align: left;
}

/*
special menu
**********************************************************/
main.special .contents {
  margin-top: 26px;
}
@media all and (max-width : 768px) {
  main.special .contents {
    margin-top: 37px;
  }
}
main.special .contents .hero {
  margin-top: 57px;
}
@media all and (max-width : 768px) {
  main.special .contents .hero {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    margin-top: 24px;
  }
}
main.special .contents .hero .img {
  max-width: 100%;
  margin-inline: auto;
}
@media all and (max-width : 768px) {
  main.special .contents .hero .img img {
    width: 100%;
  }
}
main.special .contents .section {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background: #fff;
  margin-top: -54px;
}
@media all and (max-width : 768px) {
  main.special .contents .section {
    margin-top: 0;
  }
}
main.special .contents .section-inner {
  padding: 90px 0 63px;
  margin-inline: auto;
  max-width: 800px;
}
@media all and (max-width : 768px) {
  main.special .contents .section-inner {
    width: 100%;
    padding: 22px 26px 62px;
  }
}
main.special .contents .section-inner .ttl {
  text-align: center;
  font-size: 20px;
  color: #444;
  font-weight: bold;
}
@media all and (max-width : 768px) {
  main.special .contents .section-inner .ttl {
    font-size: 18px;
  }
}
main.special .contents .section-inner .text {
  text-align: left;
  margin-top: 26px;
  font-size: 16px;
  line-height: 2;
}
@media all and (max-width : 768px) {
  main.special .contents .section-inner .text {
    margin-top: 17px;
    font-size: 13px;
  }
}
main.special .contents .box {
  margin-top: 100px;
  display: flex;
  text-align: left;
}
@media all and (max-width : 768px) {
  main.special .contents .box {
    margin-top: 45px;
    flex-wrap: wrap;
  }
}
main.special .contents .box.img-right {
  gap: 103px;
}
@media all and (max-width : 768px) {
  main.special .contents .box.img-right {
    gap: 20px;
  }
}
main.special .contents .box.img-right .text {
  max-width: 404px;
}
@media all and (max-width : 768px) {
  main.special .contents .box.img-right .text {
    order: 2;
  }
}
main.special .contents .box.img-right .text .ttl {
  font-size: 20px;
  color: #444;
  font-weight: bold;
}
@media all and (max-width : 768px) {
  main.special .contents .box.img-right .text .ttl {
    font-size: 18px;
  }
}
main.special .contents .box.img-right .text .text {
  margin-top: 38px;
  font-size: 16px;
  line-height: 2;
}
@media all and (max-width : 768px) {
  main.special .contents .box.img-right .text .text {
    margin-top: 28px;
    font-size: 13px;
  }
}
main.special .contents .box.img-right .img {
  max-width: 480px;
}
@media all and (max-width : 768px) {
  main.special .contents .box.img-right .img {
    order: 1;
  }
}
main.special .contents .box.img-right .img img {
  width: 100%;
}
main.special .contents .box.img-left {
  gap: 103px;
}
@media all and (max-width : 768px) {
  main.special .contents .box.img-left {
    gap: 20px;
  }
}
main.special .contents .box.img-left .text {
  order: 2;
  max-width: 404px;
}
main.special .contents .box.img-left .text .ttl {
  font-size: 20px;
  color: #444;
  font-weight: bold;
}
@media all and (max-width : 768px) {
  main.special .contents .box.img-left .text .ttl {
    font-size: 18px;
  }
}
main.special .contents .box.img-left .text .text {
  margin-top: 38px;
  font-size: 16px;
  line-height: 2;
}
@media all and (max-width : 768px) {
  main.special .contents .box.img-left .text .text {
    margin-top: 28px;
    font-size: 13px;
  }
}
main.special .contents .box.img-left .img {
  order: 1;
  max-width: 480px;
}
main.special .contents .box.img-left .img img {
  width: 100%;
}
main.special .contents .box.column01 .item {
  width: 100%;
}
main.special .contents .box.column01 .item .img {
  width: 100%;
  aspect-ratio: 460/306;
}
main.special .contents .box.column01 .item .img img {
  width: 100%;
}
main.special .contents .box.column01 .item .text {
  margin-top: 36px;
}
main.special .contents .box.column01 .item .text .ttl {
  font-weight: bold;
  font-size: 18px;
  color: #444;
}
main.special .contents .box.column01 .item .text .text {
  margin-top: 23px;
  font-size: 16px;
  line-height: 2;
}
main.special .contents .box.column02 {
  gap: 80px;
}
main.special .contents .box.column02 .item {
  max-width: 460px;
}
main.special .contents .box.column02 .item .img {
  width: 100%;
  aspect-ratio: 460/306;
}
main.special .contents .box.column02 .item .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
main.special .contents .box.column02 .item .text {
  margin-top: 36px;
}
main.special .contents .box.column02 .item .text .ttl {
  font-weight: bold;
  font-size: 18px;
  color: #444;
}
main.special .contents .box.column02 .item .text .text {
  margin-top: 23px;
  font-size: 16px;
  line-height: 2;
}

/*
menu
**********************************************************/
main.menu .contents {
  margin-top: 26px;
}
@media all and (max-width : 768px) {
  main.menu .contents {
    margin-top: 32px;
  }
}
main.menu .contents .menu-li {
  margin-top: 24px;
  background: #fff;
  padding: 45px 31px 78px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  gap: 37px 49px;
}
@media all and (max-width : 768px) {
  main.menu .contents .menu-li {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    margin-top: 25px;
    grid-template-columns: repeat(1, 1fr);
    padding: 27px 11px 34px;
    gap: 31px;
  }
}
main.menu .contents .menu-li .item {
  width: 100%;
  text-align: left;
}
main.menu .contents .menu-li .item .ttl {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: bold;
  font-size: 18px;
  color: #444;
  padding-bottom: 10px;
  border-bottom: 2px solid #626c7c;
}
@media all and (max-width : 768px) {
  main.menu .contents .menu-li .item .ttl {
    font-size: 15px;
    gap: 3px;
    padding-bottom: 9px;
  }
}
main.menu .contents .menu-li .item .ttl span {
  width: 20px;
  height: 20px;
  background: #ffff6e;
  border-radius: 50%;
}
@media all and (max-width : 768px) {
  main.menu .contents .menu-li .item .ttl span {
    width: 13px;
    height: 13px;
  }
}
main.menu .contents .menu-li .item .box {
  margin-top: 2px;
  padding: 22px 0 28px;
  border-bottom: 1px dashed #b7bfce;
}
@media all and (max-width : 768px) {
  main.menu .contents .menu-li .item .box {
    margin-top: 2px;
    padding: 18px 0;
  }
}
main.menu .contents .menu-li .item .box .price {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: bold;
  color: #444;
}
@media all and (max-width : 768px) {
  main.menu .contents .menu-li .item .box .price {
    font-size: 14px;
  }
}
main.menu .contents .menu-li .item .box .text {
  margin-top: 13px;
  font-size: 11px;
  line-height: 1.5;
}
@media all and (max-width : 768px) {
  main.menu .contents .menu-li .item .box .text {
    font-size: 11px;
  }
}
main.menu .contents .menu-li .item .other {
  background: #efeff4;
  font-size: 11px;
  line-height: 1.63;
  margin-top: 25px;
  padding: 17px 13px 21px;
}
@media all and (max-width : 768px) {
  main.menu .contents .menu-li .item .other {
    font-size: 11px;
    padding: 12px 10px 27px;
  }
}
main.menu .contents .menu-other {
  text-align: left;
  margin-top: 51px;
  background: #fff;
  font-size: 11px;
  line-height: 1.5;
  padding: 32px 34px 47px;
}
@media all and (max-width : 768px) {
  main.menu .contents .menu-other {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    margin-top: 30px;
    font-size: 11px;
    padding: 17px 21px 30px;
  }
}

/*
coupon
**********************************************************/
main.coupon .contents {
  margin-top: 26px;
}
@media all and (max-width : 768px) {
  main.coupon .contents {
    margin-top: 32px;
  }
}
main.coupon .contents .coupon-li {
  display: grid;
  gap: 54px;
}
@media all and (max-width : 768px) {
  main.coupon .contents .coupon-li {
    gap: 25px;
  }
}
main.coupon .contents .coupon-li .item {
  position: relative;
  background: #fff;
  padding: 29px 26px 38px;
  display: flex;
}
@media all and (max-width : 768px) {
  main.coupon .contents .coupon-li .item {
    padding: 17px 14px 0;
    flex-wrap: wrap;
    overflow: hidden;
  }
}
main.coupon .contents .coupon-li .item::before {
  content: "";
  width: 100%;
  height: 10px;
  background: #b7bfce;
  position: absolute;
  top: 0;
  left: 0;
}
main.coupon .contents .coupon-li .item .icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 103px;
  height: 104px;
  background-color: #ccc;
  clip-path: polygon(0 0, 100% 0%, 0 100%);
  z-index: 10;
}
@media all and (max-width : 768px) {
  main.coupon .contents .coupon-li .item .icon {
    width: 65px;
    height: 65px;
  }
}
main.coupon .contents .coupon-li .item .icon p {
  font-family: Work Sans;
  transform: rotate(-45deg);
  font-size: 35px;
  color: #fff;
  line-height: 1;
  margin-left: -39px;
  margin-top: 8px;
}
@media all and (max-width : 768px) {
  main.coupon .contents .coupon-li .item .icon p {
    font-size: 24px;
    margin-left: -26px;
    margin-top: 5px;
  }
}
main.coupon .contents .coupon-li .item .icon p span {
  display: block;
  font-size: 11px;
  line-height: 1;
}
@media all and (max-width : 768px) {
  main.coupon .contents .coupon-li .item .icon p span {
    font-size: 7px;
  }
}
main.coupon .contents .coupon-li .item .img {
  margin-right: 32px;
  width: 200px;
  height: 200px;
  aspect-ratio: 1;
  background: url(../images/common/coupon-non.jpg) no-repeat;
  background-size: cover;
}
@media all and (max-width : 768px) {
  main.coupon .contents .coupon-li .item .img {
    margin-right: 11px;
    width: 100px;
    height: 100px;
  }
}
main.coupon .contents .coupon-li .item .img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
main.coupon .contents .coupon-li .item .text {
  flex: 1;
  margin-right: 20px;
  text-align: left;
}
@media all and (max-width : 768px) {
  main.coupon .contents .coupon-li .item .text {
    margin-right: 0;
    width: 100%;
    margin: 0 0 25px;
  }
}
main.coupon .contents .coupon-li .item .text .ttl {
  font-size: 16px;
  font-weight: bold;
  color: #444;
  line-height: 1.5;
  padding-bottom: 14px;
  border-bottom: 2px solid #b7bfce;
}
@media all and (max-width : 768px) {
  main.coupon .contents .coupon-li .item .text .ttl {
    display: flex;
    align-items: center;
    font-size: 15px;
  }
}
main.coupon .contents .coupon-li .item .text .yen {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.5;
  color: #444;
}
@media all and (max-width : 768px) {
  main.coupon .contents .coupon-li .item .text .yen {
    margin-top: 24px;
    font-size: 22px;
  }
}
main.coupon .contents .coupon-li .item .text .target {
  margin-top: 24px;
  display: flex;
  align-items: center;
  height: 25px;
  background: #efeff4;
  font-size: 13px;
  padding: 0 0 0 9px;
  width: fit-content;
}
@media all and (max-width : 768px) {
  main.coupon .contents .coupon-li .item .text .target {
    margin-top: 19px;
    height: 24px;
    font-size: 12px;
  }
}
main.coupon .contents .coupon-li .item .text .target span {
  margin-left: 7px;
  padding: 0 35px 0 11px;
  background: #000;
  color: #fff;
  height: 100%;
}
@media all and (max-width : 768px) {
  main.coupon .contents .coupon-li .item .text .target span {
    padding: 0 28px 0 8px;
  }
}
main.coupon .contents .coupon-li .item .text .other {
  width: 100%;
  margin: 15px 0 12px;
  padding-bottom: 16px;
  font-size: 12px;
  line-height: 1.5;
  border-bottom: 1px solid #b7bfce;
}
@media all and (max-width : 768px) {
  main.coupon .contents .coupon-li .item .text .other {
    font-size: 14px;
  }
}
main.coupon .contents .coupon-li .item .text dl {
  display: flex;
  gap: 3px;
}
main.coupon .contents .coupon-li .item .text dl dt {
  width: fit-content;
  font-size: 11px;
  color: #b7bfce;
}
@media all and (max-width : 768px) {
  main.coupon .contents .coupon-li .item .text dl dt {
    font-size: 13px;
  }
}
main.coupon .contents .coupon-li .item .text dl dd {
  flex: 1;
  font-size: 11px;
  line-height: 1.5;
}
@media all and (max-width : 768px) {
  main.coupon .contents .coupon-li .item .text dl dd {
    font-size: 13px;
  }
}
main.coupon .contents .coupon-li .item .link {
  display: flex;
  align-items: center;
  width: 215px;
}
@media all and (max-width : 768px) {
  main.coupon .contents .coupon-li .item .link {
    width: calc(100% + 14px);
  }
}
main.coupon .contents .coupon-li .item .link a {
  width: 100%;
  height: 40px;
  font-family: Work Sans;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffff6e;
}
@media all and (max-width : 768px) {
  main.coupon .contents .coupon-li .item .link a {
    width: calc(100vw - 22px);
    margin-top: 25px;
    margin-left: -14px;
  }
}
main.coupon .contents .coupon-li .item.first .icon {
  background-color: #F76E5A;
}
main.coupon .contents .coupon-li .item.first .target span {
  background: #F76E5A;
}
main.coupon .contents .coupon-li .item.second .icon {
  background-color: #6cdb96;
}
main.coupon .contents .coupon-li .item.second .icon p {
  font-size: 33px;
  margin-left: -29px;
  margin-top: 9px;
}
@media all and (max-width : 768px) {
  main.coupon .contents .coupon-li .item.second .icon p {
    font-size: 21px;
    margin-left: -21px;
    margin-top: 7px;
  }
}
main.coupon .contents .coupon-li .item.second .target span {
  background: #6cdb96;
}
main.coupon .contents .coupon-li .item.all .icon {
  background-color: #598fef;
}
main.coupon .contents .coupon-li .item.all .target span {
  background: #598fef;
}

/*
shop staff
**********************************************************/
main.shop .contents {
  margin-top: 26px;
}
@media all and (max-width : 768px) {
  main.shop .contents {
    margin-top: 32px;
  }
}
main.shop .contents .slider {
  margin-top: 40px;
  position: relative;
}
@media all and (max-width : 768px) {
  main.shop .contents .slider {
    margin-top: 32px;
  }
}
main.shop .contents .slider img {
  width: 100%;
  height: 606px;
  object-fit: contain;
}
@media all and (max-width : 768px) {
  main.shop .contents .slider img {
    height: auto;
    aspect-ratio: 375/227;
  }
}
main.shop .contents .slider .swiper-pagination03 {
  margin-top: 25px;
}
main.shop .contents .slider .swiper-pagination-bullet {
  opacity: 1;
  background: #fff;
}
main.shop .contents .slider .swiper-pagination-bullet-active {
  opacity: 1;
  background: #626C7C;
}
main.shop .contents .slider .swiper-button-next,
main.shop .contents .slider .swiper-button-prev {
  position: absolute;
  top: inherit;
  bottom: -7px;
  width: auto;
  height: auto;
  margin-top: auto;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
}
main.shop .contents .slider .swiper-button-next .icon,
main.shop .contents .slider .swiper-button-prev .icon {
  width: 39px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #626C7C;
  border-radius: 50%;
}
main.shop .contents .slider .swiper-button-next:after,
main.shop .contents .slider .swiper-rtl .swiper-button-prev:after {
  display: none;
}
main.shop .contents .slider .swiper-button-prev:after,
main.shop .contents .slider .swiper-rtl .swiper-button-next:after {
  display: none;
}
main.shop .contents .text-li {
  margin-top: 60px;
  padding-bottom: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media all and (max-width : 768px) {
  main.shop .contents .text-li {
    margin-top: 27px;
    flex-wrap: wrap;
  }
}
main.shop .contents .text-li .item {
  text-align: left;
}
main.shop .contents .text-li .item .ttl {
  font-size: 28px;
  font-weight: bold;
  color: #444;
}
@media all and (max-width : 768px) {
  main.shop .contents .text-li .item .ttl {
    width: 100%;
    font-size: 22px;
  }
}
main.shop .contents .text-li .item .text {
  width: 504px;
  font-size: 13px;
  line-height: 1.7000000293;
}
@media all and (max-width : 768px) {
  main.shop .contents .text-li .item .text {
    margin-top: 50px;
    font-size: 14px;
    width: 100%;
  }
}
main.shop .contents .shop-con {
  background: #fff;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 100px 150px;
}
@media all and (max-width : 768px) {
  main.shop .contents .shop-con {
    padding: 46px 0 48px;
  }
}
main.shop .contents .shop-con .shop-li {
  margin-inline: auto;
  max-width: 1000px;
  display: flex;
}
@media all and (max-width : 768px) {
  main.shop .contents .shop-con .shop-li {
    display: block;
    padding: 0 11px;
  }
}
main.shop .contents .shop-con .shop-li .item:first-of-type {
  max-width: 616px;
  width: 100%;
  border-right: 1px solid #efeff4;
}
@media all and (max-width : 768px) {
  main.shop .contents .shop-con .shop-li .item:first-of-type {
    max-width: 100%;
    border-right: 0;
    border-bottom: 1px solid #efeff4;
    padding-bottom: 27px;
    margin-bottom: 30px;
  }
}
main.shop .contents .shop-con .shop-li .item:first-of-type dl {
  margin-bottom: 21px;
  text-align: left;
  display: flex;
}
@media all and (max-width : 768px) {
  main.shop .contents .shop-con .shop-li .item:first-of-type dl {
    margin-bottom: 24px;
    display: block;
  }
}
main.shop .contents .shop-con .shop-li .item:first-of-type dl:last-of-type {
  margin-bottom: 0;
}
main.shop .contents .shop-con .shop-li .item:first-of-type dl dt {
  font-size: 13px;
  color: #b7bfce;
  width: 67px;
}
@media all and (max-width : 768px) {
  main.shop .contents .shop-con .shop-li .item:first-of-type dl dt {
    width: 100%;
  }
}
main.shop .contents .shop-con .shop-li .item:first-of-type dl dd {
  font-size: 13px;
  color: #b7bfce;
  line-height: 1.7000000293;
  color: #444;
}
@media all and (max-width : 768px) {
  main.shop .contents .shop-con .shop-li .item:first-of-type dl dd {
    margin-top: 5px;
    width: 100%;
  }
}
main.shop .contents .shop-con .shop-li .item:first-of-type dl.tel dd {
  color: #444;
}
main.shop .contents .shop-con .shop-li .item:first-of-type dl.tel dd span {
  font-size: 22px;
}
main.shop .contents .shop-con .shop-li .item:last-of-type {
  padding-left: 44px;
}
@media all and (max-width : 768px) {
  main.shop .contents .shop-con .shop-li .item:last-of-type {
    padding-left: 0;
  }
}
main.shop .contents .shop-con .shop-li .item:last-of-type .reserve {
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Work Sans;
  width: 198px;
  height: 40px;
  font-size: 13px;
  color: #626c7c;
  background: #ffff6e;
}
@media all and (max-width : 768px) {
  main.shop .contents .shop-con .shop-li .item:last-of-type .reserve {
    width: 100%;
    height: 46px;
    font-size: 14px;
  }
}
main.shop .contents .shop-con .shop-li .item:last-of-type .reserve:hover {
  opacity: 0.7;
}
main.shop .contents .shop-con .shop-li .item:last-of-type .follow {
  margin-top: 22px;
}
main.shop .contents .shop-con .shop-li .item:last-of-type .follow p.ttl {
  font-family: "Caveat", cursive;
  color: #444;
  font-size: 23px;
}
main.shop .contents .shop-con .shop-li .item:last-of-type .follow .follow-li ul {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
@media all and (max-width : 768px) {
  main.shop .contents .shop-con .shop-li .item:last-of-type .follow .follow-li ul {
    gap: 13px;
  }
}
main.shop .contents .shop-con .shop-li .item:last-of-type .follow .follow-li ul li a {
  display: block;
  width: 36px;
  height: 36px;
}
main.shop .contents .shop-con .shop-li .item:last-of-type .follow .follow-li ul li a svg {
  width: 33px;
  height: 33px;
}
@media all and (max-width : 768px) {
  main.shop .contents .shop-con .shop-li .item:last-of-type .follow .follow-li ul li a {
    display: block;
    width: 33px;
    height: 33px;
  }
  main.shop .contents .shop-con .shop-li .item:last-of-type .follow .follow-li ul li a svg {
    width: 33px;
    height: 33px;
  }
}
main.shop .contents .shop-con .shop-li .item:last-of-type .follow .follow-li ul li a:hover {
  opacity: 0.5;
}
main.shop .contents .map {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
@media all and (max-width : 768px) {
  main.shop .contents .map iframe {
    height: 250px;
  }
}
main.shop .contents .map .text {
  margin-inline: auto;
  margin-top: 30px;
  max-width: 1000px;
  width: 100%;
  font-size: 13px;
  text-align: left;
  color: #626c7c;
  line-height: 1.7;
}
@media all and (max-width : 768px) {
  main.shop .contents .map .text {
    padding: 0 11px;
  }
}
main.shop .contents .widget-li {
  display: flex;
  flex-wrap: wrap;
  gap: 95px 40px;
  margin-top: 92px;
}
@media all and (max-width : 768px) {
  main.shop .contents .widget-li {
    margin-top: 45px;
    gap: 44px;
  }
}
main.shop .contents .widget-li .s-ttl {
  font-family: "Playfair Display", serif;
  text-align: left;
  font-size: 30px;
  color: #626c7c;
}
@media all and (max-width : 768px) {
  main.shop .contents .widget-li .s-ttl {
    font-size: 21px;
  }
}
main.shop .contents .widget-li .staff-item {
  width: 100%;
}
main.shop .contents .widget-li .staff-item .staff-li {
  margin-inline: auto;
  margin-top: 23px;
  max-width: 939px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px 73px;
}
@media all and (max-width : 768px) {
  main.shop .contents .widget-li .staff-item .staff-li {
    margin-top: 14px;
    max-width: 100%;
    padding: 0 24px;
    gap: 28px 29px;
    grid-template-columns: repeat(2, 1fr);
  }
}
main.shop .contents .widget-li .staff-item .staff-li .item {
  display: block;
  opacity: 0;
}
main.shop .contents .widget-li .staff-item .staff-li .item figure {
  display: block;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
}
@media all and (max-width : 768px) {
  main.shop .contents .widget-li .staff-item .staff-li .item figure {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
}
main.shop .contents .widget-li .staff-item .staff-li .item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}
main.shop .contents .widget-li .staff-item .staff-li .item p {
  text-align: center;
}
main.shop .contents .widget-li .staff-item .staff-li .item p.job {
  margin-top: 17px;
  font-size: 13px;
  color: #b7bfce;
}
main.shop .contents .widget-li .staff-item .staff-li .item p.name {
  margin-top: 7px;
  font-size: 16px;
  color: #444;
}
main.shop .contents .widget-li .staff-item .staff-li .item:hover figure img {
  scale: 1.2;
}
main.shop .contents .widget-li .calender-item {
  width: calc(50% - 20px);
}
@media all and (max-width : 768px) {
  main.shop .contents .widget-li .calender-item {
    width: 100%;
  }
}
main.shop .contents .widget-li .calender-item .calender {
  margin-top: 20px;
  height: auto;
  width: 100%;
  background: #fff;
}
@media all and (max-width : 768px) {
  main.shop .contents .widget-li .calender-item .calender {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
main.shop .contents .widget-li .youtube-item {
  width: calc(50% - 20px);
}
@media all and (max-width : 768px) {
  main.shop .contents .widget-li .youtube-item {
    width: 100%;
  }
}
main.shop .contents .widget-li .youtube-item .youtube {
  width: 100%;
  margin-top: 20px;
}
@media all and (max-width : 768px) {
  main.shop .contents .widget-li .youtube-item .youtube {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
main.shop .contents .widget-li .youtube-item .youtube iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}

main.staff .contents {
  margin-top: 26px;
}
@media all and (max-width : 768px) {
  main.staff .contents {
    margin-top: 32px;
  }
}
main.staff .contents .profile {
  margin-top: 63px;
  margin-bottom: 98px;
  display: flex;
  gap: 60px;
}
@media all and (max-width : 768px) {
  main.staff .contents .profile {
    display: block;
    margin-top: 35px;
    margin-bottom: 50px;
  }
}
main.staff .contents .profile .photo {
  max-width: 470px;
  width: 100%;
}
main.staff .contents .profile .photo .photo-box {
  aspect-ratio: 1;
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
}
main.staff .contents .profile .photo .photo-box img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
main.staff .contents .profile .info {
  max-width: 454px;
}
main.staff .contents .profile .info .jpb {
  line-height: 1;
  font-size: 13px;
  color: #444;
}
main.staff .contents .profile .info .name {
  line-height: 1;
  margin-top: 11px;
  font-size: 28px;
  color: #444;
}
@media all and (max-width : 768px) {
  main.staff .contents .profile .info .name {
    margin-top: 7px;
    font-size: 22px;
  }
}
main.staff .contents .profile .info .name span {
  line-height: 1;
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: #b7bfce;
  font-family: Work Sans;
}
@media all and (max-width : 768px) {
  main.staff .contents .profile .info .name span {
    margin-top: 9px;
    font-size: 14px;
    margin-bottom: 19px;
  }
}
@media all and (max-width : 768px) {
  main.staff .contents .profile .info .photo .photo-box {
    margin-inline: auto;
    width: 200px;
    height: 200px;
  }
}
main.staff .contents .profile .info .ttl {
  margin-top: 36px;
  font-size: 18px;
  font-weight: bold;
  color: #444;
  text-align: left;
}
@media all and (max-width : 768px) {
  main.staff .contents .profile .info .ttl {
    margin-top: 22px;
    font-size: 15px;
  }
}
main.staff .contents .profile .info .text {
  margin-top: 58px;
  font-size: 13px;
  text-align: left;
}
@media all and (max-width : 768px) {
  main.staff .contents .profile .info .text {
    margin-top: 21px;
    font-size: 14px;
  }
}
main.staff .contents .profile .info .follow {
  margin-top: 59px;
}
main.staff .contents .profile .info .follow .reserve {
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Work Sans;
  width: 198px;
  height: 40px;
  font-size: 13px;
  color: #626c7c;
  background: #ffff6e;
}
@media all and (max-width : 768px) {
  main.staff .contents .profile .info .follow .reserve {
    width: 100%;
  }
}
main.staff .contents .profile .info .follow .reserve:hover {
  opacity: 0.7;
}
main.staff .contents .profile .info .follow p.ttl {
  font-family: "Caveat", cursive;
  color: #444;
  font-size: 23px;
  margin: 0 auto;
  text-align: center;
  margin-top: 16px;
}
main.staff .contents .profile .info .follow .follow-li ul {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
@media all and (max-width : 768px) {
  main.staff .contents .profile .info .follow .follow-li ul {
    gap: 13px;
  }
}
main.staff .contents .profile .info .follow .follow-li ul li a {
  display: block;
  width: 36px;
  height: 36px;
}
main.staff .contents .profile .info .follow .follow-li ul li a svg {
  width: 33px;
  height: 33px;
}
@media all and (max-width : 768px) {
  main.staff .contents .profile .info .follow .follow-li ul li a {
    display: block;
    width: 33px;
    height: 33px;
  }
  main.staff .contents .profile .info .follow .follow-li ul li a svg {
    width: 33px;
    height: 33px;
  }
}
main.staff .contents .profile .info .follow .follow-li ul li a:hover {
  opacity: 0.5;
}
main.staff .contents .youtube-item {
  width: 700px;
  margin-inline: auto;
  margin-bottom: 105px;
}
@media all and (max-width : 768px) {
  main.staff .contents .youtube-item {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    margin-bottom: 50px;
  }
}
main.staff .contents .youtube-item .youtube {
  width: 100%;
  background: #fff;
  aspect-ratio: 16/9;
}
main.staff .contents .youtube-item .youtube iframe {
  width: 100%;
  height: 100%;
}
main.staff .contents .works {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background: #fff;
  padding: 86px 0 100px;
}
@media all and (max-width : 768px) {
  main.staff .contents .works {
    padding: 42px 0 50px;
  }
}
main.staff .contents .works .s-ttl {
  font-family: "Playfair Display", serif;
  font-size: 30px;
}
@media all and (max-width : 768px) {
  main.staff .contents .works .s-ttl {
    font-size: 21px;
  }
}
main.staff .contents .works .works-li {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
@media all and (max-width : 768px) {
  main.staff .contents .works .works-li {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(auto, 1fr);
    margin-top: 23px;
    padding: 0 11px;
  }
}
main.staff .contents .works .works-li a figure {
  position: relative;
}
main.staff .contents .works .works-li a figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
main.staff .contents .works .works-li a figure figcaption {
  font-family: "Playfair Display", serif;
  transition: all 0.4s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(41, 69, 117, 0.5);
  font-size: 16px;
  color: #fff;
  opacity: 0;
}
main.staff .contents .works .works-li a:hover figcaption {
  opacity: 1;
}
main.staff .contents .other {
  margin-top: 83px;
}
@media all and (max-width : 768px) {
  main.staff .contents .other {
    margin-top: 43px;
  }
}
main.staff .contents .other .s-ttl {
  text-align: left;
  font-family: "Playfair Display", serif;
  font-size: 30px;
}
@media all and (max-width : 768px) {
  main.staff .contents .other .s-ttl {
    margin-top: 21px;
  }
}
main.staff .contents .other .other-li {
  margin-inline: auto;
  margin-top: 23px;
  max-width: 983px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 29px 48px;
}
@media all and (max-width : 768px) {
  main.staff .contents .other .other-li {
    margin-top: 14px;
    max-width: 100%;
    padding: 0 24px;
    gap: 28px 29px;
    grid-template-columns: repeat(2, 1fr);
  }
}
main.staff .contents .other .other-li .item {
  display: block;
  opacity: 0;
}
main.staff .contents .other .other-li .item figure {
  display: block;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
}
@media all and (max-width : 768px) {
  main.staff .contents .other .other-li .item figure {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
}
main.staff .contents .other .other-li .item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}
main.staff .contents .other .other-li .item p {
  text-align: center;
}
main.staff .contents .other .other-li .item p.job {
  margin-top: 17px;
  font-size: 13px;
  color: #b7bfce;
}
main.staff .contents .other .other-li .item p.name {
  margin-top: 7px;
  font-size: 16px;
  color: #444;
}
main.staff .contents .other .other-li .item:hover figure img {
  scale: 1.2;
}

/*
gallery **********************************************************/
main.gallery .contents {
  margin-top: 26px;
}
@media all and (max-width : 768px) {
  main.gallery .contents {
    margin-top: 32px;
  }
}
main.gallery .contents .select-area {
  display: grid;
  gap: 10px;
  padding: 13px 13px 16px;
  background: #fff;
}
@media all and (max-width : 768px) {
  main.gallery .contents .select-area {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    gap: 22px;
  }
}
main.gallery .contents .select-area form {
  display: grid;
  gap: 10px;
}
main.gallery .contents .select-area .select-li {
  display: flex;
  align-items: center;
  gap: 28px;
}
main.gallery .contents .select-area .select-li input[type=radio] {
  opacity: 0;
  position: absolute;
}
@media all and (max-width : 768px) {
  main.gallery .contents .select-area .select-li {
    align-items: start;
    gap: 11px;
  }
}
main.gallery .contents .select-area .select-li .ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 106px;
  height: 33px;
  background: #626c7c;
  font-size: 12px;
  text-align: center;
  color: #efeff4;
}
@media all and (max-width : 768px) {
  main.gallery .contents .select-area .select-li .ttl {
    font-size: 12px;
    width: 90px;
    height: 31px;
  }
}
main.gallery .contents .select-area .select-li ul {
  display: flex;
  align-items: center;
  gap: 23px;
}
@media all and (max-width : 768px) {
  main.gallery .contents .select-area .select-li ul {
    flex-wrap: wrap;
    gap: 8px 16px;
  }
}
main.gallery .contents .select-area .select-li ul li {
  font-size: 15px;
  color: #444;
  position: relative;
  cursor: pointer;
  padding: 0 0 0 20px;
  display: flex;
  align-items: center;
}
@media all and (max-width : 768px) {
  main.gallery .contents .select-area .select-li ul li {
    line-height: 1;
  }
}
main.gallery .contents .select-area .select-li ul li:before {
  content: "";
  position: absolute;
  left: 0;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  border: 1px solid #b7bfce;
}
main.gallery .contents .select-area .select-li ul li.active:after {
  content: "";
  position: absolute;
  left: 3px;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background: #626c7c;
}
main.gallery .contents .gallery-li {
  display: grid;
  /*
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, 1fr);
  */
  grid-template-columns: repeat(3, minmax(25%, 1fr));
  gap: 2px;
  position: relative;
  margin-top: 45px;
}
@media all and (max-width : 768px) {
  main.gallery .contents .gallery-li {
    /*
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(auto, 1fr);
    */
    grid-template-columns: repeat(2, minmax(50%, 1fr));
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    margin-top: 27px;
  }
}
main.gallery .contents .gallery-li .item figure {
  aspect-ratio: 1;
}
main.gallery .contents .gallery-li .item figure figcaption {
  font-family: "Playfair Display", serif;
  transition: all 0.4s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(41, 69, 117, 0.5);
  font-size: 16px;
  color: #fff;
  opacity: 0;
}
main.gallery .contents .gallery-li .item:hover figcaption {
  opacity: 1;
}
main.gallery .contents .gallery-li .item figure {
  position: relative;
  width: 100%;
  height: 100%;
}
main.gallery .contents .gallery-li .item figure img {
  width: 100%;
  height: 100% !important;
  vertical-align: bottom;
  object-fit: cover;
}
main.gallery .contents .ranking {
  margin-top: 43px;
}
main.gallery .contents .ranking .s-ttl {
  text-align: left;
  font-family: "Playfair Display", serif;
  font-size: 30px;
}
@media all and (max-width : 768px) {
  main.gallery .contents .ranking .s-ttl {
    margin-top: 21px;
    font-size: 21px;
  }
}
main.gallery .contents .ranking .ranking-li {
  margin-top: 23px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
@media all and (max-width : 768px) {
  main.gallery .contents .ranking .ranking-li {
    margin-top: 33px;
    overflow: auto;
  }
}
main.gallery .contents .ranking .ranking-li .item {
  position: relative;
  width: auto;
}
main.gallery .contents .ranking .ranking-li .item .icon {
  position: absolute;
  top: -1px;
  left: 11px;
  z-index: 1;
}
main.gallery .contents .info-li {
  display: flex;
  justify-content: space-between;
}
@media all and (max-width : 768px) {
  main.gallery .contents .info-li {
    flex-wrap: wrap;
  }
}
main.gallery .contents .info-li .item .ttl {
  font-size: 28px;
  font-weight: bold;
  color: #444;
  text-align: left;
}
@media all and (max-width : 768px) {
  main.gallery .contents .info-li .item .ttl {
    margin-top: 13px;
    font-size: 22px;
  }
}
main.gallery .contents .info-li .item:first-of-type {
  width: 414px;
  text-align: left;
}
@media all and (max-width : 768px) {
  main.gallery .contents .info-li .item:first-of-type {
    width: 100%;
    order: 2;
  }
}
main.gallery .contents .info-li .item:first-of-type .text {
  margin-top: 35px;
  font-size: 16px;
  color: #626c7c;
  line-height: 2;
  text-align: left;
}
@media all and (max-width : 768px) {
  main.gallery .contents .info-li .item:first-of-type .text {
    font-size: 14px;
  }
}
main.gallery .contents .info-li .item:first-of-type .genre {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 8px;
}
main.gallery .contents .info-li .item:first-of-type .genre li {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 21px;
  padding: 0 14px;
  border: 1px solid #b7bfce;
  color: #b7bfce;
  font-size: 11px;
}
@media all and (max-width : 768px) {
  main.gallery .contents .info-li .item:first-of-type .genre li {
    height: 27px;
    font-size: 13px;
  }
}
main.gallery .contents .info-li .item:first-of-type .staff {
  margin-top: 40px;
  width: 100%;
  border-top: 1px solid #626c7c;
  border-bottom: 1px solid #626c7c;
  padding: 22px 13px 26px;
  display: flex;
  align-items: center;
  gap: 17px;
}
@media all and (max-width : 768px) {
  main.gallery .contents .info-li .item:first-of-type .staff {
    margin-top: 32px;
    padding: 21px 13px 29px 0;
    gap: 13px;
  }
}
main.gallery .contents .info-li .item:first-of-type .staff .photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
}
@media all and (max-width : 768px) {
  main.gallery .contents .info-li .item:first-of-type .staff .photo {
    width: 100px;
    height: 100px;
  }
}
main.gallery .contents .info-li .item:first-of-type .staff .photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
@media all and (max-width : 768px) {
  main.gallery .contents .info-li .item:first-of-type .staff .data {
    line-height: 1;
  }
}
main.gallery .contents .info-li .item:first-of-type .staff .data .shop-name a {
  text-decoration: underline;
  font-size: 11px;
  color: #444;
}
main.gallery .contents .info-li .item:first-of-type .staff .data .job {
  margin-top: 8px;
  font-size: 11px;
  color: #444;
}
@media all and (max-width : 768px) {
  main.gallery .contents .info-li .item:first-of-type .staff .data .job {
    margin-top: 3px;
  }
}
main.gallery .contents .info-li .item:first-of-type .staff .data .name {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #444;
  gap: 9px;
}
@media all and (max-width : 768px) {
  main.gallery .contents .info-li .item:first-of-type .staff .data .name {
    margin-top: 9px;
    font-size: 18px;
    gap: 12px;
  }
}
main.gallery .contents .info-li .item:first-of-type .staff .data .reserve {
  width: 150px;
  height: 33px;
  background: #ffff6e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #626c7c;
}
@media all and (max-width : 768px) {
  main.gallery .contents .info-li .item:first-of-type .staff .data .reserve {
    width: 168px;
    height: 31px;
    margin-top: 18px;
  }
}
main.gallery .contents .info-li .item:last-of-type {
  width: 505px;
}
@media all and (max-width : 768px) {
  main.gallery .contents .info-li .item:last-of-type {
    width: 100%;
    order: 1;
  }
}
main.gallery .contents .info-li .item:last-of-type .slider {
  position: relative;
}
@media all and (max-width : 768px) {
  main.gallery .contents .info-li .item:last-of-type .slider {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    margin-top: 32px;
  }
}
main.gallery .contents .info-li .item:last-of-type .slider img {
  width: 100%;
  height: 606px;
  object-fit: contain;
}
@media all and (max-width : 768px) {
  main.gallery .contents .info-li .item:last-of-type .slider img {
    height: auto;
    aspect-ratio: 375/434;
  }
}
main.gallery .contents .info-li .item:last-of-type .slider .swiper-pagination04 {
  margin-top: 25px;
}
main.gallery .contents .info-li .item:last-of-type .slider .swiper-pagination-bullet {
  opacity: 1;
  background: #fff;
}
main.gallery .contents .info-li .item:last-of-type .slider .swiper-pagination-bullet-active {
  opacity: 1;
  background: #626C7C;
}
main.gallery .contents .info-li .item:last-of-type .slider .swiper-button-next,
main.gallery .contents .info-li .item:last-of-type .slider .swiper-button-prev {
  position: absolute;
  top: inherit;
  bottom: -7px;
  width: auto;
  height: auto;
  margin-top: auto;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
}
main.gallery .contents .info-li .item:last-of-type .slider .swiper-button-next .icon,
main.gallery .contents .info-li .item:last-of-type .slider .swiper-button-prev .icon {
  width: 39px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #626C7C;
  border-radius: 50%;
}
main.gallery .contents .info-li .item:last-of-type .slider .swiper-button-next:after,
main.gallery .contents .info-li .item:last-of-type .slider .swiper-rtl .swiper-button-prev:after {
  display: none;
}
main.gallery .contents .info-li .item:last-of-type .slider .swiper-button-prev:after,
main.gallery .contents .info-li .item:last-of-type .slider .swiper-rtl .swiper-button-next:after {
  display: none;
}
main.gallery .special-selection {
  margin-top: 43px;
}
@media all and (max-width : 768px) {
  main.gallery .special-selection {
    margin-top: 25px;
  }
}
main.gallery .special-selection .s-ttl {
  text-align: left;
  font-family: "Playfair Display", serif;
  font-size: 30px;
}
@media all and (max-width : 768px) {
  main.gallery .special-selection .s-ttl {
    font-size: 21px;
  }
}
main.gallery .special-selection .ranking-li {
  display: flex;
  margin-top: 37px;
}
@media all and (max-width : 768px) {
  main.gallery .special-selection .ranking-li {
    font-size: 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
main.gallery .special-selection .ranking-li .item {
  width: 25%;
}
@media all and (max-width : 768px) {
  main.gallery .special-selection .ranking-li .item {
    /*width: calc(100% / 2);*/
    width: 100%;
  }
}
main.gallery .special-selection .ranking-li .item figure {
  position: relative;
}
main.gallery .special-selection .ranking-li .item figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
main.gallery .special-selection .ranking-li .item figure figcaption {
  font-family: "Playfair Display", serif;
  transition: all 0.4s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(41, 69, 117, 0.5);
  font-size: 16px;
  color: #fff;
  opacity: 0;
}
main.gallery .special-selection .ranking-li .item:hover figcaption {
  opacity: 1;
}

/*
recruit**********************************************************/
main.recruit .contents {
  text-align: left;
  margin-top: 58px;
}
@media all and (max-width : 768px) {
  main.recruit .contents {
    margin-top: 32px;
  }
}
main.recruit .contents .hero-area {
  padding: 0 0 100px;
}
@media all and (max-width : 768px) {
  main.recruit .contents .hero-area {
    margin-top: 50px;
  }
}
main.recruit .contents .hero-area .care {
  display: block;
  font-size: 16px;
  line-height: 2;
  text-align: left;
}
@media all and (max-width : 768px) {
  main.recruit .contents .hero-area .care {
    margin-top: 14px;
  }
}
main.recruit .contents .hero-area img.fv {
  margin-top: 64px;
  width: 100%;
  display: block;
}
@media all and (max-width : 768px) {
  main.recruit .contents .hero-area img.fv {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    margin-top: 45px;
  }
}
main.recruit .contents .hero-area .ttl {
  margin-top: 44px;
  font-size: 28px;
  font-weight: bold;
  color: #444;
}
@media all and (max-width : 768px) {
  main.recruit .contents .hero-area .ttl {
    margin-top: 25px;
    font-size: 22px;
  }
}
main.recruit .contents .hero-area .text {
  margin-top: 22px;
  font-size: 13px;
  line-height: 1.7000000293;
}
@media all and (max-width : 768px) {
  main.recruit .contents .hero-area .text {
    margin-top: 14px;
  }
}
main.recruit .contents .temp {
  padding: 98px 0 96px;
  background: #fff;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
@media all and (max-width : 768px) {
  main.recruit .contents .temp {
    padding: 50px 11px;
  }
}
main.recruit .contents .temp .temp-inner {
  margin-inline: auto;
  width: 1000px;
  margin-top: -100px;
}
@media all and (max-width : 768px) {
  main.recruit .contents .temp .temp-inner {
    width: 100%;
  }
}
main.recruit .contents .temp .temp-inner .text {
  padding: 11px 0 0;
}
@media all and (max-width : 768px) {
  main.recruit .contents .temp .temp-inner .text {
    order: 2;
  }
}
main.recruit .contents .temp .temp-inner .text .ttl {
  font-weight: bold;
  font-size: 20px;
  color: #444;
}
@media all and (max-width : 768px) {
  main.recruit .contents .temp .temp-inner .text .ttl {
    font-size: 16px;
  }
}
main.recruit .contents .temp .temp-inner .text .text-area {
  margin-top: 38px;
  font-size: 16px;
  line-height: 2;
}
@media all and (max-width : 768px) {
  main.recruit .contents .temp .temp-inner .text .text-area {
    margin-top: 24px;
    font-size: 13px;
  }
}
main.recruit .contents .temp .temp-inner .img {
  max-width: 480px;
  width: 100%;
}
@media all and (max-width : 768px) {
  main.recruit .contents .temp .temp-inner .img {
    max-width: 100%;
    order: 1;
  }
  main.recruit .contents .temp .temp-inner .img img {
    width: 100%;
  }
}
main.recruit .contents .temp .temp-inner .temp-img01 {
  margin-top: 100px;
  display: grid;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  grid-column: 1;
  gap: 102px;
}
@media all and (max-width : 768px) {
  main.recruit .contents .temp .temp-inner .temp-img01 {
    margin-top: 70px;
    grid-auto-flow: row;
    gap: 15px;
  }
}
main.recruit .contents .temp .temp-inner .temp-img02 {
  margin-top: 100px;
  display: grid;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  grid-column: 1;
  gap: 102px;
}
@media all and (max-width : 768px) {
  main.recruit .contents .temp .temp-inner .temp-img02 {
    margin-top: 70px;
    grid-auto-flow: row;
    gap: 15px;
  }
}
main.recruit .contents .temp .temp-inner .temp-img03 {
  margin-top: 100px;
  display: grid;
  grid-auto-columns: 1fr 1fr;
  grid-auto-flow: column;
  grid-column: 1;
  gap: 80px;
}
@media all and (max-width : 768px) {
  main.recruit .contents .temp .temp-inner .temp-img03 {
    margin-top: 70px;
    grid-auto-flow: row;
    gap: 15px;
  }
  main.recruit .contents .temp .temp-inner .temp-img03 .item:last-of-type {
    margin-top: 70px;
  }
}
main.recruit .contents .temp .temp-inner .temp-img03 .text {
  padding: 34px 0 0;
}
@media all and (max-width : 768px) {
  main.recruit .contents .temp .temp-inner .temp-img03 .text {
    padding: 15px 0 0;
  }
}
main.recruit .contents .temp .temp-inner .temp-img03 .text .ttl {
  font-weight: bold;
  font-size: 18px;
  color: #444;
}
main.recruit .contents .temp .temp-inner .temp-img03 .text .text-area {
  margin-top: 28px;
  font-size: 16px;
  line-height: 2;
}
@media all and (max-width : 768px) {
  main.recruit .contents .temp .temp-inner .temp-img03 .text .text-area {
    margin-top: 25px;
    font-size: 13px;
  }
}
main.recruit .contents .temp .temp-inner .temp-img03 .img {
  text-align: center;
  margin-inline: auto;
  max-width: 480px;
  width: 100%;
  height: 260px;
  background: #EEEEEE;
}
main.recruit .contents .temp .temp-inner .temp-img03 .img img {
  width: 100%;
  height: 260px !important;
  object-fit: contain;
}
main.recruit .contents .temp .temp-inner .temp-img04 {
  margin-top: 100px;
}
main.recruit .contents .temp .temp-inner .temp-img04 .text {
  padding: 34px 0 0;
}
main.recruit .contents .temp .temp-inner .temp-img04 .text .ttl {
  font-weight: bold;
  font-size: 18px;
  color: #444;
}
main.recruit .contents .temp .temp-inner .temp-img04 .text .text-area {
  margin-top: 28px;
  font-size: 16px;
  line-height: 2;
}
main.recruit .contents .temp .temp-inner .temp-img04 .img {
  text-align: center;
  margin-inline: auto;
  max-width: 100%;
  width: 100%;
  height: 400px;
  background: #EEEEEE;
}
@media all and (max-width : 768px) {
  main.recruit .contents .temp .temp-inner .temp-img04 .img {
    height: auto;
  }
}
main.recruit .contents .temp .temp-inner .temp-img04 .img img {
  width: 100%;
  height: 400px;
  object-fit: contain;
}
@media all and (max-width : 768px) {
  main.recruit .contents .temp .temp-inner .temp-img04 .img img {
    height: auto;
  }
}
main.recruit .contents .temp .temp-inner .temp-img05 {
  margin-top: 96px;
  margin-inline: auto;
}
main.recruit .contents .temp .temp-inner .temp-img05 .youtube {
  margin-inline: auto;
  width: 600px;
  aspect-ratio: 16/9;
}
@media all and (max-width : 768px) {
  main.recruit .contents .temp .temp-inner .temp-img05 .youtube {
    width: 100%;
  }
}
main.recruit .contents .temp .temp-inner .temp-img05 .youtube iframe {
  width: 100%;
  height: 100%;
}
main.recruit .contents .recruit-info {
  padding: 50px 0;
}
@media all and (max-width : 768px) {
  main.recruit .contents .recruit-info {
    padding: 0;
  }
}
main.recruit .contents .recruit-info .recruit-inner .s-ttl {
  margin-top: 44px;
  font-size: 20px;
  color: #444;
  text-align: center;
}
@media all and (max-width : 768px) {
  main.recruit .contents .recruit-info .recruit-inner .s-ttl {
    margin-top: 32px;
    font-size: 15px;
  }
}
main.recruit .contents .recruit-info .recruit-inner .recruit-li {
  margin-top: 49px;
}
@media all and (max-width : 768px) {
  main.recruit .contents .recruit-info .recruit-inner .recruit-li {
    margin-top: 27px;
  }
}
main.recruit .contents .recruit-info .recruit-inner .recruit-li dl {
  margin-top: -1px;
  width: 100%;
  height: 100%;
  display: flex;
  border: 1px solid #B7BFCE;
}
@media all and (max-width : 768px) {
  main.recruit .contents .recruit-info .recruit-inner .recruit-li dl {
    display: block;
  }
}
main.recruit .contents .recruit-info .recruit-inner .recruit-li dl dt {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
  width: 211px;
  background: #626C7C;
}
@media all and (max-width : 768px) {
  main.recruit .contents .recruit-info .recruit-inner .recruit-li dl dt {
    justify-content: flex-start;
    font-size: 13px;
    width: 100%;
    padding: 6px 8px;
  }
}
main.recruit .contents .recruit-info .recruit-inner .recruit-li dl dd {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 15px;
  color: #444;
  height: 100%;
  width: 100%;
  background: #fff;
  line-height: 1.81;
  padding: 20px 25px 25px;
}
@media all and (max-width : 768px) {
  main.recruit .contents .recruit-info .recruit-inner .recruit-li dl dd {
    font-size: 13px;
    padding: 10px 8px;
  }
}
main.recruit .contents .recruit-info .recruit-inner .other {
  margin-top: 49px;
  background: #fff;
  padding: 33px 34px 40px;
  font-size: 11px;
  line-height: 1.5;
}
@media all and (max-width : 768px) {
  main.recruit .contents .recruit-info .recruit-inner .other {
    font-size: 11px;
    padding: 17px 18px 23px;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    margin-top: 30px;
  }
}
main.recruit .contents .recruit-info .recruit-inner .link-area {
  margin-inline: auto;
  margin-top: 100px;
  width: fit-content;
  text-align: center;
}
@media all and (max-width : 768px) {
  main.recruit .contents .recruit-info .recruit-inner .link-area {
    margin-top: 47px;
  }
}
main.recruit .contents .recruit-info .recruit-inner .link-area .text {
  font-size: 13px;
  color: #444;
  margin-bottom: 18px;
}
main.recruit .contents .recruit-info .recruit-inner .link-area img {
  max-width: 600px;
  width: 100%;
}
@media all and (max-width : 768px) {
  main.recruit .contents .recruit-info .recruit-inner .link-area img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
}
main.recruit .contents .recruit-info .recruit-inner .link-area .btn {
  margin-top: 51px;
}
@media all and (max-width : 768px) {
  main.recruit .contents .recruit-info .recruit-inner .link-area .btn {
    margin-top: 25px;
  }
}
main.recruit .contents .recruit-info .recruit-inner .link-area .btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  width: 600px;
  height: 104px;
  border-radius: 52px;
  background: #626c7c;
  box-shadow: 5px 5px 5px rgba(98, 108, 124, 0.3);
  font-size: 16px;
  color: #efeff4;
  transition: all 0.4s;
}
@media all and (max-width : 768px) {
  main.recruit .contents .recruit-info .recruit-inner .link-area .btn a {
    width: 100%;
    height: 57px;
    font-size: 14px;
  }
}
main.recruit .contents .recruit-info .recruit-inner .link-area .btn a:hover {
  opacity: 0.5;
}

/*
faq**********************************************************/
main.faq .contents {
  margin-top: 58px;
}
@media all and (max-width : 768px) {
  main.faq .contents {
    margin-top: 32px;
  }
}
main.faq .contents .faq-li {
  display: grid;
  gap: 26px;
}
main.faq .contents .faq-li .item {
  width: 100%;
  background: #fff;
  padding: 26px 35px 38px;
}
@media all and (max-width : 768px) {
  main.faq .contents .faq-li .item {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 21px 14px 27px;
  }
}
main.faq .contents .faq-li .item .question {
  position: relative;
  padding: 0 0 0 35px;
  font-size: 18px;
  font-weight: bold;
  color: #444;
  display: flex;
  align-items: center;
  text-align: left;
}
@media all and (max-width : 768px) {
  main.faq .contents .faq-li .item .question {
    font-size: 15px;
  }
}
main.faq .contents .faq-li .item .question:before {
  content: "Q";
  position: absolute;
  left: 0;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: bold;
}
@media all and (max-width : 768px) {
  main.faq .contents .faq-li .item .question:before {
    font-size: 25px;
  }
}
main.faq .contents .faq-li .item .answer {
  margin: 17px 0 0 40px;
  position: relative;
  padding: 0 0 0 35px;
  font-size: 16px;
  color: #707070;
  display: flex;
  align-items: flex-start;
  text-align: left;
}
@media all and (max-width : 768px) {
  main.faq .contents .faq-li .item .answer {
    margin-left: 38px;
    font-size: 14px;
  }
}
main.faq .contents .faq-li .item .answer:before {
  content: "A";
  position: absolute;
  left: 0;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: bold;
}
@media all and (max-width : 768px) {
  main.faq .contents .faq-li .item .answer:before {
    font-size: 25px;
  }
}

/*
contact**********************************************************/
main.contact .contents {
  margin-top: 58px;
}
@media all and (max-width : 768px) {
  main.contact .contents {
    margin-top: 32px;
  }
}
main.contact .contents > .text {
  text-align: left;
  font-size: 16px;
}
@media all and (max-width : 768px) {
  main.contact .contents > .text {
    font-size: 14px;
  }
}
main.contact .contents > .text span {
  color: #F29353;
}
main.contact .contents form {
  margin-inline: auto;
  margin-top: 75px;
  max-width: 700px;
  width: 100%;
}
@media all and (max-width : 768px) {
  main.contact .contents form {
    margin-top: 40px;
  }
}
main.contact .contents form dl {
  margin-inline: auto;
  width: 100%;
  margin-top: 42px;
  display: grid;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  grid-column: 1;
  gap: 45px;
}
@media all and (max-width : 768px) {
  main.contact .contents form dl {
    margin-top: 20px;
    grid-auto-flow: row;
    gap: 8px;
    width: auto;
  }
}
main.contact .contents form dl:first-of-type {
  margin-top: 0;
}
main.contact .contents form dl dt {
  min-height: 42px;
  padding-top: 10px;
  width: 150px;
  height: 42px;
  font-size: 15px;
  text-align: center;
  line-height: 1.5;
}
@media all and (max-width : 768px) {
  main.contact .contents form dl dt {
    min-height: fit-content;
    height: fit-content;
    width: fit-content;
    font-size: 14px;
  }
  main.contact .contents form dl dt br {
    display: none;
  }
}
main.contact .contents form dl dt span {
  margin-left: 5px;
  color: #f29353;
}
main.contact .contents form dl dd {
  text-align: left;
  width: 506px;
}
@media all and (max-width : 768px) {
  main.contact .contents form dl dd {
    width: 100%;
  }
}
main.contact .contents form dl dd input {
  width: 100%;
  min-height: 42px;
  padding: 10px 15px;
  font-size: 15px;
  border: 1px solid #b7bfce;
  border-radius: 6.43px;
}
@media all and (max-width : 768px) {
  main.contact .contents form dl dd input {
    width: 100%;
    height: fit-content;
    padding: 9px 14px;
    font-size: 14px;
  }
}
main.contact .contents form dl dd input::placeholder {
  color: #b7bfce;
}
main.contact .contents form dl dd textarea {
  width: 506px;
  min-height: 161px;
  padding: 10px 15px;
  font-size: 15px;
  border: 1px solid #b7bfce;
  border-radius: 6.43px;
}
@media all and (max-width : 768px) {
  main.contact .contents form dl dd textarea {
    width: 100%;
    min-height: 143px;
    font-size: 14px;
    padding: 9px 14px;
  }
}
main.contact .contents form dl dd textarea::placeholder {
  color: #b7bfce;
}
main.contact .contents form .btn-area {
  display: flex;
  justify-content: center;
  margin-top: 76px;
  gap: 29px;
}
@media all and (max-width : 768px) {
  main.contact .contents form .btn-area {
    margin-top: 31px;
    flex-wrap: wrap;
  }
}
main.contact .contents form .btn-area button.submit {
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 303px;
  height: 64px;
  border-radius: 32px;
  background: #626c7c;
  filter: drop-shadow(3.08px 3.08px 3.08px rgba(98, 108, 124, 0.3));
  font-size: 16px;
  color: #efeff4;
}
@media all and (max-width : 768px) {
  main.contact .contents form .btn-area button.submit {
    width: 248px;
    height: 51px;
    border-radius: 25px;
    font-size: 14px;
    filter: drop-shadow(3.08px 3.08px 3.08px rgba(98, 108, 124, 0.3));
  }
}
main.contact .contents form .btn-area button.submit svg {
  position: absolute;
  right: 27px;
}
@media all and (max-width : 768px) {
  main.contact .contents form .btn-area button.submit svg {
    width: 5px;
    height: 11px;
    right: 23px;
  }
}
main.contact .contents form .btn-area button.submit:hover {
  opacity: 0.5;
}
main.contact .contents form .btn-area button.back {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 303px;
  height: 64px;
  border-radius: 32px;
  background: #fff;
  border: 1px solid #626c7c;
  filter: drop-shadow(3.08px 3.08px 3.08px rgba(98, 108, 124, 0.3));
  font-size: 16px;
  color: #444;
}
@media all and (max-width : 768px) {
  main.contact .contents form .btn-area button.back {
    width: 248px;
    height: 51px;
    border-radius: 25px;
    font-size: 14px;
    filter: drop-shadow(3.08px 3.08px 3.08px rgba(98, 108, 124, 0.3));
  }
}
main.contact .contents form .btn-area button.back:hover {
  opacity: 0.5;
}
main.contact .contents form .btn-area span.submit {
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 303px;
  height: 64px;
  border-radius: 32px;
  background: #626c7c;
  filter: drop-shadow(3.08px 3.08px 3.08px rgba(98, 108, 124, 0.3));
  font-size: 16px;
  color: #efeff4;
}
@media all and (max-width : 768px) {
  main.contact .contents form .btn-area span.submit {
    width: 248px;
    height: 51px;
    border-radius: 25px;
    font-size: 14px;
    filter: drop-shadow(3.08px 3.08px 3.08px rgba(98, 108, 124, 0.3));
  }
}
main.contact .contents form .btn-area span.submit svg {
  position: absolute;
  right: 27px;
}
@media all and (max-width : 768px) {
  main.contact .contents form .btn-area span.submit svg {
    width: 5px;
    height: 11px;
    right: 23px;
  }
}
main.contact .contents form .btn-area span.submit:hover {
  opacity: 0.5;
}
main.contact .contents form .btn-area span.back {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 303px;
  height: 64px;
  border-radius: 32px;
  background: #fff;
  border: 1px solid #626c7c;
  filter: drop-shadow(3.08px 3.08px 3.08px rgba(98, 108, 124, 0.3));
  font-size: 16px;
  color: #444;
}
@media all and (max-width : 768px) {
  main.contact .contents form .btn-area span.back {
    width: 248px;
    height: 51px;
    border-radius: 25px;
    font-size: 14px;
    filter: drop-shadow(3.08px 3.08px 3.08px rgba(98, 108, 124, 0.3));
  }
}
main.contact .contents form .btn-area span.back:hover {
  opacity: 0.5;
}
main.contact .contents .thanks-ttl {
  font-size: 28px;
  font-weight: bold;
  color: #444;
}
@media all and (max-width : 768px) {
  main.contact .contents .thanks-ttl {
    font-size: 22px;
  }
}
main.contact .contents .thanks-text {
  margin-top: 63px;
  font-size: 16px;
  line-height: 2;
}
@media all and (max-width : 768px) {
  main.contact .contents .thanks-text {
    margin-top: 60px;
    font-size: 14px;
  }
}
main.contact .contents .thanks .top-btn {
  margin-inline: auto;
  margin-top: 80px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 303px;
  height: 64px;
  border-radius: 32px;
  background: #626c7c;
  filter: drop-shadow(3.08px 3.08px 3.08px rgba(98, 108, 124, 0.3));
  font-size: 16px;
  color: #efeff4;
  opacity: 1;
}
@media all and (max-width : 768px) {
  main.contact .contents .thanks .top-btn {
    margin-top: 44px;
    width: 248px;
    height: 51px;
    border-radius: 25px;
    font-size: 14px;
    filter: drop-shadow(3.08px 3.08px 3.08px rgba(98, 108, 124, 0.3));
  }
}
main.contact .contents .thanks .top-btn svg {
  position: absolute;
  right: 27px;
}
@media all and (max-width : 768px) {
  main.contact .contents .thanks .top-btn svg {
    width: 5px;
    height: 11px;
    right: 23px;
  }
}
main.contact .contents .thanks .top-btn:hover {
  opacity: 0.5 !important;
}

/*
reservation-pop
**********************************************************/
.reservation-pop {
  position: fixed;
  right: -100%;
  bottom: 20px;
  transition: right 0.3s ease-out;
  z-index: 100;
}
.reservation-pop.show {
  right: 80px;
}
.reservation-pop .reservation-pop-inner {
  border-radius: 25px 0px 0px 25px;
  border: 1px solid #FFF;
  background: #7494AD;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 8px 22px 77px;
}
.reservation-pop .open,
.reservation-pop .close {
  position: absolute;
  top: 10px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.reservation-pop .open span,
.reservation-pop .close span {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
}
.reservation-pop .open p,
.reservation-pop .close p {
  color: #FFF;
  text-align: center;
  font-family: Work Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.reservation-pop .shop-ul {
  width: 100%;
}
.reservation-pop .shop-ul > li {
  padding: 20px 0 18px;
  border-top: 1px dashed #fff;
}
.reservation-pop .shop-ul > li:first-of-type {
  padding: 36px 0 18px;
  border-top: none;
}
.reservation-pop .shop-ul > li .shop-name {
  text-align: left;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.reservation-pop .shop-ul > li .link-ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 15px auto 0;
}
.reservation-pop .shop-ul > li .link-ul li {
  width: 100%;
}
.reservation-pop .shop-ul > li .link-ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 40px;
  border-radius: 20px;
  border: 0.667px solid #FFF;
  background: #EEF2F5;
  color: #082E47;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
}
.reservation-pop .shop-ul > li .link-ul li a.web {
  border-radius: 20px;
  border: 0.667px solid #FFF;
  background: #082E47;
  color: #FFF;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

@media all and (max-width: 768px) {
  .reservation-pop {
    right: 0;
    bottom: -100%;
    transition: bottom 0.3s ease-out;
    width: 100%;
  }
}
@media all and (max-width: 768px) {
  .reservation-pop.show {
    top: auto;
    right: 0;
    bottom: 0 !important;
  }
}
@media all and (max-width: 768px) {
  .reservation-pop .reservation-pop-inner {
    border-radius: 25px 25px 0px 0px;
    box-shadow: none;
  }
}
@media all and (max-width: 768px) {
  .reservation-pop .open.sp-only {
    display: flex !important;
    left: inherit;
    right: 22px;
  }
}

main.blog .contents .staff {
  margin-top: 40px;
  width: 414px;
  border-top: 1px solid #626c7c;
  border-bottom: 1px solid #626c7c;
  padding: 22px 13px 26px;
}

main.blog .contents .staff .staff_block {
  display: flex;
  gap: 17px;
}

@media all and (max-width : 768px) {
  main.blog .contents .staff {
    width: 100%;
    margin-top: 32px;
    padding: 21px 13px 29px 0;
    gap: 13px;
  }
}
main.blog .contents .staff .photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
}
@media all and (max-width : 768px) {
  main.blog .contents .staff .photo {
    width: 100px;
    height: 100px;
  }
}
main.blog .contents .staff .photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
main.blog .contents .staff .data {
  text-align: left;
}

@media all and (max-width : 768px) {
  main.blog .contents .staff .data {
    line-height: 1;
  }
}
main.blog .contents .staff .data .shop-name a {
  text-decoration: underline;
  color: #444;
}
main.blog .contents .staff .data .job {
  margin-top: 8px;
  font-size: 11px;
  color: #444;
}
@media all and (max-width : 768px) {
  main.blog .contents .staff .data .job {
    margin-top: 20px;
  }
}
main.blog .contents .staff .data .name {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #444;
  gap: 9px;
}
@media all and (max-width : 768px) {
  main.blog .contents .staff .data .name {
    margin-top: 9px;
    font-size: 18px;
    gap: 12px;
  }
}
main.blog .contents .staff .data .reserve {
  width: 150px;
  height: 33px;
  margin-top: 5px;
  background: #ffff6e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #626c7c;
}
@media all and (max-width : 768px) {
  main.blog .contents .staff .data .reserve {
    width: 168px;
    height: 31px;
    margin-top: 18px;
  }
}

.w100 {
    width: 100%!important;
    border-left: none!important;
}

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