@charset "UTF-8";
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;
  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;
}

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]:focus,
input[type="button"]:focus {
  outline-offset: -2px;
}

/* ============================
  basic
=============================*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background-color: #F5F3F1;
}

body {
  position: relative;
  background: #ffffff;
  color: #333333;
  font-family:"Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  line-height: 2.0;
  letter-spacing: 0.0em;
  opacity: 1;
}

@media (min-width: 768px) {
  body {
    width: 100%;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: calc(28 / 750 * 100vw);
  }
}

body::before, body::after {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100vw;
  height: 100vh;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: auto;
  overflow: hidden;
}

@media (min-width: 768px) {
  body::before, body::after {
    content: '';
  }
}

body::before {
  background-color: #BDB29F;
  opacity: 0.1;
  z-index: 0;
}

body::after {
  background-image: url(../img/body_bg.png);
  mix-blend-mode: overlay;
  opacity: 0.8;
  z-index: 1;
}

body.Android {
  font-family:"Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  text-decoration: none;
}

main {
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  background-color: #ffffff;
  z-index: 2;
}

@media (min-width: 768px) {
  main {
    position: relative;
    width: 375px;
    box-shadow: 0px calc(3px / 2) calc(10px / 2) calc(-6px / 2) rgba(0, 0, 0, 0.1);
    z-index: 10;
  }
}

@media (max-width: 767px) {
  main {
    max-width: 100%;
  }
}

.wrapper {
  position: relative;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .wrapper {
    left: 0;
    right: 0;
    width: 375px;
  }
}

@media (max-width: 767px) {
  .wrapper {
    width: 100%;
  }
}

.container {
  margin: 0 auto;
  z-index: 1;
}

@media (max-width: 767px) {
  .container {
    width: calc(100% - ((40 / 750 * 100vw) * 2));
  }
}

.clearfix * {
  zoom: 1;
}

.clearfix::before, .clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

.hide {
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
}

@media (min-width: 768px) {
  .u-pc {
    display: block;
  }
}

@media (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

@media (min-width: 768px) {
  .u-sp {
    display: none;
  }
}

@media (max-width: 767px) {
  .u-sp {
    display: block;
  }
}

.clear {
  clear: both;
}

/* ============================
  Header
=============================*/
.header {
  position: fixed;
  top: 0;
  display: block;
  width: 100%;
  margin: 0 auto;
  z-index: 20;
}

@media (min-width: 768px) {
  .header {
    top: 30px;
  }
}

@media (max-width: 767px) {
  .header {
    background-color: white;
    box-shadow: 0px calc(3 / 750 * 100vw) calc(10 / 750 * 100vw) calc(-6 / 750 * 100vw) rgba(0, 0, 0, 0.6);
  }
}

.header-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}

@media (min-width: 768px) {
  .header-inner {
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    height: calc(100px / 2);
    padding: calc(50px / 2);
  }
}

@media (max-width: 767px) {
  .header-inner {
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    height: calc(100 / 750 * 100vw);
    padding: calc(20 / 750 * 100vw);
  }
}

.header-logo {
  display: block;
  background: url(../img/logo.png) no-repeat center/contain;
}

@media (min-width: 768px) {
  .header-logo {
    width: calc(350px / 2);
    height: calc(52px / 2);
  }
}

@media (max-width: 767px) {
  .header-logo {
    width: calc(298 / 750 * 100vw);
    height: calc(52 / 750 * 100vw);
  }
}

.header-link {
  text-align: right;
  color: #333333;
  cursor: pointer;
  vertical-align: baseline;
}

@media (min-width: 768px) {
  .header-link {
    display: none;
  }
}

@media (max-width: 767px) {
  .header-link {
    display: block;
  }
}

.header-link svg {
  position: relative;
  display: inline-block;
  width: 1.3rem;
  height: 1.3rem;
  stroke: #333333;
  stroke-width: 1px;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: transparent;
}

@media (min-width: 768px) {
  .header-link svg {
    top: calc(6px / 2);
    margin-right: calc(10px / 2);
    stroke-width: calc(2px / 2);
  }
}

@media (max-width: 767px) {
  .header-link svg {
    top: calc(6 / 750 * 100vw);
    margin-right: calc(10 / 750 * 100vw);
    stroke-width: calc(2 / 750 * 100vw);
  }
}

/* ============================
  PC
=============================*/
.link-box {
  position: fixed;
  bottom: 5vw;
  right: 2vw;
  width: 7.291666666666667vw;
  text-align: center;
  z-index: 4;
}

@media (min-width: 768px) {
  .link-box {
    display: block;
  }
}

@media (max-width: 767px) {
  .link-box {
    display: none;
  }
}

.link-box-qr {
  color: #5C5549;
  font-size: 0.625vw;
  font-weight: bold;
  line-height: 1.5;
}

.link-box-qr picture {
  position: relative;
  display: block;
  width: 5.208333333333334vw;
  height: 5.208333333333334vw;
  margin: 0.48125vw auto 0;
  box-shadow: 0px 0.23438vw 0.78125vw -0.46875vw rgba(0, 0, 0, 0.1);
}

