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

　サイト全般のスタイル
　header,footer,modules

/////////////////////////////////////////////// */
/* ブレイクポイント */
/*

  FONT
----------------------------------------------- */
:root {
  font-size: 1px;
  --color-pink: #E7447D;
  --gradient-start: #E6447D;
  --gradient-end: #ED825C;
  --font-family-base: "游ゴシック","Yu Gothic","游ゴシック体","YuGothic",sans-serif;
  --font-family-mincho: "游明朝","Yu Mincho","游明朝体","YuMincho",serif;
}
@media (max-width: 768px) {
  :root {
    font-size: 0.875px;
  }
}

body {
  color: #333;
  font-size: 16rem;
  font-family: var(--font-family-base);
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.02em;
}

:is(p) {
  line-height: 1.75;
}

:is(li, dt, dd, th, td, address) {
  line-height: 1.5;
}

:is(input, textarea, select) {
  font-size: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.ffM {
  font-family: var(--font-family-mincho);
}

.ffNS {
  font-family: "Noto Serif JP", serif;
}

/*

  LAYOUT
----------------------------------------------- */
body.isMenuOpen {
  overflow: hidden;
}

#wrapper {
  overflow: hidden;
}
@media (max-width: 768px) {
  #wrapper {
    padding-top: 50px;
  }
}
        @media (min-width: 769px) {
          #wrapper {
            padding-top: 135px;
          }
        }
/*

  HEADER
----------------------------------------------- */
.header {
  display: flex;
  /* position: relative; */
                position: fixed;
                  z-index: 10;
                  top: 0;
                  left: 0;
                  right: 0;
                  background-color: #fff;
}
@media (min-width: 769px) {
  .header {
    height: 135px;
  }
}
@media (max-width: 768px) {
  .header {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    align-items: center;
    background-color: #fff;
  }
}
.header .logo {
  margin-right: auto;
}
@media (min-width: 769px) {
  .header .logo {
    margin-top: 50px;
    margin-left: 25px;
  }
}
@media (max-width: 768px) {
  .header .logo {
    width: 250px;
    margin-left: 20px;
  }
}

