@charset "UTF-8";
/*
---------------------------------------------

    base settings

*/
:root {
  font-size: 62.5%;
  --s-2: calc(var(--s1) / 2);
  --s1: 0.8rem;
  --s2: calc(var(--s1) * 2);
  --s3: calc(var(--s1) * 3);
  --s4: calc(var(--s1) * 4);
  --s5: calc(var(--s1) * 5);
  --s6: calc(var(--s1) * 6);
  --s7: calc(var(--s1) * 7);
  --s8: calc(var(--s1) * 8);
  --s9: calc(var(--s1) * 9);
  --s10: calc(var(--s1) * 10);
  --s11: calc(var(--s1) * 11);
  --s12: calc(var(--s1) * 12);
}

@media screen and (max-width: 1000px) {
  :root {
    font-size: 1vw;
  }
}
body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #343434;
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  clear: both;
}

ul,
ol,
dl,
p,
img,
form,
dt,
dd,
figure {
  margin: 0;
  padding: 0;
  border: 0;
}

li {
  list-style: none;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  font-size: 1.6rem;
  font-family: "Noto Serif JP", serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
img.img-height {
  width: auto;
  max-width: inherit;
  height: 100%;
}

a {
  color: #343434;
  transition: opacity 0.6s ease, color 0.6s ease;
  outline: none;
}

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

@media (hover: hover) {
  a:hover {
    color: #343434;
    text-decoration: none;
  }
}
p {
  line-height: 2;
}
p + p {
  margin-top: 2em;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
  font-weight: normal;
}

small {
  font-size: 80%;
}

* {
  box-sizing: border-box;
}

.sp_br {
  display: none;
}

.pc_br {
  display: inline;
}

@media screen and (min-width: 768px) {
  .for-sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .for-pc {
    display: none;
  }
}
/*
---------------------------------------------

animation

*/
@keyframes tabAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*
---------------------------------------------

	mainvisual

*/
@keyframes loop01 {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
@keyframes wave {
  0% {
    margin-left: 0;
  }
  100% {
    margin-left: -1600px;
  }
}
/*  inView */
.slideLeft {
  opacity: 0;
  transform: translate(-40px, 0);
  transition: all 1s ease;
}

.slideLeft.animated {
  opacity: 1;
  transform: translate(0, 0);
}

.slideRight {
  opacity: 0;
  transform: translate(40px, 0);
  transition: all 1s ease;
}

.slideRight.animated {
  opacity: 1;
  transform: translate(0, 0);
}

.fadeIn {
  opacity: 0;
  transition: all 1.5s ease;
}

.fadeIn.animated {
  opacity: 1;
}

.fadeInUp {
  opacity: 0;
  transform: translate(0, 30px);
  transition: all 1.5s ease;
}

.fadeInUp.animated {
  opacity: 1;
  transform: translate(0, 0);
}

.fadeInUpF {
  opacity: 0;
  transform: translate(0, 30px);
  transition: all 0.4s ease;
}

.fadeInUpF.animated {
  opacity: 1;
  transform: translate(0, 0);
}

.fadeZoomUp {
  opacity: 0;
  transform: scale(0, 0);
  transition: all 0.8s ease;
}

.fadeZoomUp.animated {
  opacity: 1;
  transform: scale(1, 1);
}

.fadeInDeg {
  opacity: 0;
  transform: translate(-10%, 3rem) rotate(-15deg);
  transition: all 0.8s ease;
}

.fadeInDeg.animated {
  opacity: 1;
  transform: translate(0, 0);
}

/*
---------------------------------------------

    layout center

*/
.l-center {
  max-width: 100rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--s3);
  padding-left: var(--s3);
  box-sizing: content-box;
}

/*
---------------------------------------------

    layout stack

*/
.l-stack {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 2rem;
}
.l-stack > * {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/*
---------------------------------------------

    layout cluster

*/
.l-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
}

/*
---------------------------------------------

    layout grid

*/
.l-grid {
  --minimum: calc((100% - var(--s10)) / 2);
  display: grid;
  grid-gap: var(--s10);
}

.l-grid-three {
  --minimum: calc((100% - var(--s3) * 2) / 3);
  display: grid;
  grid-gap: var(--s5) var(--s3);
}

@supports (width: min(var(--minimum), 100%)) {
  .l-grid,
.l-grid-three {
    grid-template-columns: repeat(auto-fill, minmax(min(var(--minimum), 100%), 1fr));
  }
}
/*
---------------------------------------------

    layout sidebar

*/
.l-sidebar {
  display: flex;
  gap: var(--s5);
}
.l-sidebar__side {
  width: 24rem;
}
.l-sidebar__main {
  flex: 1;
}

/*
---------------------------------------------

    layout column

*/
.l-column {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s8);
}
.l-column__side {
  width: 46rem;
}
.l-column__side02 {
  width: 50rem;
}
.l-column__side03 {
  width: 20rem;
}
.l-column__side04 {
  width: 30rem;
}
.l-column__main {
  flex: 1;
}
.l-column--row-reverse {
  flex-direction: row-reverse;
}
.l-column--align-center {
  align-items: center;
}

/*
---------------------------------------------

    layout grid areas

*/
.l-grid-areas {
  display: grid;
  grid-template-areas: "img catch" "img text";
  grid-template-columns: 40rem 1fr;
  grid-template-rows: auto 1fr;
  grid-gap: var(--s2) var(--s5);
}
.l-grid-areas__cell-01 {
  grid-area: catch;
}
.l-grid-areas__cell-02 {
  grid-area: img;
}
.l-grid-areas__cell-03 {
  grid-area: text;
}
.l-grid-areas--row-reverse {
  grid-template-areas: "catch img" "text img";
  grid-template-columns: 1fr 40rem;
}
.l-grid-areas--align-center {
  grid-template-rows: auto auto;
}
.l-grid-areas--align-center .l-grid-areas__cell-01 {
  place-self: end start;
}
.l-grid-areas--align-center .l-grid-areas__cell-02 {
  place-self: center;
}
.l-grid-areas--align-center .l-grid-areas__cell-03 {
  place-self: start;
}

/*
---------------------------------------------

    layout scroll x

*/
.l-scroll-x {
  width: 100%;
  padding-bottom: var(--s1);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-color: #ddd transparent;
  scrollbar-width: 0.6rem;
}
.l-scroll-x::-webkit-scrollbar {
  height: 0.6rem;
}
.l-scroll-x::-webkit-scrollbar-track {
  border-radius: 0.3rem;
  background: #eee;
}
.l-scroll-x::-webkit-scrollbar-thumb {
  border-radius: 0.3rem;
  background: #ddd;
}

/*
---------------------------------------------

  header

*/
.header-area__name {
  font-size: 1.5rem;
  position: absolute;
  left: var(--s2);
  top: 1.2rem;
  z-index: 1;
}
.header-area__name a {
  text-decoration: none;
}

@media (hover: hover) {
  .header-area__name a:hover {
    opacity: 0.7;
  }
}
.main-area {
  overflow: clip;
}