.link-box-qr picture::after {
  content: '';
  position: absolute;
  top: -1.1625vw;
  right: -3.61125vw;
  display: block;
  width: 5.0015624999999995vw;
  height: 1.7874999999999999vw;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/qr_arrow.png);
  z-index: 5;
}

/* ============================
  clips
=============================*/
.clips {
  position: relative;
  display: block;
  width: 100%;
  margin: auto;
}

.clips::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-color: #ECE8E0 transparent transparent transparent;
}

@media (min-width: 768px) {
  .clips::after {
    bottom: calc(-70px / 2);
    border-width: calc(55px / 2) calc(121px / 2) 0 calc(121px / 2);
  }
}

@media (max-width: 767px) {
  .clips::after {
    bottom: calc(-70 / 750 * 100vw);
    border-width: calc(55 / 750 * 100vw) calc(121 / 750 * 100vw) 0 calc(121 / 750 * 100vw);
  }
}

.clips-ttl {
  position: relative;
  display: block;
  background-color: #ECE8E0;
  color: #ffffff;
  text-align: center;
  line-height: 1;
}

@media (min-width: 768px) {
  .clips-ttl {
    height: calc(140px / 2);
    padding-top: calc(50px / 2);
  }
}

@media (max-width: 767px) {
  .clips-ttl {
    height: calc(240 / 750 * 100vw);
    padding-top: calc(140 / 750 * 100vw);
  }
}

.clips-ttl-back {
  position: relative;
  font-family: 'EB Garamond', serif;
  color: #BD332D;
  z-index: 1;
}

@media (min-width: 768px) {
  .clips-ttl-back {
    font-size: calc(52px / 2);
  }
}

@media (max-width: 767px) {
  .clips-ttl-back {
    font-size: calc(52 / 750 * 100vw);
  }
}

.clips-ttl-main {
  position: relative;
  display: block;
  color: #5C5549;
  font-weight: bold;
  z-index: 2;
}

@media (min-width: 768px) {
  .clips-ttl-main {
    top: calc(-40px / 2);
    font-size: calc(36px / 2);
  }
}

@media (max-width: 767px) {
  .clips-ttl-main {
    top: calc(-40 / 750 * 100vw);
    font-size: calc(36 / 750 * 100vw);
  }
}

.clips-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  margin: auto;
}

@media (min-width: 768px) {
  .clips-list {
    width: calc(710px / 2);
    padding: calc(40px / 2) 0;
  }
}

@media (max-width: 767px) {
  .clips-list {
    width: calc(710 / 750 * 100vw);
    padding: calc(40 / 750 * 100vw) 0;
  }
}

.clips-list-item {
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .clips-list-item {
    width: calc(230px / 2);
    margin-bottom: calc(50px / 2);
  }
}

@media (max-width: 767px) {
  .clips-list-item {
    width: calc(230 / 750 * 100vw);
    margin-bottom: calc(50 / 750 * 100vw);
  }
}

@media (min-width: 768px) {
  .clips-list-item:not(:nth-of-type(3n)) {
    margin-right: calc(10px / 2);
  }
}

@media (max-width: 767px) {
  .clips-list-item:not(:nth-of-type(3n)) {
    margin-right: calc(10 / 750 * 100vw);
  }
}

.clips-list-item picture {
  width: auto;
  height: auto;
}

.clips-list-item picture img {
  display: block;
  object-fit: cover;
}

@media (min-width: 768px) {
  .clips-list-item picture img {
    width: calc(230px / 2);
    height: calc(230px / 2);
  }
}

@media (max-width: 767px) {
  .clips-list-item picture img {
    width: calc(230 / 750 * 100vw);
    height: calc(230 / 750 * 100vw);
  }
}

.clips-list-group {
  display: table;
  width: auto;
  color: #ffffff;
}

@media (min-width: 768px) {
  .clips-list-group {
    height: calc(30px / 2);
    margin-top: calc(20px / 2);
    padding: 0 calc(30px / 2);
    border-radius: calc(15px / 2);
    font-size: calc(17px / 2);
    line-height: calc(30px / 2);
  }
}

@media (max-width: 767px) {
  .clips-list-group {
    height: calc(30 / 750 * 100vw);
    margin-top: calc(20 / 750 * 100vw);
    padding: 0 calc(30 / 750 * 100vw);
    border-radius: calc(15 / 750 * 100vw);
    font-size: calc(17 / 750 * 100vw);
    line-height: calc(30 / 750 * 100vw);
  }
}

.clips-list-group[data-group="ROMANTIC"], .clips-list-group[data-group="ELEGANT"], .clips-list-group[data-group="ROMANTIC_ELEGANT"] {
  background-color: #DA8194;
}

.clips-list-group[data-group="ORIGINAL"], .clips-list-group[data-group="PLAYFUL"], .clips-list-group[data-group="ORIGINAL_PLAYFUL"] {
  background-color: #B3D0D6;
}