.header-cta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 769px) {
  .header-cta {
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media (max-width: 768px) {
  .header-cta {
    position: fixed;
    z-index: 10;
    bottom: 0;
    left: 0;
    right: 0;
  }
}
.header-cta > * {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  line-height: 1.1;
}
.header-cta > *:hover {
  text-decoration: none;
}
@media (min-width: 769px) {
  .header-cta > * {
    width: 280px;
    height: 60px;
  }
}
@media (max-width: 768px) {
  .header-cta > * {
    height: 60px;
  }
}
.header-cta .tel {
  background-color: #F4F2EC;
  color: var(--color-pink);
  font-size: 24rem;
}
.header-cta .tel::before {
  margin-right: 10px;
  width: 14px;
  height: 23px;
  content: url(../img/ico-sp-pink.svg);
}
@media (max-width: 768px) {
  .header-cta .tel {
    font-size: 22rem;
  }
}
.header-cta .contact {
  font-size: clamp(16px, 1.8181818182vw, 20px);
  position: relative;
  background-image: linear-gradient(90deg, #ED825C, #E6447D);
  color: #fff;
}
.header-cta .contact:hover {
  background-image: linear-gradient(-90deg, #ED825C, #E6447D);
  text-decoration: none;
}
.header-cta .contact::after {
  position: absolute;
  top: calc(50% - 5px);
  right: 15px;
  display: inline-block;
  width: 6px;
  height: 9px;
  content: url(../img/mrk-right.svg);
  translate: 0 -7.5px;
}
@media (max-width: 768px) {
  .header-cta .contact::after {
    top: calc(50% - 3px);
  }
}

/*

  MENU
----------------------------------------------- */
@media (min-width: 769px) {
  .gnav {
    margin-top: auto;
    margin-right: 25px;
  }
}
@media (max-width: 768px) {
  .gnav {
    position: fixed;
    z-index: 11;
    top: 50px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    padding: 30px 20px;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
  }
}
.gnav a {
  display: flex;
  align-items: center;
}
.gnav > ul {
  display: flex;
}
.gnav > ul > li > a {
  height: 100%;
  font-weight: bold;
  white-space: nowrap;
}
@media (min-width: 769px) {
  .gnav > ul > li {
    height: 75px;
  }
  .gnav > ul > li > a {
    justify-content: center;
    padding: 0 1em;
  }
  .gnav > ul > li > a:hover {
    color: var(--color-pink);
  }
  .gnav > ul > li:hover .sub-menu {
    opacity: 1;
    pointer-events: inherit;
  }
}
@media (max-width: 768px) {
  .gnav > ul {
    flex-direction: column;
  }
  .gnav > ul > li {
    position: relative;
    border-bottom: 1px solid #ddd;
  }
  .gnav > ul > li > a {
    justify-content: flex-start;
    height: 50px;
  }
}
@media (min-width: 769px) {
  .gnav .sub-menu {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 11;
    padding-left: calc(50% - 550px);
    padding-right: calc(50% - 550px);
    padding-top: 20px;
    padding-bottom: 30px;
    background: linear-gradient(-90deg, var(--gradient-start), var(--gradient-end));
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transition: 0.2s;
  }
}
@media screen and (min-width: 769px) and (max-width: 1140px) {
  .gnav .sub-menu {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 769px) and (max-width: 768px) {
  .gnav .sub-menu {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 769px) {
  .gnav .sub-menu > ul > li {
    display: inline-block;
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
  .gnav .sub-menu > ul > li:has(ul) {
    border: none;
  }
  .gnav .sub-menu > ul ul {
    margin-top: 7px;
    padding-top: 7px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
  .gnav .sub-menu > ul ul > li {
    font-size: 14rem;
  }
}
@media (max-width: 768px) {
  .gnav .sub-menu {
    display: none;
  }
  .gnav .sub-menu > ul > li {
    border-top: 1px solid #ddd;
  }
  .gnav .sub-menu > ul > li > a {
    height: 40px;
  }
  .gnav .sub-menu > ul ul {
    margin-left: 20px;
    margin-bottom: 20px;
  }
}
@media (min-width: 769px) {
  .gnav .btnSubMenu {
    display: none;
  }
}
@media (max-width: 768px) {
  .gnav .btnSubMenu {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: url(../img/btn-open.svg) no-repeat right 10px center/12px;
  }
  .gnav .btnSubMenu.active {
    background-image: url(../img/btn-close.svg);
  }
}
.gnav .debug {
  opacity: 1;
  pointer-events: inherit;
}

@media (max-width: 768px) {
  .isMenuOpen .gnav {
    opacity: 1;
    pointer-events: inherit;
  }
}

/*

  BUTTON MENU
----------------------------------------------- */
.btnMenu {
  position: relative;
  z-index: 11;
  display: none;
  width: 50px;
  height: 100%;
}
.btnMenu span {
  margin: 4px auto;
  width: 27px;
  height: 2px;
  background: var(--color-pink);
  content: "";
  text-indent: -9999px;
  transition: 0.3s;
}
.btnMenu::after {
  content: "メニュー";
  font-size: 10px;
  color: var(--color-pink);
}
@media (max-width: 768px) {
  .btnMenu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}

.isMenuOpen .btnMenu span:nth-child(1) {
  rotate: 135deg;
  translate: 0 5px;
}
.isMenuOpen .btnMenu span:nth-child(2) {
  rotate: -135deg;
  translate: 0 -5px;
}
.isMenuOpen .btnMenu::after {
  content: "閉じる";
}

/*

  FOOTER
----------------------------------------------- */
.footer {
  margin-top: 100px;
  padding: 30px;
  text-align: center;
}
@media (max-width: 768px) {
  .footer {
    margin-bottom: 60px;
  }
}
.footer .copyright {
  font-size: 14rem;
}

/* ------------------------------------------------------ */
.header-cta .tel {
  visibility: hidden;
}
.service .menu .desc{
  text-decoration: none !important;
}