/*
---------------------------------------------

    MV

*/
.mainvisual {
  padding: var(--s1) 0 0;
  position: relative;
  background: linear-gradient(130deg, #f1d9da 40%, #b7bce1 100%);
  z-index: 0;
  overflow: hidden;
}
.mainvisual-inner {
  padding: var(--s12) 0;
  display: flex;
  align-items: center;
}
.mainvisual-logo {
  width: 48rem;
}
.mainvisual-title {
  flex: 1;
  padding-left: var(--s12);
}
.mainvisual-lead {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.8;
}
.mainvisual-bg {
  width: 100%;
  height: 43.3rem;
  overflow: hidden;
  pointer-events: none;
}
.mainvisual-bg__column {
  width: calc(168.8rem * 2);
  height: 100%;
  background: url(img/mv-slider.png) repeat-x left top/auto 100%;
  animation: loop01 100s linear infinite;
}

.wave {
  background: url(img/wave.svg) repeat-x center bottom/1600px 100%;
  position: absolute;
  bottom: 0;
  width: 3200px;
  height: 30px;
  animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
  transform: translate3d(0, 0, 0);
}
.wave--pink {
  background: url(img/wave-pink.svg) repeat-x center bottom/1600px 100%;
}
.wave--pink02 {
  background: url(img/wave-pink2.svg) repeat-x center bottom/1600px 100%;
}
.wave--pink03 {
  background: url(img/wave-pink3.svg) repeat-x center bottom/1600px 100%;
}
.wave--blue {
  background: url(img/wave-blue.svg) repeat-x center bottom/1600px 100%;
}
.wave--blue02 {
  background: url(img/wave-blue2.svg) repeat-x center bottom/1600px 100%;
}

/*
---------------------------------------------

    list

*/
.main-area .subList,
.main-area ul:not([class]) {
  margin: var(--s6) 0;
}
.main-area .subList li,
.main-area ul:not([class]) li {
  padding: 0 0 0 1.2em;
  font-size: 100%;
  line-height: 1.5;
  position: relative;
}
.main-area .subList li::before,
.main-area ul:not([class]) li::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: #f8ecec;
  border-radius: 10rem;
  position: absolute;
  top: 0.4em;
  left: 0;
}
.main-area .subList li + li,
.main-area ul:not([class]) li + li {
  margin-top: 1em;
}
.main-area ol:not([class]) {
  margin: var(--s6) 0;
  counter-reset: number;
}
.main-area ol:not([class]) li {
  padding: 0 0 0 2em;
  font-size: 100%;
  line-height: 1.5;
  position: relative;
  counter-increment: number;
}
.main-area ol:not([class]) li::before {
  content: counter(number);
  width: 1.6em;
  height: 1.6em;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}
.main-area ol:not([class]) li + li {
  margin-top: 1em;
}

/*
---------------------------------------------

    btn

*/
.btn-internal {
  margin: var(--s5) auto;
  position: relative;
}
.btn-internal a {
  width: fit-content;
  min-height: var(--s8);
  height: 100%;
  margin: 0 auto;
  padding: 1rem var(--s8);
  background: #e8c0c1;
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  transition: background-position 0.4s, opacity 0.4s;
}
.btn-internal--white a {
  background: #fff;
  color: #d3658d;
}

@media (hover: hover) {
  .btn-internal a:hover {
    background-position: center right var(--s2);
    opacity: 0.7;
  }
}
.btn-web {
  margin: var(--s5) auto;
  position: relative;
}
.btn-web a {
  width: 40rem;
  min-height: var(--s9);
  height: 100%;
  margin: 0 auto;
  padding: 1.4rem var(--s8);
  background: #f9d99c;
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  transition: background-position 0.4s, opacity 0.4s;
}

@media (hover: hover) {
  .btn-web a:hover {
    background-position: center right var(--s2);
    opacity: 0.7;
  }
}
.btn-more {
  width: 100%;
  margin: var(--s2) auto;
  text-align: right;
}
.btn-more a {
  margin: 0;
  padding: var(--s1) 0 var(--s1) var(--s9);
  display: inline-block;
  font-size: 1.5rem;
  color: #5868c4;
  line-height: 1.5;
  text-decoration: none;
  position: relative;
  transition: transform 0.3s, opacity 0.3s;
}
.btn-more a:before {
  content: "";
  width: var(--s8);
  height: 1px;
  background: #5868c4;
  position: absolute;
  left: 0;
  top: 50%;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: right center;
}
.btn-more--pink a {
  color: #d3658d;
}
.btn-more--pink a:before {
  background: #d3658d;
}

@media (hover: hover) {
  .btn-more a:hover {
    transform: translateX(-1rem);
  }
  .btn-more a:hover:before {
    transform: scale(0, 1);
    transform-origin: right center;
  }
}
.btn-tel {
  display: none;
}

.btn-column {
  margin: var(--s5) 0;
  display: flex;
  justify-content: center;
  gap: var(--s8);
}
.btn-column .btn-web,
.btn-column .btn-internal {
  margin: 0;
}
.btn-column--top {
  margin: 0 auto;
  padding: var(--s2) 0 var(--s7);
}

/*
---------------------------------------------

    table

*/
table {
  margin: var(--s6) auto;
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #707070;
  border-left: 1px solid #707070;
}

th,
td {
  padding: var(--s2);
  border-right: solid 1px #707070;
  border-bottom: solid 1px #707070;
  line-height: 1.5;
  word-break: break-all;
}

th {
  background: #ccc;
}

tbody th {
  background: #efefef;
}

.l-scroll-x table {
  width: inherit;
}
.l-scroll-x table th,
.l-scroll-x table td {
  min-width: 20rem;
}

/*
---------------------------------------------

    caption

*/
.caption {
  margin-top: 0.8em;
  display: block;
  color: #999;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
  word-break: break-all;
}
.caption a {
  color: #999;
}

.caption-scroll {
  margin-top: 0.8em;
  color: #999;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
  word-break: break-all;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-color: #ddd transparent;
  scrollbar-width: thin;
}
.caption-scroll a {
  color: #999;
}
.caption-scroll::-webkit-scrollbar {
  height: 0.6rem;
}
.caption-scroll::-webkit-scrollbar-track {
  border-radius: 0.3rem;
  background: #eee;
}
.caption-scroll::-webkit-scrollbar-thumb {
  border-radius: 0.3rem;
  background: #ddd;
}

/*
---------------------------------------------

	catch

*/
.catch,
.catch-01 {
  font-size: 2.2rem;
  font-weight: bold;
  font-weight: 600;
  color: #e8c0c1;
  line-height: 1.5;
}

/*
---------------------------------------------

	text

*/
.marker {
  background: linear-gradient(transparent 60%, #f9d99c 60%);
  font-weight: 600;
}

.txt_bold {
  font-weight: 600;
  color: #d3658d;
}

/*
---------------------------------------------

	subgrid card

*/
.subgrid-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  grid-gap: var(--s2);
}

/*
---------------------------------------------

    float wrap

*/
.float-wrap {
  margin: var(--s6) auto;
  display: flow-root;
}
.float-wrap .float-img.fr {
  width: 27rem;
  margin-left: var(--s3);
  margin-bottom: var(--s2);
  float: right;
}
.float-wrap .float-img.fl {
  width: 27rem;
  margin-right: var(--s3);
  margin-bottom: var(--s2);
  float: left;
}
.float-wrap .float-img.ct {
  width: 42rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--s2);
}

/*
---------------------------------------------

	pankuzu

*/
#pankuzu {
  width: 100%;
  margin: 0 auto var(--s5);
  padding: var(--s1) 0;
  color: #343434;
  font-size: 1.2rem;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}

/*
---------------------------------------------

    footer

*/
.footer-area {
  padding: var(--s9) 0 var(--s3);
  background: #848fcd;
  position: relative;
}
.footer-area .address {
  color: #fff;
}

.footer-main {
  max-width: 100rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--s3);
  padding-left: var(--s3);
  box-sizing: content-box;
}
.footer-main__inner {
  align-items: flex-end;
}

.footer-bottom {
  padding: var(--s2) 0;
  background: #fdf4fb;
}
.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  width: fit-content;
  margin-bottom: var(--s3);
  font-size: 1.3rem;
  color: #fff;
}
.footer-logo span {
  display: block;
  margin-bottom: var(--s1);
}
.footer-logo img {
  width: 14.5rem;
}
.footer-logo__link {
  display: block;
  text-decoration: none;
  color: #fff;
}

@media (hover: hover) {
  .footer-logo__link:hover {
    opacity: 0.6;
    color: #fff;
  }
}
.footer-box + .footer-box {
  margin-top: var(--s5);
}

.footer-menu-title {
  margin-bottom: var(--s1);
  font-size: 1.4rem;
  line-height: 1.5;
  border-bottom: 1px solid #909090;
}
.footer-menu-title__link {
  padding: var(--s1);
  display: block;
  text-decoration: none;
  color: #fff;
}

@media (hover: hover) {
  .footer-menu-title__link:hover {
    opacity: 0.6;
    color: #fff;
  }
}
.sns-menu {
  margin-top: var(--s2);
  display: flex;
  gap: var(--s3);
  align-items: center;
  color: #fff;
  font-size: 1.5rem;
}