.clips-list-group[data-group="CASUAL"], .clips-list-group[data-group="JOYFUL"], .clips-list-group[data-group="CASUAL_JOYFULL"] {
  background-color: #F4F0D0;
  color: #333333;
}

/* ============================
  dx
=============================*/
.dx {
  position: relative;
  display: block;
  width: 100%;
  margin: auto;
}

.dx-head {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .dx-head {
    height: calc(440px / 2);
    margin-top: calc(100px / 2);
    padding: calc(100px / 2) 0;
  }
}

@media (max-width: 767px) {
  .dx-head {
    height: calc(440 / 750 * 100vw);
    margin-top: calc(100 / 750 * 100vw);
    padding: calc(100 / 750 * 100vw) 0;
  }
}

.dx-head::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/dx_head_bg.png);
  mix-blend-mode: multiply;
  z-index: 0;
}

.dx-head h2 {
  position: relative;
  color: #303D49;
  font-weight: bold;
  line-height: 1.5;
  z-index: 2;
}

@media (min-width: 768px) {
  .dx-head h2 {
    font-size: calc(36px / 2);
  }
}

@media (max-width: 767px) {
  .dx-head h2 {
    font-size: calc(36 / 750 * 100vw);
  }
}

.dx-list {
  position: relative;
  display: block;
  margin: auto;
  z-index: 3;
}

@media (min-width: 768px) {
  .dx-list {
    top: calc(-180px / 2);
    width: calc(670px / 2);
    margin-bottom: calc(-180px / 2);
  }
}

@media (max-width: 767px) {
  .dx-list {
    top: calc(-180 / 750 * 100vw);
    width: calc(670 / 750 * 100vw);
    margin-bottom: calc(-180 / 750 * 100vw);
  }
}

.dx-list-item {
  position: relative;
  display: block;
  margin: auto;
}

@media (min-width: 768px) {
  .dx-list-item:not(:last-child) {
    margin-bottom: calc(50px / 2);
  }
}

@media (max-width: 767px) {
  .dx-list-item:not(:last-child) {
    margin-bottom: calc(50 / 750 * 100vw);
  }
}

.dx-list-head {
  position: relative;
  display: table;
  width: 100%;
  margin: auto;
  background-color: #5C5549;
  text-align: center;
  cursor: pointer;
}

@media (min-width: 768px) {
  .dx-list-head {
    height: calc(110px / 2);
  }
}

@media (max-width: 767px) {
  .dx-list-head {
    height: calc(110 / 750 * 100vw);
  }
}

.dx-list-head::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: block;
  height: 100%;
  background-color: #BDB29F;
}

@media (min-width: 768px) {
  .dx-list-head::after {
    width: calc(110px / 2);
  }
}

@media (max-width: 767px) {
  .dx-list-head::after {
    width: calc(110 / 750 * 100vw);
  }
}

.dx-list-head.open .dx-list-toggle::before {
  transform: rotate(360deg);
}

.dx-list-head.open .dx-list-toggle::after {
  transform: rotate(180deg);
}

.dx-list-head > p {
  display: table-cell;
  vertical-align: middle;
  color: #ffffff;
  font-weight: 400;
}

.dx-list-tag {
  position: absolute;
  top: 0;
  bottom: 0;
  display: table;
  margin: auto;
  border-radius: 50%;
  text-align: center;
  z-index: 2;
}

@media (min-width: 768px) {
  .dx-list-tag {
    left: calc(40px / 2);
    width: calc(130px / 2);
    height: calc(130px / 2);
  }
}

@media (max-width: 767px) {
  .dx-list-tag {
    left: calc(40 / 750 * 100vw);
    width: calc(130 / 750 * 100vw);
    height: calc(130 / 750 * 100vw);
  }
}

.dx-list-tag::after {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  mix-blend-mode: multiply;
}

@media (min-width: 768px) {
  .dx-list-tag::after {
    bottom: calc(2px / 2);
    right: calc(3px / 2);
    border: calc(2px / 2) solid #5C5549;
  }
}

@media (max-width: 767px) {
  .dx-list-tag::after {
    bottom: calc(2 / 750 * 100vw);
    right: calc(3 / 750 * 100vw);
    border: calc(2 / 750 * 100vw) solid #5C5549;
  }
}

.dx-list-tag[data-num="01"] {
  background-color: #F4F0D0;
}

.dx-list-tag[data-num="02"] {
  background-color: #DA8194;
  color: #ffffff;
}

.dx-list-tag[data-num="03"] {
  background-color: #DBEAEE;
}

.dx-list-tag p {
  display: table-cell;
  vertical-align: middle;
  line-height: 1.32;
}

.dx-list-tag p span {
  display: block;
}

@media (min-width: 768px) {
  .dx-list-tag p span {
    font-size: calc(16px / 2);
  }
}

@media (max-width: 767px) {
  .dx-list-tag p span {
    font-size: calc(16 / 750 * 100vw);
  }
}

.dx-list-toggle::before, .dx-list-toggle::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  margin: auto;
  background-color: #ffffff;
  z-index: 2;
  transition: .3s;
}

