@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: #666;
  --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: #fb82cd;
  /* --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: #fb82cd;
  /* --ruledline-color-50: rgba(255, 13, 146, 0.5); */
  /* --ruledline-color: #dadada; */
  --content-topnav-line-color: #ff0d92;
  /* --content-topnav-line-color: #ff99cc; */
}
html {
  /* -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth; */
}
html,
body {
  width: 100%;
  min-height: 100vh;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
  background-color: var(--bg-color);
  -webkit-text-size-adjust: 100%;
}

@media screen and (max-width: 680px) {
  body {
    background-color: var(--bg-color);
  }
}
address,
body,
dd,
div,
dt,
h1,
h2,
h3,
h4,
h5,
h6,
input,
li,
option,
p,
pre,
td,
textarea,
th {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-style: normal;
  color: var(--text-color);
  line-height: 2.291;
  line-height: 1.91;
  /* line-height: 1.64; */
}
/* .kiyaku p,
.kiyaku div {
  font-size: 15px;
} */

@media screen and (max-width: 680px) {
  address,
  body,
  dd,
  div,
  dt,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  input,
  li,
  option,
  p,
  pre,
  td,
  textarea,
  th {
    font-size: 12px;
    line-height: 2;
  }
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: var(--text-color);
}
a {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  word-break: break-all;
}
a:hover {
  opacity: 0.5;
}
a.no-opacity:hover {
  opacity: 1;
}
img {
  max-width: 100%;
  height: auto;
}
br {
  line-height: initial !important;
}
/* レイアウト */
#all {
  height: 100%;
  min-height: 100vh;
  display: -ms-grid;
  display: grid;
  place-items: start center;
  -ms-grid-rows: var(--header-height) 1fr;
  -ms-grid-columns: 1fr;
  grid-template:
    "header " var(--header-height)
    "wrapper" 1fr
    / 1fr;
}
@media screen and (max-width: 680px) {
  #all {
    position: relative;
    --header-height: 60px;
    -ms-grid-rows: var(--header-height) 1fr;
    -ms-grid-columns: 100%;
    grid-template:
      "header " var(--header-height)
      "wrapper" 1fr
      / 100%; /***/
  }
}
.wrapper {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: wrapper;
  height: 100%;
  display: -ms-grid;
  display: grid;
  place-items: start center;
  -ms-grid-rows: 1fr 0px auto auto;
  -ms-grid-columns: 1fr;
  grid-template:
    "content   " 1fr
    ".         " 0px
    "footer-top" auto
    "footer    " auto
    / 1fr;
}
@media screen and (max-width: 680px) {
  .wrapper {
    --header-height: 60px;
    -ms-grid-rows: 1fr auto auto;
    -ms-grid-columns: 100%;
    grid-template:
      "content   " 1fr
      "footer-top" auto
      "footer    " auto
      / 100%;
  }
}
@media screen and (min-width: 980px) {
  body {
    overflow-x: hidden;
  }
}
@media screen and (max-width: 680px) {
  #all {
    overflow-x: visible;
  }
}
/* 画面スライド */
.wrapper {
  width: 100%;
  transition: transform 0.25s, -webkit-transform 0.25s;
  padding: 0;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 680px) {
  .wrapper {
    /* min-width: 320px; */
  }
  .wrapper.open {
    -webkit-transform: translateX(-250px);
    transform: translateX(-250px);
  }
}
header {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: header;
  /* position: -webkit-sticky;
  position: sticky; */
  display: block;
  /* top: 0;
  left: 0; */
  width: 100%;
  height: var(--header-height);
  background-color: var(--header-color);
  z-index: 10;
  -webkit-transition: background-color 0.25s, -webkit-transform 0.25s;
  transition: background-color 0.25s, -webkit-transform 0.25s;
  transition: transform 0.25s, background-color 0.25s;
  transition: transform 0.25s, background-color 0.25s, -webkit-transform 0.25s;
}
@media screen and (max-width: 680px) {
  .wrapper {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  header {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
}
@media screen and (max-width: 680px) {
  header {
    --header-height: 60px;
    background-color: var(--header-color);
    width: 100%; /***/
  }
  #header.open {
    -webkit-transform: translateX(-250px);
    transform: translateX(-250px);
  }
}
.header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1000px;
  margin: 44px auto 32px auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 680px) {
  .header-wrapper {
    width: 100%; /***/
    height: var(--header-height);
    padding: 0 25px 0 7.5px;
    /* padding: 0 30px 0 7.5px; */
    margin: 0;
  }
}
.content-wrapper {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: content;
}
@media screen and (max-width: 680px) {
  .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: 12px;
  margin-top: -42px;
  margin-bottom: 13px;
  margin-right: -50px;
  overflow-x: visible;
}
.logo-img {
  margin-left: 3px;
}
.logo-text2 {
  display: inline-block;
  vertical-align: bottom;
  margin-left: 5px;
  margin-bottom: -4px;
  color: var(--text-color-pink);
}
@media screen and (max-width: 680px) {
  .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;
    padding: 4px 0 0;
    margin-top: 1px;
    margin-right: -190px;
    margin-bottom: 3px;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transform-origin: top left;
    transform-origin: top left; */
    display: none;
  }
  .logo-text-small {
    margin-bottom: 3px;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transform-origin: top left;
    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: 11px;
    margin-bottom: 8px;
    width: 124px;
    height: auto;
  }
  .logo-text2 {
    margin-bottom: 0;
    font-size: 10px;
  }
}
/* ヘッダー縮小 */
@media screen and (min-width: 681px) {
  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);
    transform: translateY(-12px);
  }
  header.small {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
    height: 90px;
    background-color: var(--header-color-small);
  }
  header.small .logo-text {
    margin-top: -32px;
    margin-bottom: 0;
  }
  header.small .logo-img {
    margin-top: 6px;
    margin-bottom: -10px;
  }
  header.small .logo-text2 {
    margin-bottom: -17px;
  }
  @-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: 680px) {
  .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: 680px) {
  .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: 680px) {
  .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: 23px;
}
.top-nav-menu li:last-child {
  margin-right: 33px;
}
@media screen and (max-width: 680px) {
  .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: 10px;
  font-weight: bold;
  color: var(--text-color-pink);
  line-height: 24px;
}
@media screen and (max-width: 680px) {
  .top-nav-menu li a {
    padding: 7px 12px 7px 15px;
  }
}
@media screen and (max-width: 680px) {
  .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: 680px) {
  .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: 680px) {
  .contact li.li-tel {
    margin-right: 15px;
    /* margin-right: 19px; */
  }
  .contact li.li-tel {
    width: 17px;
    margin: 0 auto;
  }
}
/* アイコンボタン */
@media screen and (max-width: 680px) {
  .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);
    transform: scale(0.9);
    -webkit-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: 680px) {
  .header-wrapper .btn-menu {
    position: fixed;
    /* position: absolute; */
    display: block;
    /* right: 25px; */
    /* top: 19px; */
    /* right: 23px;
    top: 17px; */
    right: 18px;
    top: 11px;
    background-color: rgba(255, 255, 255, 0.5);
  }
  .btn-menu {
    display: block;
    border: none;
    /* height: 24px; */
    height: 28px;
    /* width: 26px; */
    width: 30px;
    z-index: 2;
    outline: none;
    cursor: pointer;
    padding: 10px;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .btn-menu:hover {
    opacity: 0.5;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .btn-line {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    /* width: 19px; */
    width: 24px;
    height: 2px;
    background-color: var(--text-color-pink);
    -webkit-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;
    transition: inherit;
  }
  .btn-line::before {
    /* top: -6px; */
    top: -8px;
  }
  .btn-line::after {
    /* top: 6px; */
    top: 8px;
  }
  .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;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    color: transparent !important;
    z-index: -1;
  }
  .close-btn {
    position: absolute;
    display: block;
    /* right: 20px;
    top: 13px; */
    right: 18px;
    top: 11px;
    border: none;
    /* height: 24px;
    width: 26px; */
    height: 28px;
    width: 30px;
    z-index: 2;
    outline: none;
    cursor: pointer;
    padding: 10px;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .close-btn:hover {
    opacity: 0.5;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .close-line {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    /* width: 19px; */
    width: 24px;
    height: 2px;
    -webkit-transition: unset;
    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;
    transition: inherit;
  }
  .close-line::before {
    -webkit-transform: rotate(45deg) scale(0.8);
    transform: rotate(45deg) scale(0.8);
  }
  .close-line::after {
    -webkit-transform: rotate(-45deg) scale(0.8);
    transform: rotate(-45deg) scale(0.8);
  }
  .close-line .close-text {
    position: absolute;
    bottom: -25px;
    /* bottom: -23px; */
    /* bottom: -29px; */
    left: 50%;
    -webkit-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;
    -webkit-transition: unset;
    transition: unset;
  }
}
/* トップメニュー */
@media screen and (max-width: 680px) {
  /* メニュー閉じる用 */
  #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: 20px;
  /* margin-top: 30px; */
}
@media screen and (max-width: 680px) {
  .footer-top {
    width: 100%; /***/
    padding: 0;
    margin-top: 0;
  }
}
.footer-top-wrapper {
  width: 1000px;
  margin: auto;
}
@media screen and (max-width: 680px) {
  .footer-top-wrapper {
    width: 100%; /***/
  }
}
/* PAGE TOP */
.to-top {
  position: fixed;
  bottom: 20px;
  right: 0;
  text-align: right;
  padding: 5px 0;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  background-color: rgba(255, 255, 255, 0.5);
  transition: bottom 0.5s, opacity 1s;
  opacity: 1;
  z-index: 10;
}
.to-top.hide {
  opacity: 0;
}
.to-top.bottom {
  bottom: 91px;
}
.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));
  }
}
@media screen and (max-width: 1000px) {
  .to-top {
    margin-right: 20px;
  }
}
@media screen and (max-width: 680px) {
  .to-top.bottom {
    bottom: 58px;
  }
  .to-top {
    bottom: 20px;
    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: 27.25px 0;
  width: 100%; /* 修正 */
}
@media screen and (max-width: 680px) {
  .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: 23px;
}
.bottom-nav-menu1 li a {
  display: inline-block;
  font-size: 10px;
  color: var(--text-color-pink);
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 680px) {
  .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%;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transform-origin: left;
    transform-origin: left;
    /* margin-right: -20%; */
  }
}
@media screen and (max-width: 360px) {
  .bottom-nav-menu1 li {
    padding: 0 5px;
  }
}
.address-text {
  font-size: 12px;
  color: var(--text-color-pink);
  line-height: 1.2;
  margin-left: auto;
  margin-top: -2px;
  margin-bottom: -2px;
}
@media screen and (max-width: 680px) {
  .address-text {
    font-size: 12px;
    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: 680px) {
  .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: 680px) {
  .btn-wrapper {
    display: block;
    width: 47px;
    height: 47px;
    overflow: hidden;
    margin: 0 auto;
    cursor: pointer;
    position: relative;
  }
}
/* スマホ用問い合わせ */
@media screen and (max-width: 680px) {
  .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: 680px) {
  .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: 680px) {
  footer {
    background-color: unset;
  }
}
.footer-wrapper {
  width: 980px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8.3px 0;
  justify-content: center;
}
@media screen and (max-width: 680px) {
  .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: 680px) {
  .bottom-nav-menu2 {
    margin: 0 auto;
  }
}
.bottom-nav-menu2 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bottom-nav-menu2 li {
  margin-right: 23px;
}
.bottom-nav-menu2 li a {
  display: inline-block;
  font-size: 9px;
  color: var(--footer-text-color);
}
@media screen and (max-width: 979px) {
  .bottom-nav-menu2 ul li {
    margin-right: 2vw;
  }
}
.copyright {
  display: block;
  font-size: 14px;
  color: var(--footer-text-color);
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: scale(0.75);
  transform: scale(0.75);
}
@media screen and (max-width: 680px) {
  .copyright {
    margin: 0 auto;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    color: var(--text-color-pink);
  }
}
/* スマホメニュー */
@media screen and (min-width: 681px) {
  .sp-nav-menu {
    display: none;
  }
}
@media screen and (max-width: 680px) {
  .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);
    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: 11px;
    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: -3px 2px 0 0;
  background: url("../icon/icon-right.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
}
@media screen and (min-width: 681px) {
  .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: 680px) {
  .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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    height: 100%;
    width: 100%;
  }
  .sp-bottom-nav li {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 1;
    flex-basis: 1;
  }
  .sp-bottom-nav li {
    margin: 0 2px;
  }
  .sp-bottom-nav-item {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: 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;
  }
}