.footer-menu__list {
  margin-bottom: var(--s4);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem var(--s2);
}
.footer-menu__item {
  width: calc((100% - var(--s2)) / 2);
  font-size: 1.5rem;
  line-height: 1.5;
}
.footer-menu__link {
  padding-left: var(--s4);
  display: block;
  text-decoration: none;
  color: #fff;
  position: relative;
  transition: transform 0.3s, opacity 0.3s;
}
.footer-menu__link:before {
  content: "";
  width: var(--s3);
  height: 1px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: right center;
}

@media (hover: hover) {
  .footer-menu__link:hover {
    color: #fff;
    transform: translateX(-3.2rem);
  }
  .footer-menu__link:hover:before {
    transform: scale(0, 1);
    transform-origin: right center;
  }
}
.footer-menu-sub {
  margin-left: var(--s1);
}
.footer-menu-sub__item {
  font-size: 1.2rem;
  line-height: 1.5;
}
.footer-menu-sub__link {
  padding: var(--s-2) var(--s-2) var(--s-2) 1.2em;
  display: block;
  text-decoration: none;
  position: relative;
  color: #fff;
}
.footer-menu-sub__link::before {
  content: "-";
  position: absolute;
  top: var(--s-2);
  left: 0;
}

@media (hover: hover) {
  .footer-menu-sub__link:hover {
    opacity: 0.6;
    color: #fff;
  }
}
.footer-disclaimer {
  width: 70rem;
  margin: var(--s5) auto;
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
}
.footer-disclaimer__label {
  display: inline;
}
.footer-disclaimer__text {
  display: inline;
}

.footer-copyright {
  margin: var(--s7) 0 0;
  font-size: 1.2rem;
  text-align: right;
  color: #fff;
}

.footer-banner {
  display: flex;
  align-items: center;
  width: 4.7rem;
  height: fit-content;
  padding: var(--s4) 0 var(--s3);
  border-radius: var(--s6);
  position: fixed;
  bottom: var(--s12);
  right: var(--s3);
  background: #f9d99c;
  z-index: 99;
  text-decoration: none;
  font-size: 1.8rem;
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
}
.footer-banner:before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: #f2b33c;
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: var(--s2);
  transform: translateX(-50%);
}

.js-banner-appear {
  opacity: 0;
  visibility: hidden;
}
.js-banner-appear.is-fixed {
  opacity: 1;
  visibility: visible;
}

/*
---------------------------------------------

    gnavi

*/
.gnavi-btn {
  width: 5.4rem;
  height: 5.4rem;
  background: #fff;
  box-shadow: 0 0 0.6rem rgba(132, 143, 205, 0.3);
  border-radius: 50%;
  display: block;
  position: fixed;
  top: 1rem;
  right: var(--s1);
  z-index: 200;
  cursor: pointer;
}
.gnavi-btn span {
  width: 2.8rem;
  height: 0.2rem;
  display: inline-block;
  background: #343434;
  position: absolute;
  left: 1.3rem;
  transition: transform 0.4s, opacity 0.4s;
}
.gnavi-btn span:nth-of-type(1) {
  top: 2.3rem;
}
.gnavi-btn span:nth-of-type(2) {
  top: 3.1rem;
}
.gnavi-btn.is-active span:nth-of-type(1) {
  transform: translateY(0.4rem) rotate(-45deg);
}
.gnavi-btn.is-active span:nth-of-type(2) {
  transform: translateY(-0.4rem) rotate(45deg);
}