@media (min-width: 768px) {
  .dx-list-toggle::before, .dx-list-toggle::after {
    width: calc(28px / 2);
    height: calc(3px / 2);
  }
}

@media (max-width: 767px) {
  .dx-list-toggle::before, .dx-list-toggle::after {
    width: calc(28 / 750 * 100vw);
    height: calc(3 / 750 * 100vw);
  }
}

@media (min-width: 768px) {
  .dx-list-toggle::before {
    right: calc(40px / 2);
  }
}

@media (max-width: 767px) {
  .dx-list-toggle::before {
    right: calc(40 / 750 * 100vw);
  }
}

.dx-list-toggle::after {
  transform: rotate(90deg);
}

@media (min-width: 768px) {
  .dx-list-toggle::after {
    right: calc(40px / 2);
  }
}

@media (max-width: 767px) {
  .dx-list-toggle::after {
    right: calc(40 / 750 * 100vw);
  }
}

.dx-list-body {
  position: relative;
  display: none;
  background-color: #ffffff;
  text-align: center;
}

@media (min-width: 768px) {
  .dx-list-body {
    padding: calc(60px / 2) calc(30px / 2) calc(30px / 2);
    border: calc(2px / 2) solid #BDB29F;
  }
}

@media (max-width: 767px) {
  .dx-list-body {
    padding: calc(60 / 750 * 100vw) calc(30 / 750 * 100vw) calc(30 / 750 * 100vw);
    border: calc(2 / 750 * 100vw) solid #BDB29F;
  }
}

.dx-list-body h3 {
  display: block;
  font-family: 'Zen Old Mincho', serif;
  color: #5C5549;
}

@media (min-width: 768px) {
  .dx-list-body h3 {
    font-size: calc(36px / 2);
  }
}

@media (max-width: 767px) {
  .dx-list-body h3 {
    font-size: calc(36 / 750 * 100vw);
  }
}

.dx-list-body h3 span {
  display: block;
  color: #333333;
}

@media (min-width: 768px) {
  .dx-list-body h3 span {
    font-size: calc(24px / 2);
  }
}

@media (max-width: 767px) {
  .dx-list-body h3 span {
    font-size: calc(24 / 750 * 100vw);
  }
}

.dx-list-body p {
  margin-top: 1em;
}

.dx-list-img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  margin: auto;
}

@media (min-width: 768px) {
  .dx-list-img {
    margin-top: calc(50px / 2);
  }
}

@media (max-width: 767px) {
  .dx-list-img {
    margin-top: calc(50 / 750 * 100vw);
  }
}

.dx-list-img li {
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .dx-list-img li {
    width: calc(190px / 2);
  }
}

@media (max-width: 767px) {
  .dx-list-img li {
    width: calc(190 / 750 * 100vw);
  }
}

.dx-bottom {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .dx-bottom {
    height: calc(463px / 2);
    top: calc(-150px / 2);
    margin-bottom: calc(-150px / 2);
    padding-top: calc(200px / 2);
  }
}

@media (max-width: 767px) {
  .dx-bottom {
    height: calc(463 / 750 * 100vw);
    top: calc(-150 / 750 * 100vw);
    margin-bottom: calc(-150 / 750 * 100vw);
    padding-top: calc(200 / 750 * 100vw);
  }
}

.dx-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/dx_bottom_bg.png);
  mix-blend-mode: multiply;
  z-index: 0;
}

.dx-bottom p {
  position: relative;
  color: #303D49;
  line-height: 1.5;
  z-index: 2;
}

@media (min-width: 768px) {
  .dx-bottom p {
    font-size: calc(28px / 2);
  }
}

@media (max-width: 767px) {
  .dx-bottom p {
    font-size: calc(28 / 750 * 100vw);
  }
}

.sns-link {
  position: relative;
  display: block;
  margin: auto;
  text-align: center;
  z-index: 2;
}

@media (min-width: 768px) {
  .sns-link {
    margin-top: calc(20px / 2);
  }
}

@media (max-width: 767px) {
  .sns-link {
    margin-top: calc(20 / 750 * 100vw);
  }
}

.sns-link a {
  display: block;
  margin: auto;
}

@media (min-width: 768px) {
  .sns-link a {
    width: calc(272px / 2);
    height: calc(58px / 2);
  }
}

@media (max-width: 767px) {
  .sns-link {
    width: calc(272 / 750 * 100vw);
    height: calc(58 / 750 * 100vw);
  }
}

/* ==========================================================
  point
=====*/
.point {
  position: relative;
  display: block;
  width: 100%;
  margin: auto;
}

@media (min-width: 768px) {
  .point {
    margin-top: calc(80px / 2);
  }
}

@media (max-width: 767px) {
  .point {
    margin-top: calc(80 / 750 * 100vw);
  }
}

.point-head {
  position: relative;
  text-align: center;
}

.point-head h2 {
  position: relative;
  display: table;
  margin: auto;
  color: #BD332D;
  font-family:"Zen Old Mincho", serif;
}

