@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Noto+Sans+JP:wght@400;500;700;900&family=Sawarabi+Mincho&display=swap");
:root {
  --header-color: #fff;
  --header-color-small: #fdf4f5;
  --header-color-sp: #ebeae8;
  --footer-color: #ff0d92;
  /* --footer-color: #ff3399; */
  /* --footer-color:#ffc0cb; */
  --bg-color: #fff;
  --bg-color-content: #fff;
  --header-height: 120px;
  --footer-height: 60px;
  --logo-color: #ff3399;
  --text-color-pink: #ff0d92;
  --text-color-b: #333;
  --text-shadow-color: #666;
  --text-color-white: #fff;
  --footer-text-color: #fff;
  --topicpath-color: #ffedf0;
  /* --topicpath-color: #ececec; */
  --topicpath-color-sp: #fadde2;
  --topicpath-color-divide: #333;
  --line-color: #dadada;
  --h-bg-color: #cac5c0;
  --h-bg-color-sp: #fadde2;
  --caution-color: #ff3399;
  --require-color: #ff3399;
  --inquiry-color: #ff3399;
  --button-color: #ff3366;
  --button-color2: #ff7dce;
  --button-line-color: #ff0d92;
  /* --button-line-color: #ff99cc; */
  --button-text-color: #fff;
  --list-title-color: #fdf4f5;
  --underline-color: #ff0d92;
  /* --underline-color: #ff99cc; */
  --btnline-color: #ff0d92;
  /* --btnline-color: #ff99cc; */
  /* --btnline-color: #FDF4F5; */
  --sidemenu-title-color: #ff0d92;
  /* --sidemenu-title-color: #fa5dae; */
  /* --sidemenu-title-color: #f7638f; */
  --ruledline-color: #ffa6d7;
  /* --ruledline-color: #ff99cc; */
  --ruledline-color-80: rgba(255, 13, 146, 0.8);
  --ruledline-color-50: rgba(255, 13, 146, 0.5);
  /* --ruledline-color: #dadada; */
  --content-topnav-line-color: #ff0d92;
  /* --content-topnav-line-color: #ff99cc; */
}
a {
  text-decoration: none;
  color: var(--text-color);
}
a {
  -webkit-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  word-break: break-all;
}
a:hover {
  opacity: 0.5;
}
a.no-opacity:hover {
  opacity: 1;
}
.content-wrapper {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: content;
}
@media screen and (max-width: 768px) {
  .content-wrapper {
    width: 100%; /***/
  }
  .footer-wrapper {
    padding: 30px 6.25%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
/* ヘッダー */
.logo {
  vertical-align: top;
  text-align: left;
  margin-right: auto;
  margin-left: 3px;
  transition: transform 0.25s, -webkit-transform 0.25s;
}
.logo a,
.logo img {
  vertical-align: top;
}
.logo-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  color: var(--text-color-pink);
  font-size: 11px;
  margin-top: -46px;
  margin-bottom: 21px;
  margin-right: -150px;
  overflow-x: visible;
}
.logo-img {
  margin-left: 3px;
}
@media screen and (max-width: 768px) {
  .logo {
    vertical-align: top;
    margin-top: 3px;
    text-align: left;
    margin-right: auto;
    margin-left: 3px;
  }
  .logo-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    line-height: 1.2;
    margin-top: 1px;
    margin-right: -190px;
    margin-bottom: 3px;
    transform: scale(0.8);
    transform-origin: top left;
  }
  .logo-text-small {
    margin-bottom: 3px;
    transform: scale(0.8);
    transform-origin: top left;
  }
  .logo a {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 113px;
    flex: 0 0 113px;
    margin-right: 16px;
  }
  .logo-img {
    margin-top: 1px;
    width: 113px;
    height: auto;
  }
  .logo-text {
  }
}
/* ヘッダー縮小 */
@media screen and (min-width: 769px) {
  header.small .logo {
    -webkit-animation-name: animation-logo;
    animation-name: animation-logo;
    -webkit-animation-duration: 0.25s;
    animation-duration: 0.25s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
  }
  header.small .menu-wapper {
    -webkit-transform: translateY(-12px);
    -ms-transform: translateY(-12px);
    transform: translateY(-12px);
  }
  header.small {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
    height: 90px;
    background-color: var(--header-color-small);
  }
  header.small .logo-text {
    /*  
    margin-top: -32px;
    margin-bottom: 0;
    */
    display: none;
  }
  header.small .logo-img {
    margin-top: -6px;
    margin-bottom: -10px;
  }
  @-webkit-keyframes animation-logo {
    0% {
      -webkit-transform: scale(1) translateY(0);
      transform: scale(1) translateY(0);
    }
    100% {
      -webkit-transform: scale(0.7) translateY(-1px);
      transform: scale(0.7) translateY(-1px);
      -webkit-transform-origin: top left;
      transform-origin: top left;
    }
  }
  @keyframes animation-logo {
    0% {
      -webkit-transform: scale(1) translateY(0);
      transform: scale(1) translateY(0);
    }
    100% {
      -webkit-transform: scale(0.7) translateY(-1px);
      transform: scale(0.7) translateY(-1px);
      -webkit-transform-origin: top left;
      transform-origin: top left;
    }
  }
}
/* メニュー */
.menu-wapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  transition: transform 0.25s, -webkit-transform 0.25s;
  margin-top: 7px;
}
@media screen and (max-width: 768px) {
  .menu-wapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 0;
  }
}
.top-nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .top-nav-menu {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    bottom: 0;
    right: -250px;
    width: 250px;
    background-color: var(--list-title-color);
    /* background-color: #e2dfdc; */
    /* background-color: #d8d5d2; #dcd9d6 #dedbd8*/
    background-size: 250px;
    height: 100vh;
    padding: 9px 25px 0 25px;
    -webkit-box-shadow: 20px 0 15px -15px #ccc inset;
    box-shadow: 20px 0 15px -15px #ccc inset;
  }
}
.top-nav-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-bottom: 3px;
}
@media screen and (max-width: 768px) {
  .top-nav-menu ul {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 10px;
  }
}
.top-nav-menu li {
  margin-right: 30px;
}
.top-nav-menu li:last-child {
  margin-right: 33px;
}
@media screen and (max-width: 768px) {
  .top-nav-menu li {
    float: none;
    margin: 0;
    /* border-bottom: 1px solid #faf8f6; */
    border-bottom: 1px solid #eae8e6;
    height: auto;
    width: 100%;
    text-align: left;
  }
  .top-nav-menu li:last-child {
    margin-right: 0;
  }
}
.top-nav-menu li a {
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  color: var(--text-color-pink);
  line-height: 24px;
}
@media screen and (max-width: 768px) {
  .top-nav-menu li a {
    padding: 7px 12px 7px 15px;
  }
}
@media screen and (max-width: 768px) {
  .top-nav-menu ul li {
    margin-right: 2vw;
  }
}
/* 申し込み */
.contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-right: 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 34px;
    /* margin-right: 27px; */
    padding-top: 2px;
    padding-bottom: 4px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.contact li {
  margin-right: 9px;
  /* margin-right: 20px; */
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 10px;
}
.contact li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .contact li.li-tel {
    margin-right: 15px;
    /* margin-right: 19px; */
  }
  .contact li.li-tel img {
    width: 17px;
    margin: 0 auto;
  }
}
/* アイコンボタン */
@media screen and (max-width: 768px) {
  .contact li {
    margin-right: 21px;
  }
  .icon-link {
    display: block;
    padding: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0;
  }
  .icon-link img {
    display: block;
    margin: 0 auto;
    height: 17px;
    width: auto;
  }
  .icon-link .icon-text {
    display: block;
    width: auto;
    font-weight: bold;
    color: var(--text-color-pink);
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    white-space: nowrap;
  }
}
.mail a {
  color: var(--button-text-color);
  background-color: var(--button-color);
  font-size: 10px;
}
.mail2 a {
  color: var(--button-text-color);
  background-color: #ff97b1;
  font-size: 10px;
}
.contact li.tel {
  color: var(--text-color-pink);
  font-size: 12px;
  font-weight: 900;
}
.contact li.tel a {
  padding: 0 22px 0 15px;
}
.contact li.tel img {
  vertical-align: middle;
  margin-right: 3px;
  margin-top: -1px;
}
.contact .tel.view-sp {
  display: none;
}
/* ハンバーガーボタン */
.btn-menu {
  display: none;
}
.close-btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .header-wrapper .btn-menu {
    position: fixed;
    /* position: absolute; */
    display: block;
    right: 25px;
    /* right: 20px; */
    top: 19px;
    /* top: 13px; */
    background-color: rgba(255, 255, 255, 0.5);
  }
  .btn-menu {
    display: block;
    border: none;
    height: 24px;
    width: 26px;
    z-index: 2;
    outline: none;
    cursor: pointer;
    padding: 10px;
    transition: opacity 0.5s;
  }
  .btn-menu:hover {
    opacity: 0.5;
    transition: opacity 0.5s;
  }
  .btn-line {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 19px;
    height: 2px;
    background-color: var(--text-color-pink);
    -webkit-transition: inherit;
    -o-transition: inherit;
    transition: inherit;
  }
  .btn-line::before,
  .btn-line::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-color: inherit;
    -webkit-transition: inherit;
    -o-transition: inherit;
    transition: inherit;
  }
  .btn-line::before {
    top: -6px;
  }
  .btn-line::after {
    top: 6px;
  }
  .btn-label {
    font-size: 0.1em;
    color: transparent;
  }
  /* .btn-line .icon-text {
    position: absolute;
    bottom: -27px;
    bottom: -29px;
    left: 50%;
    -webkit-transform: translateX(-50%) scale(0.9);
    -ms-transform: translateX(-50%) scale(0.9);
    transform: translateX(-50%) scale(0.9);
    color: var(--text-color-pink);
    font-size: 10px;
    font-weight: bold;
    width: 40px;
    height: auto;
    background-color: rgba(255, 255, 255, 0.5);
  } */
  .btn-menu .icon-text {
    position: absolute;
    display: block;
    width: 20px;
    top: -6px;
    left: 0;
    font-size: 10px;
    line-height: 1;
    transform: scale(0.5);
    color: transparent !important;
    z-index: -1;
  }
  .close-btn {
    position: absolute;
    display: block;
    right: 20px;
    top: 13px;
    border: none;
    height: 24px;
    width: 26px;
    z-index: 2;
    outline: none;
    cursor: pointer;
    padding: 10px;
    transition: opacity 0.5s;
  }
  .close-btn:hover {
    opacity: 0.5;
    transition: opacity 0.5s;
  }
  .close-line {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 19px;
    height: 2px;
    transition: unset;
  }
  .close-line::before,
  .close-line::after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    width: inherit;
    height: inherit;
    background-color: var(--text-color-pink);
    -webkit-transition: inherit;
    -o-transition: inherit;
    transition: inherit;
  }
  .close-line::before {
    transform: rotate(45deg) scale(0.8);
  }
  .close-line::after {
    transform: rotate(-45deg) scale(0.8);
  }
  .close-line .close-text {
    position: absolute;
    bottom: -23px;
    /* bottom: -29px; */
    left: 50%;
    -webkit-transform: translateX(-50%) scale(0.8);
    -ms-transform: translateX(-50%) scale(0.8);
    transform: translateX(-50%) scale(0.8);
    color: var(--text-color-pink);
    font-size: 10px;
    font-weight: bold;
    width: 40px;
    height: auto;
    transition: unset;
  }
}
/* トップメニュー */
@media screen and (max-width: 768px) {
  /* メニュー閉じる用 */
  #sp-back {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    display: none;
  }
}
/* フッター上 */
.footer-top {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: footer-top;
  width: 100%;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .footer-top {
    width: 100%; /***/
    padding: 0;
    margin-top: 0;
  }
}
.footer-top-wrapper {
  width: 980px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .footer-top-wrapper {
    width: 100%; /***/
  }
}
/* PAGE TOP */
.to-top {
  position: fixed;
  bottom: 50px;
  right: 0;
  text-align: right;
  padding: 5px 5px 5px 0;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  background-color: rgba(255, 255, 255, 0.5);
  transition: bottom 0.5s;
}
.to-top.bottom {
  bottom: 105px;
}
.to-top .to-top-wrapper {
  display: block;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transform-origin: center right;
  -ms-transform-origin: center right;
  transform-origin: center right;
  font-size: 10px;
  font-weight: bold;
  width: fit-content;
  color: var(--text-color-pink);
}
.to-top-icon {
  display: inline-block;
  padding-left: 5px;
  margin-bottom: -7px;
}
@media screen and (min-width: 1001px) {
  .to-top {
    margin-right: calc(((100vw - 980px) / 2) - 10px);
  }
}
@media screen and (max-width: 1000px) {
  .to-top {
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .to-top.bottom {
    bottom: 80px;
  }
  .to-top.contact {
    bottom: 25px;
  }
  .to-top {
    bottom: 65px;
    right: 10px;
    margin-right: 0;
  }
}

/* フッター上 */
.footer-upon {
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  border-top: 1px solid var(--ruledline-color);
  padding: 16.25px 0;
  width: 100%; /* 修正 */
}
@media screen and (max-width: 768px) {
  .footer-upon {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    place-items: center center;
    padding: 0;
    width: 100%; /* 修正 */
  }
}
.bottom-nav-menu1 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bottom-nav-menu1 li {
  margin-right: 30px;
}
.bottom-nav-menu1 li a {
  display: inline-block;
  font-size: 11px;
  color: var(--text-color-pink);
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .bottom-nav-menu1 {
    width: 100%;
  }
  .bottom-nav-menu1 ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    padding: 12px 0;
    margin: auto;
    border-bottom: 1px solid var(--ruledline-color);
  }
  .bottom-nav-menu1 li {
    border-right: 1px solid var(--topicpath-color);
    text-align: center;
    margin: 0;
    padding: 0 10px;
  }
  .bottom-nav-menu1 li:last-child {
    border-right: none;
  }
}
@media screen and (max-width: 390px) {
  .bottom-nav-menu1 ul {
    width: 111%;
    transform: scale(0.9);
    transform-origin: left;
    /* margin-right: -20%; */
  }
}
@media screen and (max-width: 360px) {
  .bottom-nav-menu1 li {
    padding: 0 5px;
  }
}
.address-text {
  align-self: center;
  font-size: 10px;
  color: var(--text-color-pink);
  line-height: 1.6;
  margin-left: auto;
  /* margin-top: -2px;
  margin-bottom: -2px; */
  /* margin-top: -9px;
  margin-bottom: -0.5rem; */
}
@media screen and (max-width: 768px) {
  .address-text {
    font-size: 10px;
    line-height: 1.6;
    padding-top: 10px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
  }
}
/* ハンバーガーボタン */
.btn-f_menu {
  display: none;
}
@media screen and (max-width: 768px) {
  .btn-f_menu {
    display: block;
    height: 47px;
    width: auto;
    transition: transform 0.25s, -webkit-transform 0.25s;
  }
  .btn-f_menu img {
    max-width: unset;
  }
  .btn-f_menu.open img {
    margin-left: -47px;
  }
}
@media screen and (max-width: 768px) {
  .btn-wrapper {
    display: block;
    width: 47px;
    height: 47px;
    overflow: hidden;
    margin: 0 auto;
    cursor: pointer;
    position: relative;
  }
}
/* スマホ用問い合わせ */
@media screen and (max-width: 768px) {
  .bottom-contact ul {
    text-align: center;
    vertical-align: top;
  }
  .bottom-contact li {
    display: inline-block;
    color: var(--text-color-pink);
    font-size: 10px;
    margin: 13px 7px 0 7px;
    text-align: center;
    vertical-align: top;
  }
  .bottom-contact li a img {
    height: 19px;
    width: auto;
  }
  .bottom-contact .icon-text {
    color: var(--text-color-pink);
    font-weight: normal;
  }
}
/* フッター */
footer {
  -ms-grid-row: 4;
  -ms-grid-column: 1;
  grid-area: footer;
  background-color: var(--footer-color);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .content-wrapper {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .footer-top {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  footer {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
}
@media screen and (max-width: 768px) {
  footer {
    background-color: unset;
  }
}
.footer-wrapper {
  width: 980px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8.3px 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer-wrapper {
    width: 100%; /***/
    padding: 0 0 10px 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
/* フッター3番目 */
.bottom-nav-menu2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .bottom-nav-menu2 {
    margin: 0 auto;
  }
}
.bottom-nav-menu2 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bottom-nav-menu2 li {
  margin-right: 30px;
}
.bottom-nav-menu2 li a {
  display: inline-block;
  font-size: 11px;
  color: var(--footer-text-color);
}
@media screen and (max-width: 979px) {
  .bottom-nav-menu2 ul li {
    margin-right: 2vw;
  }
}
.copyright {
  display: block;
  font-size: 10px;
  color: var(--footer-text-color);
  -webkit-transform-origin: center right;
  -ms-transform-origin: center right;
  transform-origin: center right;
  -webkit-transform: scale(0.75);
  -ms-transform: scale(0.75);
  transform: scale(0.75);
}
@media screen and (max-width: 768px) {
  .copyright {
    margin: 0 auto;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    color: var(--text-color-pink);
  }
}
/* スマホメニュー */
@media screen and (min-width: 769px) {
  .sp-nav-menu {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .sp-nav-menu {
    /* display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end; */
    /*  */
    display: unset;
    position: fixed;
    z-index: 2000;
    top: 0;
    bottom: 0;
    /* right: 0; */
    right: -250px;
    width: 250px;
    background-color: var(--list-title-color);
    /* background-color: #e2dfdc; */
    /* background-color: #d8d5d2; #dcd9d6 #dedbd8*/
    background-size: 250px;
    height: 100vh;
    padding: 9px 25px 0 25px;
    -webkit-box-shadow: 20px 0 15px -15px #ccc inset;
    box-shadow: 20px 0 15px -15px #ccc inset;
    transition: transform 0.25s, -webkit-transform 0.25s;
    overflow-y: auto;
  }
  .sp-nav-menu.open {
    -webkit-transform: translateX(-250px);
    -ms-transform: translateX(-250px);
    transform: translateX(-250px);
  }
  .sp-nav-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding-bottom: 3px;
    /*  */
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 10px;
  }
  .sp-nav-menu li {
    margin-right: 23px;
    /*  */
    float: none;
    margin: 0;
    /* border-bottom: 1px solid #faf8f6; */
    border-bottom: 1px solid #eae8e6;
    height: auto;
    width: 100%;
    text-align: left;
  }
  .sp-nav-menu li:last-child {
    margin-right: 33px;
    /*  */
    margin-right: 0;
  }
  .sp-nav-menu li a {
    display: inline-block;
    font-size: 10px;
    font-weight: bold;
    color: var(--text-color-pink);
    line-height: 25px;
    /*  */
    padding: 8px 12px 7px 15px;
  }
  .sp-nav-menu ul li {
    /*  */
    margin-right: 2vw;
  }
}
/* ボトムメニュー */
.sp-bottom-nav {
  display: none;
}
.btn-arrow {
  display: block;
  color: var(--text-color-pink);
  background: #fff;
  text-decoration: none;
  border-radius: 3px;
  text-align: center;
}
.btn-arrow:before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin: -1px 2px 0 0;
  background: url("../icon/icon-right.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
}
@media screen and (min-width: 769px) {
  .btn-arrow {
    padding: 0.5em 2em;
    margin: 10px auto;
    font-size: 20px;
    display: inline-block;
  }
  .btn-arrow:before {
    margin: -3px 5px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .sp-bottom-nav {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    display: block;
    height: 60px;
    width: 100%;
    padding: 15px 8px;
    background-color: var(--text-color-pink);
    z-index: 100;
  }
  .sp-bottom-nav ul {
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    height: 100%;
    width: 100%;
  }
  .sp-bottom-nav li {
    flex-grow: 1;
    flex-basis: 1;
  }
  .sp-bottom-nav li {
    margin: 0 2px;
  }
  .sp-bottom-nav-item {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding: 3px 2px 2px;
    background-color: #fff;
    color: var(--text-color-pink);
    font-size: 12px;
  }
  .sp-bottom-nav-item.pink {
    background-color: #fccfe8;
  }
}
@media screen and (max-width: 340px) {
  .sp-bottom-nav-item {
    font-size: 10px;
  }
}