.gnavi-area {
  width: 40rem;
  height: 100vh;
  padding: 8rem 0;
  background: linear-gradient(130deg, #f1d9da 40%, #b7bce1 100%);
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.8s ease, opacity 0.8s ease;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: auto;
}
.gnavi-area__logo {
  width: 18rem;
  margin: 0 auto var(--s2);
}

.gnavi-box__title {
  padding: 1.2rem var(--s6) 1.2rem var(--s2);
  border-bottom: 1px solid #999;
  font-weight: 700;
  line-height: 1.5;
  display: block;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.5s;
  position: relative;
}
.gnavi-box__title::after {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  background: url("img/arrow-01-black-right.svg") no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: var(--s2);
  transform: translate(0, -50%) rotate(0);
  transition: transform 0.3s;
}
.gnavi-box__title.js-toggle-btn::after {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  background: url("img/arrow-01-black-down.svg") no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: var(--s2);
  transform: translate(0, -50%) rotate(0);
  transition: transform 0.3s;
}
.gnavi-box__title.js-toggle-btn.is-open::after {
  transform: translate(0, -50%) rotate(180deg);
}
.gnavi-box__title:hover {
  opacity: 1;
}
.gnavi-box__content {
  background: rgba(255, 255, 255, 0.2);
}
.gnavi-box:first-child {
  border-top: 1px solid #999;
}

.gnavi-menu__item,
.gnavi-menu-sub__item {
  position: relative;
}
.gnavi-menu__item::before,
.gnavi-menu-sub__item::before {
  content: "└";
  position: absolute;
  top: var(--s2);
  left: var(--s2);
}
.gnavi-menu__link,
.gnavi-menu-sub__link {
  padding: 1.2rem var(--s2) 1.2rem var(--s5);
  display: block;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}
.gnavi-menu__link:hover,
.gnavi-menu-sub__link:hover {
  opacity: 0.6;
}

.gnavi-menu__item {
  border-bottom: 1px solid #999;
}

.gnavi-menu-sub {
  margin-left: var(--s2);
}
.gnavi-menu-sub__item {
  border-top: 1px solid #999;
  font-size: 1.3rem;
}

.is-gnavi-open .gnavi-area {
  opacity: 1;
  transform: translateX(0);
}

/*
---------------------------------------------

    TOC lower

*/
.toc-lower-wrap {
  max-width: 90rem;
  margin: var(--s8) auto;
  padding: var(--s4) var(--s6) var(--s3);
  border-top: solid 1px #f8ecec;
  border-bottom: solid 1px #f8ecec;
  position: relative;
}
.toc-lower-wrap--relations ul:not([class]) li {
  padding-left: var(--s4);
}
.toc-lower-wrap--relations ul:not([class]) li:before {
  width: 2.4rem;
  height: 2.4rem;
  background: url("img/arrow-01-white-right.svg") no-repeat left center/contain;
  top: 0;
}
.toc-lower-wrap ul,
.toc-lower-wrap ul:not([class]) {
  margin-top: 0;
  margin-bottom: 0;
}
.toc-lower-wrap ul li + li,
.toc-lower-wrap ul:not([class]) li + li {
  margin-top: 1.2em;
}
.toc-lower-wrap ul li.chapter-h-two,
.toc-lower-wrap ul:not([class]) li.chapter-h-two {
  padding: 0 0 0 2em;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  counter-increment: number;
}
.toc-lower-wrap ul li.chapter-h-two::before,
.toc-lower-wrap ul:not([class]) li.chapter-h-two::before {
  content: counter(number, decimal-leading-zero);
  color: #f8ecec;
  font-size: 1.3rem;
  font-weight: 700;
  position: absolute;
  top: 0.2em;
  left: 0;
}
.toc-lower-wrap ul li.chapter-h-two a,
.toc-lower-wrap ul:not([class]) li.chapter-h-two a {
  background: none;
}
.toc-lower-wrap ul li.chapter-h-three,
.toc-lower-wrap ul:not([class]) li.chapter-h-three {
  margin: 1rem 0 1rem var(--s5);
  padding: 0 0 0 1.5em;
  font-size: 1.6rem;
  line-height: 1.3;
  position: relative;
}
.toc-lower-wrap ul li.chapter-h-three:before,
.toc-lower-wrap ul:not([class]) li.chapter-h-three:before {
  content: "└";
  position: absolute;
  left: 0;
  top: 0.1em;
}
.toc-lower-wrap ul li.chapter-h-three a,
.toc-lower-wrap ul:not([class]) li.chapter-h-three a {
  background: none;
}
.toc-lower-wrap a {
  display: block;
  text-decoration: none;
}
.toc-lower-wrap a:hover {
  text-decoration: underline;
}

.toc-lower__title {
  margin-bottom: var(--s3);
  font-size: 2.2rem;
  font-weight: bold;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.toc-lower__title span.txt {
  margin-left: var(--s4);
  width: 5.6rem;
}
.toc-lower__title span.txt img {
  display: block;
}

.toc-lower__body {
  padding-bottom: var(--s1);
}

/*
---------------------------------------------

    page

*/
.page-top {
  width: var(--s9);
  height: var(--s9);
  position: fixed;
  right: 0;
  bottom: var(--s1);
  z-index: 10;
  overflow: hidden;
}
.page-top__link {
  width: 100%;
  height: 100%;
}

@media (hover: hover) {
  .page-top__link:hover {
    opacity: 0.6;
  }
}
/*
---------------------------------------------

    toggle sp

*/
.toggle-sp-content {
  display: block;
}

/*
---------------------------------------------

    toggle

*/
.toggle-btn {
  position: relative;
  transition: opacity 0.3s;
  cursor: pointer;
}
.toggle-btn::before {
  content: "";
  width: var(--s3);
  height: 0.2rem;
  background: #f8ecec;
  position: absolute;
  top: 50%;
  right: var(--s2);
  transform: translate(0, -50%);
}
.toggle-btn::after {
  content: "";
  width: 0.2rem;
  height: var(--s3);
  background: #f8ecec;
  position: absolute;
  top: 50%;
  right: 2.7rem;
  transform: translate(0, -50%);
  transition: transform 0.5s;
}
.toggle-btn.is-open::after {
  transform: translate(0, -50%) rotate(90deg);
}

.toggle-content {
  display: none;
}

/*
---------------------------------------------

    more

*/
.more-btn {
  max-width: 38rem;
  margin: var(--s5) auto;
  padding: var(--s3) var(--s7);
  background: #000;
  border: 0.2rem solid #000;
  border-radius: 10rem;
  color: #fff;
  text-align: center;
  position: relative;
  transition: opacity 0.3s;
  cursor: pointer;
}
.more-btn::before {
  content: "";
  width: var(--s3);
  height: 0.2rem;
  background: #fff;
  position: absolute;
  top: 50%;
  right: var(--s3);
  transform: translate(0, -50%);
}
.more-btn::after {
  content: "";
  width: 0.2rem;
  height: var(--s3);
  background: #fff;
  position: absolute;
  top: 50%;
  right: 3.5rem;
  transform: translate(0, -50%);
  transition: transform 0.3s;
}
.more-btn.is-open::after {
  transform: translate(0, -50%) rotate(90deg);
}

@media (hover: hover) {
  .more-btn:hover {
    opacity: 0.6;
    color: #fff;
  }
}
.more-content {
  display: none;
}

/*
---------------------------------------------

    グラデーション  more-content

*/
.more__content {
  position: relative;
  height: auto;
  max-height: 13rem;
  overflow: hidden;
  transition: max-height 1s;
  z-index: 0;
}

.more__content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  background: linear-gradient(to bottom, transparent 0%, #fff 100%);
}

.more__content.open {
  height: auto;
}

.more__content.open:after {
  z-index: -1;
  opacity: 0;
}

.more__content.sp-only {
  overflow: initial;
  max-height: initial;
}

.more__content.sp-only:after {
  content: none;
}

.more__btn {
  width: 12rem;
  min-width: 9rem;
  display: block;
  margin: 0 auto;
  padding: 0.4rem 3rem 0.4rem var(--s1);
  border-radius: 0.6rem;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  transition: opacity 0.3s;
}
.more__btn::before {
  content: "";
  width: 1.6rem;
  height: 0.2rem;
  background: #f8ecec;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
.more__btn::after {
  content: "";
  width: 0.2rem;
  height: 1.6rem;
  background: #f8ecec;
  position: absolute;
  top: 50%;
  right: 0.7rem;
  transform: translate(0, -50%);
  transition: transform 0.3s;
}
.more__btn--02:before {
  background-color: #fff;
}
.more__btn--02:after {
  background-color: #fff;
}

.more__btn.is-open::after {
  transform: translate(0, -50%) rotate(90deg);
}

.more__btn--02.is-open::before {
  background-image: url(img/more-close.png);
}

.more__btn.for-sp {
  display: none;
}

/*
---------------------------------------------

    tab

*/
.tab-btn {
  max-width: 49rem;
  padding: var(--s2);
  background: #848fcd;
  border-radius: var(--s3) var(--s3) 0 0;
  flex: 1;
  font-size: 3rem;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  cursor: pointer;
  transition: background-color ease 0.6s;
  position: relative;
  z-index: 1;
}
.tab-btn:nth-of-type(2) {
  background: #d3658d;
}
.tab-btn:nth-of-type(2).is-active {
  color: #d3658d;
  border-color: #d3658d;
}
.tab-btn.is-active {
  margin-bottom: -1px;
  border: 1px solid #848fcd;
  border-bottom: none;
  background-color: #fff;
  color: #5868c4;
}

.tab-btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: var(--s3);
}

.tab-content {
  padding: var(--s8) 0 0;
  border-top: 1px solid #848fcd;
  display: none;
  opacity: 0;
  position: relative;
}
.tab-content.is-active {
  display: block;
  animation: tabAnimation ease 0.6s forwards;
}
.tab-content#tab02 {
  border-color: #d3658d;
}

/*
---------------------------------------------

    help

*/
.help-btn {
  width: 2.8rem;
  height: 2.8rem;
  margin: var(--s1) auto var(--s2);
  background: #000 url("img/icon-help.svg") no-repeat center/1em auto;
  border-radius: 10rem;
  display: block;
  cursor: pointer;
  position: relative;
}

.help-content {
  width: 30rem;
  padding: var(--s2);
  background: #fff;
  border: solid 0.2rem #343434;
  border-radius: var(--s1);
  position: absolute;
  bottom: -0.8rem;
  left: 50%;
  z-index: 5;
  font-size: 1.6rem;
  font-weight: 400;
  color: #343434;
  transform: translate(-50%, 100%);
  transition: opacity 0.6s;
  visibility: hidden;
  opacity: 0;
}
.help-content::after {
  content: "";
  width: 1.6rem;
  height: 1.2rem;
  background: url(img/fkds-white.png) no-repeat center top/contain;
  position: absolute;
  top: -2.35rem;
  left: 50%;
  transform: translate(-50%, 100%);
}
.help-content.is-show {
  visibility: visible;
  opacity: 1;
}

/*
---------------------------------------------

    titles

*/
.pr-text {
  margin-bottom: var(--s3);
  font-size: 1.4rem;
}

.main-area h1,
.main-area h2,
.main-area h3,
.main-area h4,
.main-area h5,
.main-area h6 {
  word-wrap: break-word;
}
.main-area--low h1 a,
.main-area--low h2 a,
.main-area--low h3 a,
.main-area--low h4 a,
.main-area--low h5 a,
.main-area--low h6 a {
  display: block;
  padding-right: var(--s4);
  text-decoration: none;
}

@media (hover: hover) {
  .main-area h2 a:hover,
.main-area h3 a:hover,
.main-area h4 a:hover,
.main-area h5 a:hover,
.main-area h6 a:hover {
    opacity: 0.6;
  }
}
h1:not([class]) {
  margin: var(--s3) auto var(--s9);
  font-size: 4.6rem;
}

.main-area--low h2:not([class]) {
  margin: var(--s5) auto var(--s3);
  padding: var(--s2) var(--s4);
  border-radius: var(--s2);
  font-size: 3rem;
  color: #fff;
  background: #5868c4;
}
.main-area--low h2:not([class]) a {
  background-size: 2.6rem auto;
  color: #fff;
}
.main-area--low h3:not([class]) {
  margin: var(--s5) auto var(--s3);
  padding: 0 0 var(--s1) 0;
  border-bottom: solid 0.3rem #d6dfea;
  font-size: 2.4rem;
  position: relative;
}
.main-area--low h3:not([class]):before {
  content: "";
  width: 10rem;
  height: 0.3rem;
  background: #e8c0c1;
  position: absolute;
  left: 0;
  bottom: calc(0.3rem * -1);
}
.main-area--low h3:not([class]) a {
  padding-right: var(--s3);
  background: url(img/arrow-01-white-right.svg) no-repeat right var(--s3) center;
  background-size: 2.6rem auto;
}
.main-area--low h4:not([class]),
.main-area--low h5:not([class]) {
  margin: var(--s5) auto var(--s3);
  padding: 0.2rem 0 0.2rem var(--s2);
  font-size: 1.8rem;
  position: relative;
}
.main-area--low h4:not([class]):before,
.main-area--low h5:not([class]):before {
  content: "";
  width: 0.4rem;
  height: 100%;
  background: #848fcd;
  border-radius: 0.2rem;
  position: absolute;
  left: 0;
  top: 0;
}
.main-area--low h4:not([class]) a,
.main-area--low h5:not([class]) a {
  background: url(img/arrow-01-white-right.svg) no-repeat right var(--s3) center;
  background-size: 2.6rem auto;
}
.main-area--low h6:not([class]) {
  margin: var(--s5) auto var(--s3);
  font-size: 1.7rem;
}

/*
---------------------------------------------

    TOP common

*/
.common-lead {
  max-width: 83rem;
  margin: 0 auto;
}

/*
---------------------------------------------

    TOP section

*/
.bg-beige {
  background-color: #fdf4fb;
  padding: var(--s10) 0 14rem;
  position: relative;
}

.common-title {
  margin-bottom: var(--s10);
  font-size: 3.8rem;
  text-align: center;
}

.sec01-list__item {
  padding-left: var(--s5);
  margin-bottom: var(--s6);
  font-size: 2.6rem;
  color: #5868c4;
  position: relative;
}
.sec01-list__item:before {
  content: "";
  width: 2.8rem;
  height: 2.8rem;
  background: url(img/icon-li.png) no-repeat left top/contain;
  position: absolute;
  left: 0;
  top: 0.2em;
}
.sec01-list__p {
  margin-top: var(--s3);
  font-size: 1.8rem;
  color: #343434;
}
.sec01-list--top .sec01-list__item:nth-of-type(1) {
  margin-left: var(--s2);
}
.sec01-list--top .sec01-list__item:nth-of-type(2) {
  margin-left: var(--s9);
}

.sec-menu {
  padding: var(--s10) 0;
  position: relative;
}

.card-menu {
  grid-row: span 4;
  grid-template-rows: auto;
}
.card-menu__pic {
  display: block;
}
.card-menu__pic img {
  border-radius: var(--s3);
}
.card-menu__title {
  font-size: 2.6rem;
  font-weight: 600;
}
.card-menu .btn-more {
  margin: 0;
}

.bg-coral {
  padding: var(--s10) 0 14rem;
  background: #e8c0c1;
  position: relative;
}

.card-news {
  padding: var(--s3);
  background: #fff;
  border-radius: var(--s2);
  display: flex;
  gap: var(--s3);
  text-decoration: none;
  cursor: pointer;
  position: relative;
}
.card-news::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 2rem 2rem;
  border-color: transparent transparent #d3658d transparent;
  position: absolute;
  right: 0;
  bottom: 0;
}
.card-news__pic {
  width: 18rem;
}
.card-news__body {
  flex: 1;
}
.card-news__title {
  margin-bottom: var(--s2);
  font-size: 1.8rem;
  font-weight: 700;
}
.card-news .date {
  margin-bottom: var(--s1);
  font-size: 1.4rem;
}