@media (min-width: 768px) {
  .point-head h2 {
    font-size: calc(36px / 2);
  }
}

@media (max-width: 767px) {
  .point-head h2 {
    font-size: calc(36 / 750 * 100vw);
  }
}

.point-head h2::before, .point-head h2::after {
  content: '';
  position: absolute;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.point-head h2::before {
  background-image: url(../img/point_head_mark_01.png);
}

@media (min-width: 768px) {
  .point-head h2::before {
    top: calc(-20px / 2);
    left: calc(-80px / 2);
    width: calc(90px / 2);
    height: calc(90px / 2);
  }
}

@media (max-width: 767px) {
  .point-head h2::before {
    top: calc(-20 / 750 * 100vw);
    left: calc(-80 / 750 * 100vw);
    width: calc(90 / 750 * 100vw);
    height: calc(90 / 750 * 100vw);
  }
}

.point-head h2::after {
  background-image: url(../img/point_head_mark_02.png);
}

@media (min-width: 768px) {
  .point-head h2::after {
    bottom: calc(50px / 2);
    right: calc(-20px / 2);
    width: calc(35px / 2);
    height: calc(38px / 2);
  }
}

@media (max-width: 767px) {
  .point-head h2::after {
    bottom: calc(50 / 750 * 100vw);
    right: calc(-20 / 750 * 100vw);
    width: calc(35 / 750 * 100vw);
    height: calc(38 / 750 * 100vw);
  }
}

.point-body {
  position: relative;
  display: block;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/point_bg.png);
}

@media (min-width: 768px) {
  .point-body {
    margin-top: calc(30px / 2);
    padding-top: calc(290px / 2);
  }
}

@media (max-width: 767px) {
  .point-body {
    margin-top: calc(30 / 750 * 100vw);
    padding-top: calc(290 / 750 * 100vw);
  }
}

.point-list {
  position: relative;
  display: block;
  margin: auto;
}

@media (min-width: 768px) {
  .point-list {
    width: calc(670px / 2);
  }
}

@media (max-width: 767px) {
  .point-list {
    width: calc(670 / 750 * 100vw);
  }
}

.point-list li {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  margin: auto;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #BDB29F;
}

@media (min-width: 768px) {
  .point-list li {
    padding: calc(30px / 2) calc(18px / 2);
  }
}

@media (max-width: 767px) {
  .point-list li {
    padding: calc(30 / 750 * 100vw) calc(18 / 750 * 100vw);
  }
}

.point-list li::before, .point-list li::after {
  content: '';
  position: absolute;
  display: block;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (min-width: 768px) {
  .point-list li::before, .point-list li::after {
    width: calc(70px / 2);
    height: calc(70px / 2);
  }
}

@media (max-width: 767px) {
  .point-list li::before, .point-list li::after {
    width: calc(70 / 750 * 100vw);
    height: calc(70 / 750 * 100vw);
  }
}

@media (min-width: 768px) {
  .point-list li::before {
    top: calc(10px / 2);
    left: calc(10px / 2);
  }
}

@media (max-width: 767px) {
  .point-list li::before {
    top: calc(10 / 750 * 100vw);
    left: calc(10 / 750 * 100vw);
  }
}

.point-list li::after {
  transform: rotate(180deg);
}

@media (min-width: 768px) {
  .point-list li::after {
    bottom: calc(10px / 2);
    right: calc(10px / 2);
  }
}

@media (max-width: 767px) {
  .point-list li::after {
    bottom: calc(10 / 750 * 100vw);
    right: calc(10 / 750 * 100vw);
  }
}

@media (min-width: 768px) {
  .point-list li:not(:last-child) {
    margin-bottom: calc(30px / 2);
  }
}

@media (max-width: 767px) {
  .point-list li:not(:last-child) {
    margin-bottom: calc(30 / 750 * 100vw);
  }
}

.point-list-num {
  flex-shrink: 0;
  display: table;
  margin: auto;
  border-right: 1px solid #8495A7;
  font-family: 'EB Garamond', serif;
  text-align: center;
  line-height: 1;
}

@media (min-width: 768px) {
  .point-list-num {
    width: calc(110px / 2);
  }
}

@media (max-width: 767px) {
  .point-list-num {
    width: calc(110 / 750 * 100vw);
  }
}

.point-list-num p {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  color: #CA9978;
}

@media (min-width: 768px) {
  .point-list-num p {
    top: calc(10px / 2);
    font-size: calc(23px / 2);
  }
}

@media (max-width: 767px) {
  .point-list-num p {
    top: calc(10 / 750 * 100vw);
    font-size: calc(23 / 750 * 100vw);
  }
}

.point-list-num p span {
  position: relative;
  display: block;
  color: #CA9978;
}

@media (min-width: 768px) {
  .point-list-num p span {
    top: calc(-20px / 2);
    font-size: calc(78px / 2);
  }
}

@media (max-width: 767px) {
  .point-list-num p span {
    top: calc(-20 / 750 * 100vw);
    font-size: calc(78 / 750 * 100vw);
  }
}

.point-list-txt {
  flex-shrink: 0;
  text-align: center;
}

@media (min-width: 768px) {
  .point-list-txt {
    width: calc(510px / 2);
  }
}

@media (max-width: 767px) {
  .point-list-txt {
    width: calc(510 / 750 * 100vw);
  }
}

.point-list-txt span.sup {
  font-size: 70%;
  vertical-align: super;
}

.point-note {
  margin-top: 1em;
  text-align: center;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .point-note {
    font-size: calc(22px / 2);
  }
}

@media (max-width: 767px) {
  .point-note {
    font-size: calc(22 / 750 * 100vw);
  }
}

.point-btn {
  position: relative;
  display: table;
  margin: auto;
  background-color: #CA9978;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
}

@media (min-width: 768px) {
  .point-btn {
    width: calc(540px / 2);
    height: calc(80px / 2);
    margin-top: calc(50px / 2);
    line-height: calc(80px / 2);
    border-radius: calc(40px / 2);
  }
}

@media (max-width: 767px) {
  .point-btn {
    width: calc(540 / 750 * 100vw);
    height: calc(80 / 750 * 100vw);
    margin-top: calc(50 / 750 * 100vw);
    line-height: calc(80 / 750 * 100vw);
    border-radius: calc(40 / 750 * 100vw);
  }
}

.point-btn::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  margin: auto;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/point_btn_arrow.png);
}