@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: #fb82cd;
  /* --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: #fb82cd;
  /* --ruledline-color-50: rgba(255, 13, 146, 0.5); */
  /* --ruledline-color: #dadada; */
  --content-topnav-line-color: #ff0d92;
  /* --content-topnav-line-color: #ff99cc; */
}
html {
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
html,
body {
  width: 100%;
  min-height: 100vh;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
  background-color: var(--bg-color);
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 680px) {
  body {
    background-color: var(--bg-color);
  }
}
address,
body,
dd,
div,
dt,
h1,
h2,
h3,
h4,
h5,
h6,
input,
li,
option,
p,
pre,
td,
textarea,
th {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  color: var(--text-color);
  line-height: 2;
  /* line-height: 2.2; */
  /* line-height: 2.292; */
  /* line-height: 1.91; */
  /* line-height: 1.64; */
}
body.kiyaku {
  font-size: 15px;
}
@media screen and (max-width: 680px) {
  address,
  body,
  dd,
  div,
  dt,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  input,
  li,
  option,
  p,
  pre,
  td,
  textarea,
  th {
    font-size: 14px;
    line-height: 2;
  }
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: var(--text-color);
}
a {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  word-break: break-all;
}
a:hover {
  opacity: 0.5;
}
a.no-opacity:hover {
  opacity: 1;
}
img {
  max-width: 100%;
  height: auto;
}
br {
  line-height: initial !important;
}
/* レイアウト */
#all {
  height: 100%;
  min-height: 100vh;
  display: -ms-grid;
  display: grid;
  place-items: start center;
  -ms-grid-rows: var(--header-height) 1fr;
  -ms-grid-columns: 1fr;
  grid-template:
    "header " var(--header-height)
    "wrapper" 1fr
    / 1fr;
}
@media screen and (max-width: 680px) {
  #all {
    position: relative;
    --header-height: 60px;
    -ms-grid-rows: var(--header-height) 1fr;
    -ms-grid-columns: 100%;
    grid-template:
      "header " var(--header-height)
      "wrapper" 1fr
      / 100%; /***/
  }
}
.wrapper {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: wrapper;
  height: 100%;
  display: -ms-grid;
  display: grid;
  place-items: start center;
  -ms-grid-rows: 1fr 0px auto auto;
  -ms-grid-columns: 1fr;
  grid-template:
    "content   " 1fr
    ".         " 0px
    "footer-top" auto
    "footer    " auto
    / 1fr;
}
@media screen and (max-width: 680px) {
  .wrapper {
    --header-height: 60px;
    -ms-grid-rows: 1fr auto auto;
    -ms-grid-columns: 100%;
    grid-template:
      "content   " 1fr
      "footer-top" auto
      "footer    " auto
      / 100%;
  }
}
@media screen and (min-width: 980px) {
  body {
    overflow-x: hidden;
  }
}
@media screen and (max-width: 680px) {
  #all {
    overflow-x: hidden;
  }
}
/* 画面スライド */
.wrapper {
  width: 100%;
  transition: transform 0.25s, -webkit-transform 0.25s;
  padding: 0;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 680px) {
  .wrapper {
    /* min-width: 320px; */
  }
  .wrapper.open {
    -webkit-transform: translateX(-250px);
    transform: translateX(-250px);
  }
}
header {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: header;
  /* position: -webkit-sticky;
  position: sticky; */
  display: block;
  /* top: 0;
  left: 0; */
  width: 100%;
  height: var(--header-height);
  background-color: var(--header-color);
  z-index: 10;
  -webkit-transition: background-color 0.25s, -webkit-transform 0.25s;
  transition: background-color 0.25s, -webkit-transform 0.25s;
  transition: transform 0.25s, background-color 0.25s;
  transition: transform 0.25s, background-color 0.25s, -webkit-transform 0.25s;
}
@media screen and (max-width: 680px) {
  .wrapper {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  header {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
}
@media screen and (max-width: 680px) {
  header {
    --header-height: 60px;
    background-color: var(--header-color);
    width: 100%; /***/
  }
  #header.open {
    -webkit-transform: translateX(-250px);
    transform: translateX(-250px);
  }
}
.header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1000px;
  margin: 44px auto 32px auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 680px) {
  .header-wrapper {
    width: 100%; /***/
    height: var(--header-height);
    padding: 0 25px 0 7.5px;
    /* padding: 0 30px 0 7.5px; */
    margin: 0;
  }
}
.content-wrapper {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: content;
}
@media screen and (max-width: 680px) {
  .content-wrapper {
    width: 100%; /***/
  }
  .footer-wrapper {
    padding: 30px 6.25%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
/* ヘッダー縮小 */
@media screen and (min-width: 681px) {
  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);
    transform: translateY(-12px);
  }
  header.small {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
    height: 90px;
    background-color: var(--header-color-small);
  }
  header.small .logo-text {
    margin-top: -32px;
    margin-bottom: 0;
  }
  header.small .logo-img {
    margin-top: 6px;
    margin-bottom: -10px;
  }
  header.small .logo-text2 {
    margin-bottom: -17px;
  }
  @-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: 680px) {
  .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: 680px) {
  .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: 680px) {
  .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: 23px;
}
.top-nav-menu li:last-child {
  margin-right: 33px;
}
@media screen and (max-width: 680px) {
  .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: 10px;
  font-weight: bold;
  color: var(--text-color-pink);
  line-height: 24px;
}
@media screen and (max-width: 680px) {
  .top-nav-menu li a {
    padding: 7px 12px 7px 15px;
  }
}
@media screen and (max-width: 680px) {
  .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: 680px) {
  .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: 680px) {
  .contact li.li-tel {
    margin-right: 15px;
    /* margin-right: 19px; */
  }
  .contact li.li-tel {
    width: 17px;
    margin: 0 auto;
  }
}
/* アイコンボタン */
@media screen and (max-width: 680px) {
  .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);
    transform: scale(0.9);
    -webkit-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: 680px) {
  .header-wrapper .btn-menu {
    position: fixed;
    /* position: absolute; */
    display: block;
    /* right: 25px; */
    /* top: 19px; */
    /* right: 23px;
    top: 17px; */
    right: 18px;
    top: 13px;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 20;
  }
  .btn-menu {
    display: block;
    border: none;
    /* height: 24px; */
    height: 28px;
    /* width: 26px; */
    width: 30px;
    z-index: 2;
    outline: none;
    cursor: pointer;
    padding: 10px;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .btn-menu:hover {
    opacity: 0.5;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .btn-line {
    position: absolute;
    top: 10px;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    /* width: 19px; */
    width: 28px;
    height: 3px;
    background-color: var(--text-color-pink);
    -webkit-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;
    transition: inherit;
  }
  .btn-line::before {
    /* top: -6px; */
    top: -10px;
  }
  .btn-line::after {
    /* top: 6px; */
    top: 10px;
  }
  .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;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    color: transparent !important;
    z-index: -1;
  }
  .close-btn {
    position: absolute;
    display: block;
    /* right: 20px;
    top: 13px; */
    right: 18px;
    top: 11px;
    border: none;
    /* height: 24px;
    width: 26px; */
    height: 28px;
    width: 30px;
    z-index: 2;
    outline: none;
    cursor: pointer;
    padding: 10px;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .close-btn:hover {
    opacity: 0.5;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .close-line {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    /* width: 19px; */
    width: 24px;
    height: 2px;
    -webkit-transition: unset;
    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;
    transition: inherit;
  }
  .close-line::before {
    -webkit-transform: rotate(45deg) scale(0.8);
    transform: rotate(45deg) scale(0.8);
  }
  .close-line::after {
    -webkit-transform: rotate(-45deg) scale(0.8);
    transform: rotate(-45deg) scale(0.8);
  }
  .close-line .close-text {
    position: absolute;
    bottom: -25px;
    /* bottom: -23px; */
    /* bottom: -29px; */
    left: 50%;
    -webkit-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;
    -webkit-transition: unset;
    transition: unset;
  }
}
/* トップメニュー */
@media screen and (max-width: 680px) {
  /* メニュー閉じる用 */
  #sp-back {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    display: none;
  }
}

.footer-top-wrapper {
  width: 980px;
  margin: auto;
}
@media screen and (max-width: 680px) {
  .footer-top-wrapper {
    width: 100%; /***/
  }
}
/* PAGE TOP */
.to-top {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 55px;
  right: 0;
  background-color: var(--text-color-pink);
  font-size: 14px;
  border-radius: 50%;
  border: 2px solid #fff;
  transition: bottom 0.5s, opacity 1s;
  opacity: 1;
  margin-right: 60px;
}
.to-top a{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50% , -50%);
  padding: 20px;
  margin-top: 2px;
}
.to-top a span{
  display: inline-block;
  content: "";
  width: 14px;
  height: 14px;
  border-right: 4px solid #fff;
  border-top: 4px solid #fff;
  border-radius: 2px;
  transform: rotate(-45deg);
  position: absolute;
  top: 12px;
  right: 10px;
  
}
@media screen and (max-width: 1000px) {
  .to-top {
    margin-right: 20px;
  }
}
@media screen and (max-width: 680px) {
  .to-top.bottom {
    bottom: 58px;
  }
  .to-top {
    bottom: 20px;
    right: 10px;
    margin-right: 0;
  }
}
/* .to-top {
  position: fixed;
  bottom: 50px;
  right: 0;
  text-align: right;
  padding: 5px 14px 5px 0;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  background-color: rgba(255, 255, 255, 0.9);
  transition: bottom 0.5s, opacity 1s;
  opacity: 1;
}
.to-top.hide {
  opacity: 0;
}
.to-top.bottom {
  bottom: 91px;
}
.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: 80px;
  }
}
@media screen and (max-width: 1000px) {
  .to-top {
    margin-right: 20px;
  }
}
@media screen and (max-width: 680px) {
  .to-top.bottom {
    bottom: 58px;
  }
  .to-top {
    bottom: 20px;
    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: 27.25px 0;
  width: 100%; /* 修正 */
}
@media screen and (max-width: 680px) {
  .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: 23px;
}
.bottom-nav-menu1 li a {
  display: inline-block;
  font-size: 10px;
  color: var(--text-color-pink);
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 680px) {
  .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%;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transform-origin: left;
    transform-origin: left;
    /* margin-right: -20%; */
  }
}
@media screen and (max-width: 360px) {
  .bottom-nav-menu1 li {
    padding: 0 5px;
  }
}
.address-text {
  font-size: 12px;
  color: var(--text-color-pink);
  line-height: 1.2;
  margin-left: auto;
  margin-top: -2px;
  margin-bottom: -2px;
}
@media screen and (max-width: 680px) {
  .address-text {
    font-size: 12px;
    line-height: 1.6;
    padding-top: 16px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
  }
}
/* ハンバーガーボタン */
.btn-f_menu {
  display: none;
}
@media screen and (max-width: 680px) {
  .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: 680px) {
  .btn-wrapper {
    display: block;
    width: 47px;
    height: 47px;
    overflow: hidden;
    margin: 0 auto;
    cursor: pointer;
    position: relative;
  }
}
/* スマホ用問い合わせ */
@media screen and (max-width: 680px) {
  .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: 680px) {
  .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: 680px) {
  footer {
    background-color: unset;
  }
}
.footer-wrapper {
  width: 980px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8.3px 0;
  justify-content: center;
}
@media screen and (max-width: 680px) {
  .footer-wrapper {
    width: 100%; /***/
    padding: 0 0 12px 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: 680px) {
  .bottom-nav-menu2 {
    margin: 0 auto;
  }
}
.bottom-nav-menu2 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bottom-nav-menu2 li {
  margin-right: 23px;
}
.bottom-nav-menu2 li a {
  display: inline-block;
  font-size: 9px;
  color: var(--footer-text-color);
}
@media screen and (max-width: 979px) {
  .bottom-nav-menu2 ul li {
    margin-right: 2vw;
  }
}
.copyright {
  display: block;
  font-size: 14px;
  color: var(--footer-text-color);
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: scale(0.75);
  transform: scale(0.75);
}
@media screen and (max-width: 680px) {
  .copyright {
    margin: 0 auto;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    color: var(--text-color-pink);
  }
}
/* スマホメニュー */
@media screen and (min-width: 681px) {
  .sp-nav-menu {
    display: none;
  }
}
@media screen and (max-width: 680px) {
  .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 #f8daea inset;
    box-shadow: 20px 0 15px -15px #f8daea inset;
    transition: transform 0.25s, -webkit-transform 0.25s;
    overflow-y: auto;
  }
  .sp-nav-menu.open {
    -webkit-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: 11px;
    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: -3px 2px 0 0;
  background: url("../icon/icon-right.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
}
@media screen and (min-width: 681px) {
  .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: 680px) {
  .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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    height: 100%;
    width: 100%;
  }
  .sp-bottom-nav li {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 1;
    flex-basis: 1;
  }
  .sp-bottom-nav li {
    margin: 0 2px;
  }
  .sp-bottom-nav-item {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: 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;
  }
}

/* /account/continuation.htmlと/account/withdrawal.htmlと/corp/bank.html​のcss */
.line_link {
  text-decoration: underline;
}

/* 
/post/contactus.htmlのcss */
.center-case {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.center-case-item {
  width: 33%;
}

/* サイドメニューのバナー */

.banner-link {
  margin-top: 10%;
}

/* /post/atfirst.htmlのcss */
.calendar-text {
  margin-bottom: 25px;
}

.topic-path2 {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: path;
  width: 100%;
  max-width: 100%;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 26px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 10px;
  background-color: var(--topicpath-color);
  line-height: 25px;
  color: var(--logo-color);
  zoom: 1;
}

.topic-path-pc2 {
  grid-area: path;
  width: 100%;
  max-width: 100%;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.wrapper2 {
  width: 100%;
  transition: transform 0.25s, -webkit-transform 0.25s;
  padding: 0;
  margin: 0 auto;
  text-align: left;
}

.wrapper2 {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: wrapper;
  height: 100%;
  display: -ms-grid;
  display: grid;
  place-items: start center;
  -ms-grid-rows: 1fr 9px auto auto;
  -ms-grid-columns: 1fr;
  grid-template:
    "content " 1fr
    ". " 9px
    "footer-top" auto
    "footer " auto / 1fr;
}

.content-wrapper2 {
  height: 100%;
  display: -ms-grid;
  display: grid;
  place-items: start start;
  -ms-grid-rows: auto 4px auto 29px 1fr;
  -ms-grid-columns: auto 980px auto;
  grid-template:
    ". path . " auto
    ". title . " auto
    ". . . " 29px
    ". main . " 1fr
    ". . . " 8px / auto 980px auto;
}

.content-wrapper2 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: content;
}

#header2 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: header;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--header-color);
  z-index: 10;
  -webkit-transition: background-color 0.25s, -webkit-transform 0.25s;
  transition: background-color 0.25s, -webkit-transform 0.25s;
  -o-transition: transform 0.25s, background-color 0.25s;
  transition: transform 0.25s, background-color 0.25s;
  transition: transform 0.25s, background-color 0.25s, -webkit-transform 0.25s;
}

@media screen and (max-width: 680px) {
  .view-pc-flex {
    display: none !important;
  }
}

.checkbox-flex {
  display: flex;
}

.linkArrow {
  width: 80%;
}

.linkArrow2 {
  width: fit-content;
  margin-bottom: 1.8rem;
  margin-top: 2rem;
}
@media screen and (max-width: 680px) {
  .linkArrow2 {
    width: fit-content;
    margin-bottom: 0;
    margin-top: 1.4rem;
  }
}

.linkArrow3 {
  width: fit-content;
}

.friend-flex {
  display: flex;
  /* gap: 10px; */
  width: 100%;
  flex-flow: row wrap;
}

.main2 {
  overflow: visible !important;
}

/* .article-top-title3-line{
  width: 25%;
  border: 1px solid #ffa6d7;
} */

.article-top-title3-line2 {
  width: 40%;
  border: 1px solid #ffa6d7;
}

.top_content_text2 {
  margin-bottom: 2rem;
}

.flex-text {
  /* width: 80%; */
  width: 65%;
}
.flex-img {
  /* width: 20%;   */
  width: 35%;
}
.flex-img img {
  width: 100%;
}

@media screen and (max-width: 680px) {
  .friend-flex .flex-text {
    width: 100%;
  }
  .friend-flex img {
    width: 60%;
  }
  .flex-img {
    width: 100%;
    text-align: center;
  }
}

.flex-text img {
  width: 28%;
}

/* .friend-flex img{
  zoom:0.8;
} */

/* サイドバナーのメディアクエリ */
@media screen and (max-width: 680px) {
  .banner-link {
    margin-bottom: 3rem;
  }

  .aside {
    position: absolute;

    display: flex;
    bottom: 10px;
    justify-content: center;
  }

  .to-top.bottom {
    transform: translateY(50px);
  }
}