.bg-grade {
  background: linear-gradient(130deg, #f8ecec 40%, #daddf0 100%);
  position: relative;
  padding: var(--s10) 0 14rem;
}

.en-title {
  margin: var(--s6) 0 var(--s3);
  padding-left: var(--s3);
  font-size: 1.5rem;
  color: #d3658d;
  position: relative;
}
.en-title:before {
  content: "";
  width: 2rem;
  height: 2rem;
  background: url(img/icon-entitle.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0.1em;
}

.common-low-title {
  margin-bottom: var(--s5);
  font-size: 3.2rem;
}

.about-pic {
  margin-left: calc((100vw - 100rem) / 2 * -1);
}
.about-pic img {
  border-radius: 0 30rem 30rem 0;
}

.section-title {
  margin-bottom: var(--s7);
  font-size: 2.6rem;
}

.section-lead {
  margin: var(--s4) 0;
  font-size: 2rem;
  font-weight: 700;
}
.section-lead--center {
  text-align: center;
}

.bg-pink {
  background-color: #f8ecec;
  padding: var(--s10) 0 14rem;
  position: relative;
  z-index: 0;
}

.about-us {
  gap: 0;
}
.about-us__pic {
  position: relative;
}
.about-us__pic img {
  border-radius: var(--s3);
}
.about-us__main {
  margin-right: -4rem;
}
.about-us__position {
  margin-bottom: var(--s1);
  font-size: 1.5rem;
  color: #d3658d;
}
.about-us__position--therapist {
  color: #5868c4;
  text-align: right;
}
.about-us__title {
  font-size: 2.6rem;
  margin-bottom: var(--s4);
}
.about-us__name {
  font-size: 3rem;
  margin-bottom: var(--s5);
}
.about-us__name span {
  font-size: 1.8rem;
}
.about-us.l-column--row-reverse .about-us__title,
.about-us.l-column--row-reverse .about-us__name {
  text-align: right;
}
.about-us.l-column--row-reverse .about-us__main {
  margin-right: 0;
  margin-left: -4rem;
}
.about-us .l-column__side {
  z-index: -1;
}

.bg-blue {
  background-color: #edeef8;
  padding: var(--s10) 0 14rem;
  position: relative;
  z-index: 0;
}

.about-info {
  margin-top: var(--s7);
  gap: var(--s2);
}
.about-info__title {
  margin-bottom: var(--s1);
  color: #d3658d;
  font-size: 2rem;
}
.about-info__title--blue {
  color: #5868c4;
}

.deco-logo {
  position: relative;
}
.deco-logo:before {
  content: "";
  width: 55rem;
  height: 22rem;
  background: url(img/deco-logo.png) no-repeat center/contain;
  position: absolute;
  right: -8rem;
  top: -8rem;
  opacity: 0.8;
}

.card-menu-low {
  display: block;
  text-decoration: none;
}
.card-menu-low__title {
  margin-top: var(--s1);
  font-size: 2rem;
  text-align: center;
}
.card-menu-low__pic img {
  border-radius: var(--s2);
  filter: saturate(0.7) opacity(0.9);
  transition: filter 0.3s ease;
}
.card-menu-low:hover .card-menu-low__pic img {
  filter: saturate(1.2) opacity(1);
}

.menu-category {
  margin: var(--s5) 0;
  padding-top: var(--s3);
  color: #5868c4;
  font-size: 2.4rem;
  font-weight: 600;
}
.menu-category#menu02 {
  color: #d3658d;
}

.l-sidebar__menu {
  margin-top: var(--s8);
  position: sticky;
  top: var(--s3);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.l-sidebar__item:nth-of-type(2) .l-sidebar__link {
  color: #d3658d;
}
.l-sidebar__link {
  padding-right: var(--s3);
  background: url(img/arrow-01-black-down.svg) no-repeat right 55%/1.2rem auto;
  font-size: 1.8rem;
  text-decoration: none;
  color: #5868c4;
}

.box-menu {
  padding: var(--s7) 0;
  position: relative;
  z-index: 0;
}
.box-menu:before {
  content: "";
  width: calc(100% + var(--s6) * 2);
  height: 100%;
  background: #fff;
  border-radius: var(--s3);
  position: absolute;
  left: calc(-1 * var(--s6));
  top: 0;
  z-index: -1;
}
.box-menu__en {
  margin-bottom: var(--s1);
  font-size: 1.6rem;
  color: #848fcd;
  text-align: center;
}
.box-menu__en--pink {
  color: #e8c0c1;
}
.box-menu__title {
  margin-bottom: var(--s8);
  font-size: 3.2rem;
  font-weight: 500;
  color: #5868c4;
  text-align: center;
}
.box-menu__title--pink {
  color: #d3658d;
}
.box-menu__lead {
  margin-bottom: var(--s3);
  font-size: 2.4rem;
}
.box-menu__subtitle {
  margin: var(--s7) 0 var(--s2);
  padding: 0 0 var(--s1) 0;
  border-bottom: dashed 1px #848fcd;
  font-size: 2.2rem;
  color: #5868c4;
}
.box-menu__subtitle--pink {
  color: #d3658d;
  border-color: #e8c0c1;
}
.box-menu__list {
  margin: var(--s3) var(--s2) 0;
}
.box-menu__item {
  padding-left: var(--s3);
  font-size: 1.8rem;
  position: relative;
}
.box-menu__item:before {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  background: url(img/icon-li.png) no-repeat left top/contain;
  position: absolute;
  left: 0;
  top: 0.4em;
}
.box-menu__item + .box-menu__item {
  margin-top: var(--s3);
}
.box-menu__item__detail {
  margin-top: var(--s1);
  font-size: 1.6rem;
}
.box-menu__inner {
  margin: var(--s8) 0;
  padding: var(--s6) var(--s5);
  background: #fffbf2;
  border-radius: var(--s2);
}
.box-menu__inner__title {
  margin-bottom: var(--s6);
  text-align: center;
  font-size: 2.8rem;
  font-weight: 500;
}
.box-menu__inner__subtitle {
  margin: var(--s7) 0 var(--s2);
  font-size: 2.2rem;
  color: #e8ac39;
}
.box-menu__inner__pic {
  border-radius: var(--s2);
}
.box-menu__price {
  margin: 0 var(--s2);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
}
.box-menu__price__item {
  width: 70%;
  padding: 1rem;
  background: #f7f7f7;
  font-size: 1.8rem;
  font-weight: 500;
}
.box-menu__price__item span {
  padding: var(--s-2) var(--s2);
  background: #5868c4;
  color: #fff;
  font-size: 1.6rem;
}
.box-menu__price__value {
  background: #fffbf2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 500;
}
.box-menu__price__value span {
  font-size: 1.3rem;
}
.box-menu__pic {
  border-radius: var(--s3);
}
.box-menu + .box-menu {
  margin-top: var(--s12);
}

.menu-column {
  gap: var(--s4);
}

.box-attention {
  margin: var(--s8) 0 0;
  padding: var(--s4) var(--s3);
  background: url(img/bg-illust.png) no-repeat right bottom/50% auto;
  position: relative;
}
.box-attention:before {
  content: "";
  width: 100%;
  height: calc(100% - var(--s7));
  border: solid 1px #848fcd;
  border-radius: var(--s2);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.box-attention__title {
  width: fit-content;
  margin: 0 auto var(--s3);
  padding: 0 var(--s2);
  background: #fff;
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  color: #5868c4;
}
.box-attention__subtitle {
  margin: var(--s5) 0 var(--s1);
  padding-bottom: var(--s1);
  border-bottom: dotted 0.2rem #ddd;
  font-size: 2.2rem;
  font-weight: 600;
}
.box-attention__list {
  margin: 0 var(--s2) var(--s6);
}
.box-attention__list:last-child {
  margin-bottom: 0;
}
.box-attention__item {
  padding-left: var(--s2);
  position: relative;
}
.box-attention__item:before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #666;
  position: absolute;
  left: 0;
  top: 0.6em;
}
.box-attention__item + .box-attention__item {
  margin-top: var(--s1);
}
.box-attention--02 {
  background: none;
}

.access-lead {
  font-size: 2.6rem;
}

.access-map__content {
  margin-bottom: var(--s8);
  display: flex;
  gap: var(--s6);
  flex-wrap: wrap;
}
.access-map__text {
  flex: 1;
  font-size: 1.6rem;
  color: #343434;
  line-height: 1.3;
}
.access-map__text .st {
  font-size: 2rem;
}
.access-map__img {
  max-width: 56rem;
  padding: var(--s3);
  background: #fff;
  border-radius: var(--s3);
  text-align: center;
  display: flex;
  align-items: center;
}
.access-map__subtitle {
  margin: var(--s4) 0 var(--s1);
  padding-bottom: var(--s1);
  border-bottom: dashed 1px #848fcd;
  font-size: 2rem;
  font-weight: 500;
  color: #5868c4;
}
.access-map__title {
  margin: 0 0 var(--s3);
  font-size: 3.2rem;
  text-align: center;
}
.access-map__time {
  font-size: 2.2rem;
  text-align: center;
  line-height: 2;
}
.access-map__time span {
  font-size: 1.8rem;
}

.wp-block-image {
  margin-top: var(--s3);
}

.postThumbnail {
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: var(--s3);
  background: #fff;
}

.post-title {
  margin: 0 0 var(--s3);
  font-size: 2.4rem;
  font-weight: 500;
}

.postDate {
  margin: 0 0 var(--s2);
  font-size: 1.5rem;
  color: #d3658d;
}

@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp base settings

  */
  :root {
    font-size: 2.6666666667vw;
  }

  body {
    font-size: 1.5rem;
  }

  p + p {
    margin-top: 1em;
  }

  .sp_br {
    display: inline;
  }

  .pc_br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp layout center

  */
  .l-center {
    padding-right: var(--s2);
    padding-left: var(--s2);
    box-sizing: border-box;
  }

  /*
  ---------------------------------------------

      sp layout stack

  */
  .l-stack {
    gap: var(--s2);
  }

  /*
  ---------------------------------------------

      sp layout cluster

  */
  .l-cluster {
    gap: var(--s1);
  }

  /*
  ---------------------------------------------

      sp layout grid

  */
  .l-grid {
    grid-gap: var(--s4);
    grid-template-columns: 100%;
  }

  .l-grid-three {
    --minimum: calc((100% - var(--s2)) / 2);
    grid-gap: var(--s3) var(--s2);
  }

  /*
  ---------------------------------------------

      sp layout sidebar

  */
  .l-sidebar__side {
    display: none;
  }
  .l-sidebar__main {
    width: 100%;
  }

  /*
  ---------------------------------------------

      sp layout column

  */
  .l-column {
    gap: var(--s4);
  }
  .l-column__side, .l-column__side04 {
    width: 100%;
  }
  .l-column__main {
    width: 100%;
  }

  /*
  ---------------------------------------------

      sp layout grid areas

  */
  .l-grid-areas {
    grid-template-areas: "catch" "img" "text";
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto;
    grid-gap: var(--s2);
  }

  /*
  ---------------------------------------------

      sp layout scroll

  */
  .l-scroll-x-sp {
    width: 100%;
    padding-bottom: 0.6rem;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .l-scroll-x-sp::-webkit-scrollbar {
    height: 0.6rem;
  }
  .l-scroll-x-sp::-webkit-scrollbar-track {
    border-radius: 0.3rem;
    background: #eee;
  }
  .l-scroll-x-sp::-webkit-scrollbar-thumb {
    border-radius: 0.3rem;
    background: #ddd;
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      header

  */
  .header-area {
    padding: var(--s1) var(--s1) 0 var(--s1);
  }
  .header-area__name {
    padding-right: var(--s8);
    font-size: 1.2rem;
  }
  .header-area__logo {
    width: 13.5rem;
    margin: var(--s3) auto var(--s2);
  }
  .header-area__inner {
    height: auto;
    padding: var(--s-2);
    gap: var(--s1);
    background: transparent;
  }

  .header-menu {
    display: none;
  }

  /*
  ---------------------------------------------

      body

  */
  body.low:before {
    height: 50rem;
    border-width: var(--s2);
    background-size: 28rem auto;
    background-position: right -6rem top var(--s8);
  }

  .main-area--low .l-center {
    padding-bottom: var(--s3);
  }

  /*
  ---------------------------------------------

      MV

  */
  .mainvisual-inner {
    display: block;
    padding: var(--s6) 0;
  }
  .mainvisual-logo {
    width: 80%;
    margin: 0 auto var(--s3);
  }
  .mainvisual-title {
    padding-left: 0;
  }
  .mainvisual-lead {
    font-size: 2.2rem;
    text-align: center;
  }
  .mainvisual-bg {
    height: 22rem;
  }
  .mainvisual-bg__column {
    animation-duration: 180s;
  }

  /*
  ---------------------------------------------

      sp btn

  */
  .btn-internal,
.btn-web {
    margin: var(--s3) auto;
  }
  .btn-internal a,
.btn-web a {
    width: 94%;
    min-height: 6rem;
    padding-right: 4.4rem;
    padding-left: 4.4rem;
    background-position: right 1.8rem center;
    font-size: 1.5rem;
  }

  .btn-web--header a {
    min-height: initial;
    width: fit-content;
    padding: var(--s1) var(--s5) var(--s1) var(--s3);
    border-radius: 0 var(--s2) 0 0;
    background-size: 2rem auto;
    background-position: right var(--s1) center;
    font-size: 1.3rem;
    top: auto;
    bottom: 0;
    right: auto;
    left: 0;
  }

  .btn-internal a {
    background-size: 2.2rem auto;
  }

  .btn-link {
    margin: var(--s1) auto;
  }
  .btn-link a {
    padding-right: 2.8rem;
    background-size: 2rem auto;
    font-size: 1.5rem;
  }

  .btn-tel {
    margin: var(--s3) auto;
    display: block;
    position: relative;
  }
  .btn-tel a {
    width: 94%;
    min-height: var(--s7);
    margin: 0 auto;
    padding: var(--s1) var(--s6);
    background: #d3658d url("img/icon-tel.png") no-repeat center left var(--s3)/2rem auto;
    border-radius: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
  }

  .btn-column {
    margin-top: var(--s2);
    flex-direction: column;
    gap: var(--s3);
  }
  .btn-column .btn-web,
.btn-column .btn-internal,
.btn-column .btn-tel {
    margin: 0;
  }
  .btn-column--top {
    margin: 0 auto;
  }
  .btn-column--top .box-btns {
    margin: 0 auto var(--s4);
  }

  /*
  ---------------------------------------------

      sp table

  */
  .sp-table thead,
.sp-table tbody,
.sp-table tr {
    display: block;
  }
  .sp-table th,
.sp-table td {
    width: 100%;
    display: block;
  }

  .table-label thead {
    display: none;
  }
  .table-label tbody th {
    background: #ccc;
  }
  .table-label td {
    padding: 0;
    display: flex;
    position: relative;
  }
  .table-label td::before {
    content: attr(data-label);
    width: 7em;
    background: #efefef;
    border-right: solid 1px #707070;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    text-align: center;
  }
  .table-label__cell {
    padding: var(--s1) var(--s2);
  }

  .l-scroll-x table thead,
.l-scroll-x-sp table thead {
    display: table-header-group;
  }
  .l-scroll-x table tbody,
.l-scroll-x-sp table tbody {
    display: table-row-group;
  }
  .l-scroll-x table tr,
.l-scroll-x-sp table tr {
    display: table-row;
  }
  .l-scroll-x table th,
.l-scroll-x table td,
.l-scroll-x-sp table th,
.l-scroll-x-sp table td {
    width: inherit;
    min-width: 15rem;
    display: table-cell;
  }

  .l-scroll-x-sp table {
    width: inherit;
  }
  .l-scroll-x-sp img {
    display: block;
    width: 60rem;
    max-width: inherit;
  }

  /*
  ---------------------------------------------

      sp caption

  */
  .caption {
    font-size: 0.9rem;
  }

  .caption-scroll {
    font-size: 0.9rem;
  }
  .caption-scroll::-webkit-scrollbar {
    height: 0.4rem;
  }
  .caption-scroll::-webkit-scrollbar-track {
    border-radius: 0.2rem;
  }
  .caption-scroll::-webkit-scrollbar-thumb {
    border-radius: 0.2rem;
  }

  /*
  ---------------------------------------------

  	sp catch

  */
  .catch,
.catch-01 {
    font-size: 1.8rem;
  }

  /*
  ---------------------------------------------

      sp float wrap

  */
  .float-wrap .float-img.fr {
    width: 100%;
    margin-left: 0;
    float: none;
  }
  .float-wrap .float-img.fl {
    width: 100%;
    margin-right: 0;
    float: none;
  }
  .float-wrap .float-img.ct {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  /*
  ---------------------------------------------

  	sp pankuzu

  */
  #pankuzu {
    margin-bottom: var(--s1);
    padding-top: 0;
  }

  /*
  ---------------------------------------------

      sp footer

  */
  .footer-area {
    padding: var(--s3) 0 0;
  }

  .footer-main {
    padding-right: var(--s2);
    padding-left: var(--s2);
    padding-bottom: var(--s2);
    box-sizing: border-box;
  }
  .footer-main__inner {
    grid-gap: var(--s2);
  }

  .footer-bottom {
    padding: var(--s1) 0 7rem;
  }

  .footer-logo {
    width: 14rem;
    margin-bottom: var(--s2);
  }

  .footer-box + .footer-box {
    margin-top: var(--s2);
  }

  .footer-menu-title {
    margin-bottom: 0;
  }
  .footer-menu-title__link {
    padding: var(--s1) var(--s4) var(--s1) var(--s2);
    position: relative;
  }
  .footer-menu-title__link::after {
    content: "";
    width: 1.2rem;
    height: 1.2rem;
    background: url("img/arrow-01-down.svg") no-repeat center/contain;
    position: absolute;
    top: 50%;
    right: var(--s2);
    transform: translate(0, -50%) rotate(0);
    transition: transform 0.3s;
  }
  .footer-menu-title__link.is-open::after {
    transform: translate(0, -50%) rotate(180deg);
  }
  .footer-menu-title__link--not-toggle::after {
    background: url("img/arrow-01-right.svg") no-repeat center/contain;
  }

  .footer-menu {
    padding: var(--s1) 0;
    gap: 0;
  }
  .footer-menu__list {
    gap: var(--s1) 1.2rem;
  }
  .footer-menu__link {
    padding-left: var(--s2);
  }
  .footer-menu__link:before {
    width: 1rem;
  }

  .footer-menu-sub {
    margin-left: var(--s2);
  }
  .footer-menu-sub__link {
    padding: var(--s1) var(--s2) var(--s1) 1.1em;
  }
  .footer-menu-sub__link::before {
    top: var(--s1);
  }

  .footer-disclaimer {
    width: calc(100% - var(--s2));
    margin: var(--s2) auto;
    padding: var(--s1) var(--s2);
  }

  .footer-nocopy {
    margin: var(--s2) var(--s1);
    font-size: 1rem;
  }

  .footer-copyright {
    width: 100%;
    margin-top: var(--s3);
    text-align: center;
    font-size: 1rem;
  }

  .footer-sitemap {
    display: none;
  }

  .footer-banner {
    right: 0;
    width: 3.2rem;
    bottom: var(--s7);
    border-radius: var(--s1) 0 0 var(--s1);
    font-size: 1.5rem;
  }

  .sns-menu {
    gap: 1.4rem;
  }

  /*
  ---------------------------------------------

  	sp gnavi

  */
  .gnavi-btn {
    right: 0.6rem;
    top: 0.6rem;
  }

  .gnavi-area {
    width: 100%;
    padding: var(--s4) 0;
  }
  .gnavi-area__logo {
    display: block;
    width: 16rem;
    margin: 0 auto var(--s2);
  }

  /*
  ---------------------------------------------

      Tab contents

  */
  .tab-btn-wrapper {
    padding: 0 var(--s2);
    gap: var(--s1);
  }

  .tab-btn {
    padding: var(--s1) var(--s2);
    border-radius: var(--s2) var(--s2) 0 0;
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .tab-content {
    padding-top: var(--s4);
  }

  /*
  ---------------------------------------------

      sp page

  */
  .page-top {
    width: var(--s6);
    height: var(--s6);
    bottom: 0;
  }

  /*
  ---------------------------------------------

       sp toggle sp

  */
  .toggle-btn:before {
    right: 1.2rem;
  }
  .toggle-btn:after {
    right: 2.3rem;
  }

  .toggle-sp-content {
    display: none;
  }

  /*
  ---------------------------------------------

      more

  */
  .more-btn {
    width: 82%;
    margin: var(--s5) auto;
    padding: 1.2rem 4.6rem;
    font-size: 1.4rem;
  }
  .more-btn:hover {
    opacity: 1;
  }

  /*
  ---------------------------------------------

  グラデーション  more-content

  */
  .more__content.sp-only {
    overflow: hidden;
    max-height: 12rem;
  }

  .more__content.sp-only:after {
    content: "";
  }

  .more__btn {
    width: 82%;
    font-size: 1.4rem;
  }
  .more__btn.for-sp {
    display: block;
  }

  /*
  ---------------------------------------------

      SP titles

  */
  .pr-text {
    font-size: 1.2rem;
  }

  .main-area--low h2:not([class]),
.main-area--low h3:not([class]),
.main-area--low h4:not([class]),
.main-area--low h5:not([class]),
.main-area--low h6:not([class]) {
    margin: var(--s4) auto var(--s2);
  }
  .main-area--low h1:not([class]) {
    margin: var(--s2) auto;
    padding: var(--s2);
    font-size: 2.5rem;
  }
  .main-area--low h2:not([class]) {
    border-radius: var(--s1);
    font-size: 2.2rem;
    padding: var(--s1) var(--s2);
  }
  .main-area--low h2:not([class]) a {
    background-size: 2rem auto;
    background-position: right center;
  }
  .main-area--low h3:not([class]) {
    padding-left: var(--s1);
    padding-bottom: var(--s1);
    font-size: 1.9rem;
  }
  .main-area--low h3:not([class]) a {
    background-size: 2rem auto;
    background-position: right center;
  }
  .main-area--low h4:not([class]) {
    font-size: 1.7rem;
  }
  .main-area--low h4:not([class]) a {
    background-size: 2rem auto;
    background-position: right center;
  }
  .main-area--low h5:not([class]) {
    font-size: 1.5rem;
  }
  .main-area--low h5:not([class]) a {
    background-size: 2rem auto;
    background-position: right center;
  }
  .main-area--low h6:not([class]) {
    font-size: 1.5rem;
  }

  /*
  ---------------------------------------------

      SP end

  */
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      TOP section

  */
  .bg-beige,
.bg-coral,
.bg-pink,
.bg-blue,
.bg-menu {
    padding: var(--s6) 0 var(--s10);
  }

  .common-title {
    margin-bottom: var(--s5);
    font-size: 2.4rem;
  }

  .common-low-title {
    font-size: 2.4rem;
  }

  .en-title {
    margin: var(--s2) 0 var(--s1);
  }

  .section-title {
    margin-bottom: var(--s3);
    font-size: 2rem;
  }

  .sec01-list__item {
    margin-bottom: var(--s4);
    padding-left: 3rem;
    font-size: 2rem;
  }
  .sec01-list__item:before {
    width: 2rem;
    height: 2rem;
    top: 0.3em;
  }

  .sec01-list--top .sec01-list__item:nth-of-type(2) {
    margin-left: var(--s5);
  }

  .card-menu__title {
    font-size: 2rem;
  }

  .card-news {
    display: block;
  }
  .card-news__pic {
    width: 11rem;
    padding: 0 1.2rem var(--s3) 0;
    float: left;
  }
  .card-news__title {
    font-size: 1.7rem;
    display: inline;
  }
  .card-news__text {
    margin-top: var(--s2);
    clear: both;
  }
  .card-news .date {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .about-pic {
    margin-left: calc(var(--s8) * -1);
  }

  .sec01-list__p {
    margin-top: var(--s1);
    font-size: 1.5rem;
  }

  .section-lead--center {
    font-size: 1.6rem;
  }

  .about-us {
    flex-direction: column-reverse;
  }
  .about-us__main {
    margin-right: 0;
  }
  .about-us__pic {
    width: 50%;
    margin: 0 0 -17rem auto;
  }
  .about-us__title {
    font-size: 2rem;
  }
  .about-us__name {
    font-size: 2.4rem;
  }
  .about-us__name span {
    font-size: 1.4rem;
  }
  .about-us.l-column--row-reverse .about-us__main {
    margin-left: 0;
  }
  .about-us.l-column--row-reverse .about-us__pic {
    margin: 0 auto -10rem 0;
  }
  .about-us.l-column--row-reverse .about-us__name {
    text-align: left;
  }

  .deco-logo:before {
    width: 22.5rem;
    height: 10rem;
    top: -3rem;
    right: -2rem;
    z-index: -1;
  }

  .bg-grade {
    z-index: 0;
  }

  .menu-category {
    margin: 0 0 var(--s2);
    padding-top: 0;
    font-size: 2rem;
    text-align: center;
  }
  .menu-category#menu02 {
    margin-top: var(--s4);
  }

  .card-menu-low__title {
    font-size: 1.5rem;
  }

  .box-menu {
    padding: var(--s5) 2rem var(--s3);
  }
  .box-menu:before {
    width: 100%;
    left: 0;
  }
  .box-menu__title {
    font-size: 2.2rem;
    margin-bottom: var(--s4);
  }
  .box-menu__lead {
    font-size: 1.7rem;
    font-weight: 500;
  }
  .box-menu__subtitle {
    margin: var(--s4) 0 var(--s2);
    font-size: 1.6rem;
  }
  .box-menu__list {
    margin-left: 0;
    margin-right: 0;
  }
  .box-menu__item {
    padding-left: 2rem;
    font-size: 1.5rem;
  }
  .box-menu__item:before {
    top: 0.35em;
  }
  .box-menu__item + .box-menu__item {
    margin-top: var(--s2);
  }
  .box-menu__item__detail {
    font-size: 1.4rem;
  }
  .box-menu__inner {
    margin: var(--s5) 0 var(--s3);
    padding: var(--s4) var(--s2) var(--s3);
  }
  .box-menu__inner__title {
    margin-bottom: var(--s3);
    font-size: 2rem;
  }
  .box-menu__inner__subtitle {
    font-size: 1.7rem;
    margin: var(--s4) 0 var(--s2);
  }
  .box-menu__list {
    margin-top: 0;
  }
  .box-menu__price {
    margin: 0;
    font-size: 1.6rem;
    gap: 0;
  }
  .box-menu__price__item {
    width: 100%;
    padding: var(--s1);
    font-size: 1.4rem;
    text-align: center;
  }
  .box-menu__price__item span {
    margin-right: var(--s1);
    padding: var(--s-2) var(--s1);
    font-size: 1.3rem;
  }
  .box-menu__price__value {
    width: 100%;
    margin-bottom: var(--s2);
    padding: var(--s1);
    font-size: 1.8rem;
  }
  .box-menu + .box-menu {
    margin-top: var(--s5);
  }
  .box-menu .l-grid {
    grid-gap: 0;
  }

  .box-attention {
    margin: var(--s5) 0 0;
    padding: 0 var(--s3) var(--s4) var(--s3);
  }
  .box-attention:before {
    height: calc(100% - var(--s2));
  }
  .box-attention__title {
    padding: 0 var(--s-2);
    font-size: 1.8rem;
  }
  .box-attention__subtitle {
    font-size: 1.6rem;
    margin: var(--s4) 0 var(--s2);
    padding-bottom: var(--s1);
  }
  .box-attention__list {
    margin: 0 0 var(--s3);
  }

  .access-map__img {
    padding: var(--s1) var(--s2);
  }
  .access-map__content {
    flex-direction: column-reverse;
    gap: var(--s2);
  }
  .access-map__text .st {
    font-size: 1.8rem;
  }
  .access-map__title {
    font-size: 2rem;
    margin-bottom: var(--s2);
  }
  .access-map__time {
    font-size: 1.7rem;
  }
  .access-map__time span {
    font-size: 1.4rem;
  }

  .post-title {
    font-size: 2rem;
  }

  /*
  ---------------------------------------------

      SP end

  */
}