@media (min-width: 768px) {
  .point-btn::after {
    top: calc(-20px / 2);
    right: calc(-40px / 2);
    width: calc(110px / 2);
    height: calc(40px / 2);
  }
}

@media (max-width: 767px) {
  .point-btn::after {
    top: calc(-20 / 750 * 100vw);
    right: calc(-40 / 750 * 100vw);
    width: calc(110 / 750 * 100vw);
    height: calc(40 / 750 * 100vw);
  }
}

/* ============================
  gallery
=============================*/
.gallery {
  position: relative;
  display: block;
  margin: auto;
}

@media (min-width: 768px) {
  .gallery {
    width: 360px;
  }
}

@media (max-width: 767px) {
  .gallery {
    margin-top: calc(60 / 750 * 100vw);
  }
}

.gallery-head {
  position: relative;
  text-align: center;
}

@media (max-width: 767px) {
  .gallery-head {
    margin-bottom: calc(20 / 750 * 100vw);
  }
}

.gallery-list {
  display: grid;
  margin: auto;
  grid-gap: 10px;
  grid-template-columns: 1fr 1fr 1fr;
}

@media (min-width: 768px) {
  .gallery-list {
    width: 360px;
  }
}

@media (max-width: 767px) {
  .gallery-list {
    width: calc(712 / 750 * 100vw);
  }
}

.gallery-list-item:nth-child(1) {
  grid-row: 1 / span 1;
  grid-column: 1 / span 1;
}

.gallery-list-item:nth-child(2) {
  grid-row: 1 / span 1;
  grid-column: 2 / span 1;
}

.gallery-list-item:nth-child(3) {
  grid-row: 1 / span 1;
  grid-column: 3 / span 1;
}

.gallery-list-item:nth-child(4) {
  grid-row: 2 / span 2;
  grid-column: 1 / span 1;
}

.gallery-list-item:nth-child(5) {
  grid-row: 2 / span 2;
  grid-column: 2 / span 2;
}

.gallery-list-item:nth-child(6) {
  grid-row: 4 / span 1;
  grid-column: 1 / span 2;
}

.gallery-list-item:nth-child(7) {
  grid-row: 4 / span 1;
  grid-column: 1 / span 2;
}

.gallery-list-item:nth-child(8) {
  grid-row: 4 / span 1;
  grid-column: 1 / span 2;
}

.gallery-list-item:nth-child(9) {
  grid-row: 4 / span 1;
  grid-column: 1 / span 2;
}

.gallery-list-item:nth-child(10) {
  grid-row: 4 / span 1;
  grid-column: 1 / span 2;
}

.gallery-list-item:nth-child(11) {
  grid-row: 4 / span 1;
  grid-column: 1 / span 2;
}

.gallery-list-item:nth-child(12) {
  grid-row: 4 / span 1;
  grid-column: 1 / span 2;
}

.gallery-list-item:nth-child(13) {
  grid-row: 4 / span 1;
  grid-column: 1 / span 2;
}

.gallery-list-item:nth-child(14) {
  grid-row: 4 / span 1;
  grid-column: 1 / span 2;
}

.gallery-list-item:nth-child(15) {
  grid-row: 4 / span 1;
  grid-column: 1 / span 2;
}

.gallery-list-item:nth-child(16) {
  grid-row: 4 / span 1;
  grid-column: 1 / span 2;
}

.gallery-list-item:nth-child(17) {
  grid-row: 4 / span 1;
  grid-column: 1 / span 2;
}

.gallery-list-item:nth-child(18) {
  grid-row: 4 / span 1;
  grid-column: 1 / span 2;
}

.gallery-list-item:nth-child(19) {
  grid-row: 4 / span 1;
  grid-column: 1 / span 2;
}

.gallery-list-item:nth-child(20) {
  grid-row: 4 / span 1;
  grid-column: 1 / span 2;
}

.gallery-list-item:nth-child(21) {
  grid-row: 4 / span 1;
  grid-column: 1 / span 2;
}

.gallery-list-item:nth-child(22) {
  grid-row: 4 / span 1;
  grid-column: 1 / span 2;
}

.gallery-list-item:nth-child(23) {
  grid-row: 4 / span 1;
  grid-column: 1 / span 2;
}

.gallery-list-item a {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.gallery-list-item img {
  height: 100%;
}

.gallery-slide-item {
  position: relative;
  display: block;
  flex-shrink: 0;
  background-color: #F9F7F6;
  text-align: center;
}

.gallery-slide-item .box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.87);
}

.gallery-slide-item .box p {
  margin-right: 10px;
  text-align: right;
  font-size: 0.8em;
  line-height: 40px;
}

.gallery-slide-item .box button {
  opacity: .5;
  transition: opacity .2s;
  background: none;
  border: 0;
  outline: none;
  pointer-events: visible;
  color: inherit;
  width: 26px;
  height: 26px;
}

.gallery-slide-item .box button svg {
  display: block;
  width: 100%;
  height: 100%;
  stroke: #111;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: transparent;
  cursor: pointer;
}

.gallery-slide-item .box button.is-on svg {
  stroke: transparent;
  fill: #e46087;
  animation: heartAnime .4s ease-out;
}

.gallery .md {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 100;
}

.gallery .md-bg {
  position: absolute;
  height: 100vh;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 101;
}

.gallery .md-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  min-height: 600px;
  height: 70%;
  background: #ffffff;
  box-shadow: 0px 0px 16px -6px rgba(65, 65, 65, 0.2);
  z-index: 102;
}

.gallery .md-inner {
  position: relative;
  width: 100%;
  padding: 100px 0;
  overflow-x: hidden;
  overflow-y: auto;
}

.gallery .md-close-btn {
  display: block;
  position: absolute;
  bottom: -50px;
  left: 20px;
  background-color: #ffffff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: #000000;
  text-align: center;
  font-size: 30px;
  text-decoration: none;
  line-height: 35px;
  z-index: 105;
}

.gallery .md .center .slick-slide {
  transform: scale(0.8);
  transition: 0.3s all;
}

.gallery .md .center .slick-slide.slick-center {
  transform: scale(1);
}

.gallery .md .center .slick-slide img {
  transition: 0.3s all;
}

.gallery .fav-link {
  display: table;
  position: absolute;
  bottom: -50px;
  right: 20px;
  background-color: #5C5549;
  border-radius: 50%;
  width: 220px;
  height: 220px;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  font-size: 26px;
  line-height: 1.3;
  z-index: 105;
}

.gallery .fav-link span {
  display: table-cell;
  vertical-align: middle;
}

.gallery-end {
  position: relative;
  display: block;
  width: 100%;
  margin: auto;
  text-align: center;
  font-weight: bold;
}

@media (max-width: 767px) {
  .gallery-end {
    margin-top: calc(80 / 750 * 100vw);
  }
}

.gallery-end::before, .gallery-end::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.gallery-end::before {
  background-image: url(../img/gallery_end_bg.png);
  opacity: .3;
  z-index: 0;
}

.gallery-end::after {
  background-color: #B0BDD1;
  mix-blend-mode: overlay;
  z-index: 1;
}

.gallery-end-wrap {
  position: relative;
  display: block;
  width: 100%;
  margin: auto;
}

.gallery-end-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 54%;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: multiply;
  background-image: url(../img/gallery_end_bottom.png);
  z-index: 2;
}

.gallery-end-head {
  position: relative;
  display: block;
  margin: auto;
  z-index: 2;
}

@media (max-width: 767px) {
  .gallery-end-head {
    padding: calc(50 / 750 * 100vw) 0 calc(0 / 750 * 100vw);
  }
}

.gallery-end-head p {
  display: inline-block;
}

.gallery-end-head p span {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.gallery-end-head p span[data-num="01"] {
  width: calc(98 / 750 * 100vw);
  height: calc(41 / 750 * 100vw);
  background-image: url(../img/gallery_end_txt_01.png);
}

.gallery-end-head p span[data-num="02"] {
  width: calc(104 / 750 * 100vw);
  height: calc(41 / 750 * 100vw);
  background-image: url(../img/gallery_end_txt_02.png);
}

.gallery-end-bottom {
  position: relative;
  display: block;
  margin: auto;
  z-index: 2;
}

@media (max-width: 767px) {
  .gallery-end-bottom {
    padding: calc(100 / 750 * 100vw) 0 calc(50 / 750 * 100vw);
  }
}

.gallery-end-bottom p {
  position: relative;
  display: inline-block;
  z-index: 1;
  color: #ffffff;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .gallery-end-bottom p {
    font-size: calc(36 / 750 * 100vw);
  }
}

.gallery-end-bottom p::before, .gallery-end-bottom p::after {
  content: '';
  position: absolute;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media (max-width: 767px) {
  .gallery-end-bottom p::before {
    top: calc(-30 / 750 * 100vw);
    left: calc(-80 / 750 * 100vw);
    width: calc(89 / 750 * 100vw);
    height: calc(93 / 750 * 100vw);
    background-image: url(../img/gallery_end_bottom_icon_01.png);
  }
}

@media (max-width: 767px) {
  .gallery-end-bottom p::after {
    bottom: calc(36 / 750 * 100vw);
    right: calc(-14 / 750 * 100vw);
    width: calc(35 / 750 * 100vw);
    height: calc(39 / 750 * 100vw);
    background-image: url(../img/gallery_end_bottom_icon_02.png);
  }
}

@keyframes heartAnime {
  0% {
    transform: scale(0.4);
  }
  70% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* ==========================================================
  facility
=====*/
.facility {
  display: block;
  margin: auto;
}

.facility-head {
  position: relative;
  display: block;
  width: 100%;
  margin: auto;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.facility-head::before, .facility-head::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.facility-head::before {
  background-image: url(../img/facility_ttl_bg.png);
  z-index: 0;
}

.facility-head::after {
  background-color: #B0BDD1;
  mix-blend-mode: overlay;
  z-index: 1;
}

.facility-head-ttl {
  position: relative;
  text-align: center;
  color: #5C5549;
  font-weight: bold;
  z-index: 2;
}

@media (min-width: 768px) {
  .facility-head-ttl {
    padding: 100px 0 90px;
  }
}

@media (max-width: 767px) {
  .facility-head-ttl {
    padding: calc(120 / 750 * 100vw) 0 calc(200 / 750 * 100vw);
    font-size: calc(32 / 750 * 100vw);
  }
}

.facility-head-ttl::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  margin: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/facility_ttl_mark.png);
}

@media (min-width: 768px) {
  .facility-head-ttl::before {
    padding: 100px 0 90px;
  }
}

@media (max-width: 767px) {
  .facility-head-ttl::before {
    top: calc(60 / 750 * 100vw);
    width: calc(33 / 750 * 100vw);
    height: calc(37 / 750 * 100vw);
  }
}

.facility-head-ttl span {
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  line-height: 1.5;
}

.facility-head-ttl span[data-num="01"] {
  display: block;
  margin: auto;
  margin-bottom: 1em;
  background-image: url(../img/facility_ttl_01.png);
}

@media (max-width: 767px) {
  .facility-head-ttl span[data-num="01"] {
    width: calc(438 / 750 * 100vw);
    height: calc(63.25 / 750 * 100vw);
  }
}

.facility-head-ttl span[data-num="02"] {
  position: relative;
  display: inline-block;
  background-image: url(../img/facility_ttl_02.png);
}

@media (max-width: 767px) {
  .facility-head-ttl span[data-num="02"] {
    top: calc(10 / 750 * 100vw);
    width: calc(100 / 750 * 100vw);
    height: calc(50 / 750 * 100vw);
  }
}

.facility-body {
  position: relative;
  display: block;
  background-color: #ffffff;
}

@media (max-width: 767px) {
  .facility-body {
    top: calc(80 / 750 * 100vw);
  }
}

/* ==========================================================
  footer
=====*/
.footer {
  position: relative;
  display: block;
  margin: 0 auto;
  background-color: #ffffff;
  text-align: center;
  z-index: 3;
}

@media (min-width: 768px) {
  .footer {
    width: 375px;
    padding: calc(100px / 2) 0;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: calc(100 / 750 * 100vw) 0;
  }
}

.footer img {
  width: 60%;
  margin: auto;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  height: auto;
}

.swiper-slide .box {
  opacity: .2;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box {
  transition: 1s;
  height: 100%;
}

.swiper-slide-active .box {
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  top: auto;
  bottom: 0;
  --swiper-navigation-color: #3c5a41;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  width: 200px;
  left: 50%;
  margin-left: -100px;
}

.swiper-pagination-bullet-active {
  background: #3c5a41;
}

.swiper-button-next {
  right: 10%;
}

.swiper-button-prev {
  left: 10%;
}

.searchMenu {
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@media (min-width: 768px) {
  .searchMenu {
    width: 96%;
    margin: auto;
    padding-bottom: 5px;
  }
}

.searchMenu.justify-center::-webkit-scrollbar {
  display: none;
}

.searchMenu {
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  outline: none;
}

.searchMenu::-webkit-scrollbar {
  height: 10px;
}

.searchMenu::-webkit-scrollbar-thumb {
  background-color: #c2c2c2;
  border-radius: 9999px;
}

.searchMenu::-webkit-scrollbar-track {
  background-color: #e0e0e0;
  border-radius: 9999px;
}

a {
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  outline: none;
}

@media (min-width: 768px) {
  .searchMenu::-webkit-scrollbar {
    display: block;
  }
}

@media (max-width: 767px) {
  .searchMenu::-webkit-scrollbar {
    display: none;
  }
}
