@charset "UTF-8";

.c-lead {
  font-size: 2.6rem;
  line-height: 1.8;
  font-weight: 700;
  margin-bottom: var(--space-s);
}

.c-lead--decor {
  position: relative;
  padding-left: 40px;
  box-sizing: border-box;
  margin-bottom: var(--space-m);
}

.c-lead--decor::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: calc(2.8px * 10);
  height: calc(12px * 10);
  background: url("../img/common/lead-decor.svg") no-repeat center / contain;
  transform: translateY(-50%);
}

.c-text {
  text-align: justify;
}

.u-num {
  font-size: 7rem;
  color: var(--color-yellow-deep);
  line-height: 1;
}

.c-bgSep {
  width: 100%;
  height: auto;
}


/*----------------------------------------------------
  loading
----------------------------------------------------*/
.c-loading {
  width: 100%;
  height: 100vh;
  position: fixed;
  background: rgb(255, 255, 255);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b3dced', endColorstr='#bce0ee', GradientType=1);
  z-index: 99999;
  top: 0;
  left: 0;
}

.spinner-box {
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.circle-border {
  width: 50px;
  height: 50px;
  padding: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: linear-gradient(0deg, rgba(63, 249, 220, 0.1) 33%, rgba(63, 249, 220, 1) 100%);
  animation: spin .8s linear 0s infinite;
}

.circle-core {
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 50%;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(359deg);
  }
}

/*----------------------------------------------------
  animation
----------------------------------------------------*/
.c-fadeInUP {
  will-change: opacity, transform;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.c-isfadeInUP {
  opacity: 1;
  transform: translateY(0);
}

.c-fadeInScale {
  will-change: opacity, transform;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1s ease, transform 1s ease;
}

.c-isfadeInScale {
  opacity: 1;
  transform: scale(1);
}

/*----------------------------------------------------
  link btn
----------------------------------------------------*/
.c-btn__wrapper {
  display: flex;
  justify-content: center;
}

.c-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 320px;
  height: 68px;
  font-size: 1.6rem;
  letter-spacing: .075em;
  font-weight: 700;
  background: rgba(147, 207, 237, 0.5);
  color: #2f6f8a;
  position: relative;
  border-radius: 50vh;
  transition: 0.4s ease;

}

.c-btn:hover {
  background: rgba(147, 207, 237, 0.8);
}

.c-btn::after {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background: url('/assets/img/common/arrow-right--w.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 10px;
  transition: 0.4s ease;
}

.c-btn:hover::after {
  transform: translateX(4px);
}

.c-btn--center {
  margin: 0 auto;
}

/*----------------------------------------------------
  header components
----------------------------------------------------*/
.c-logo {
  width: auto;
}

.c-logo a {
  display: flex;
  align-items: center;
  width: auto;
  height: 100%;
}

.c-logo a img {
  width: auto;
  height: 36px;
}

.logo-w {
  display: block;
}

.scroll .logo-w {
  display: none;
}

.logo-main {
  display: none;
}

.scroll .logo-main {
  display: block;
}

.c-navigation {
  width: 85%;
  height: auto;
  display: flex;
  justify-content: flex-end;
}

.c-gnav {
  width: 100%;
  height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.c-gnav__list {
  height: 100%;
  display: flex;
  padding: 0 2.5%;
  border-radius: 50vh;
  list-style: none;
  background: rgba(255, 255, 255, .6);
}

.c-gnav__item {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.c-gnav__link {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 10px;
  line-height: 1.3;
}

.c-gnav__label {
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1.2rem;
}

.c-gnav__name {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0;
}

.c-nav__cta-link {
  width: 200px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-cta-text);
  background: var(--gradient-cta);
  box-shadow: var(--shadow-cta);
  text-shadow: 0 1px 8px rgba(120, 70, 100, 0.18);
  border-radius: 8px;
  margin-left: 15px;
}

.c-nav__cta-icon {
  width: 20px;
  margin-right: 5px;
}

.c-nyancos {
  margin-left: 20px;
}

.c-nyancos__link {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.c-nyancos__icon {
  display: block;
  width: auto;
  height: 50px;
}

.c-nav-info {
  width: 60%;
  height: auto;
  box-sizing: border-box;
}

.c-nav-addList {
  width: 100%;
  color: #fff;
  list-style: none;
  margin-bottom: var(--space-xs);
}

.c-nav-addItem {
  font-size: 1.4rem;
}

.c-nav-addItem>a {
  color: #fff;
}

.c-nav-addItem-logo {
  width: 40%;
  margin-bottom: var(--space-xs);
}

/*---レスポンシブ用----*/
.c-gnav__itemSub {
  display: flex;
  flex-direction: column;
  list-style: none;
  width: 100%;
  height: auto;
  box-sizing: border-box;
}

.c-gnav__itemSub.u-sp-only {
  display: none;
}

.c-gnav__itemSub-inner {
  display: flex;
  align-items: center;
  padding-left: 10px;
}

.c-gnav__itemSub-inner::before {
  display: block;
  content: '';
  width: 10px;
  height: 2px;
  border-top: 1px solid #fff;
  margin-right: 8px;
}

/*----------------------------------------------------
  nav-toggle
----------------------------------------------------*/
.c-nav-toggle {
  display: none;
  position: fixed;
  top: 12px;
  right: 5%;
  transform: translate(0, 0);
  width: 32px;
  height: 56px;
  z-index: 1001;
  cursor: pointer;
}

.c-nav-toggle>span {
  position: absolute;
  left: 50%;
  width: 100%;
  height: 3px;
  transform: translate(-50%, 0);
  background: var(--color-yellow-deep);
  border-radius: 50vh;
  transition: all .4s;
}

.scroll .c-nav-toggle>span {
  background: var(--color-yellow-deep);
}

.c-nav-toggle>span:nth-of-type(1) {
  top: 8px;
}

.c-nav-toggle>span:nth-of-type(2) {
  position: absolute;
  right: 0;
  top: 18px;
}

.c-nav-toggle>span:nth-of-type(3) {
  top: 28px;
}

.c-nav-toggle.active>span {
  width: 36px;
  height: 3px;
  position: absolute;
  left: 50%;
  background: var(--color-yellow-deep);
}

.c-nav-toggle.active>span:nth-of-type(1) {
  top: 0;
  -webkit-transform: translateY(20px) rotate(-45deg);
  transform: translate(-50%, 20px) rotate(-45deg);
}

.c-nav-toggle.active>span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active-menu-bar .8s forwards;
  animation: active-menu-bar02 .8s forwards;
}

@-webkit-keyframes active-menu-bar {
  100% {
    height: 0;
  }
}

@keyframes active-menu-bar {
  100% {
    height: 0;
  }
}

.c-nav-toggle.active>span:nth-of-type(3) {
  top: 40px;
  -webkit-transform: translateY(-20px) rotate(45deg);
  transform: translate(-50%, -20px) rotate(45deg);
}

.c-toggle-text {
  width: 100%;
  height: 12px;
  text-align: center;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 1rem;
  white-space: nowrap;
}

.active .c-toggle-text,
.scroll .c-toggle-text {
  color: var(--color-yellow-deep);
}

.c-toggle-text::after {
  display: inline-block;
  content: 'MENU';
  width: 100%;
  height: 12px;
  color: var(--color-yellow-deep);
  font-size: 1rem;
}

.c-nav-toggle.active .c-toggle-text::after {
  content: 'CLOSE';
}

/*----------------------------------------------------
  見出し
----------------------------------------------------*/
.c-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-style: normal;
  line-height: 1.8;
  margin-bottom: var(--space-l);
  position: relative;
}

.c-heading::after {
  display: block;
  content: '';
  width: calc(579px * .4);
  height: calc(40px * .4);
  background: url('/assets/img/common/underline--pink.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: .5;
  margin-top: 5px;
  order: 4;
}

.c-heading__title {
  order: 2;
  font-size: 3rem;
  position: relative;
}

.c-heading__label {
  color: var(--color-primary-soft);
  font-size: 1.6rem;
  letter-spacing: .2em;
  margin-left: .2em;
  order: 1;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

/*----------------------------------------------------
  cta
----------------------------------------------------*/
.p-cta {
  background: var(--gradient-cta-section);
  padding: 150px 0 120px 0;
  z-index: 1;
}

.p-cta__bg {
  width: 100%;
  height: auto;
  aspect-ratio: 192/10;
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translate(-50%, 0);
}

.p-cta__bg-inner {
  width: 100%;
  height: auto;
  aspect-ratio: 192/10;
  overflow: hidden;
}

.p-cta__bg-inner>img {
  width: 100vw;
  height: auto;
  aspect-ratio: 192/10;
}

.p-cta__head {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-xs);
}

.p-cta__heading {
  font-size: 3rem;
  color: #6f4357;
}

.p-cta__head-desc {
  display: inline-block;
  color: var(--color-primary-dark);
  padding: 0 var(--space-s);
  border: 3px solid var(--color-primary);
  background: #fff;
  border-radius: 50vh;
  margin-bottom: 5px;
}

.p-cta__links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-xs);
}

.p-cta__link {
  width: 100%;
  max-width: 480px;
  height: 90px;
  font-size: 2rem;
  line-height: 1.4;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
}

.p-cta__link-mail {
  color: var(--color-cta-text);
  background: var(--gradient-cta);
  box-shadow: var(--shadow-cta);
}

.p-cta__link-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-cta__link-icon {
  width: 20px;
  margin-right: 8px;
  flex-shrink: 0;
}

.p-cta__link-desc {
  font-weight: 700;
  margin-bottom: 0 !important;
}

.p-cta__link-notes {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  font-weight: normal;
  text-align: center;
}

.p-cta__attention {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  text-align: center;
}

.p-cta__comment {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 280px;
  position: absolute;
  bottom: -5%;
  right: 2.5%;
}

.p-cta__comment-text {
  font-size: 1.4rem;
  text-align: center;
  background: #fff;
  padding: var(--space-s);
  border-radius: 20px;
  color: #E47DA4;
  font-weight: 700;
}

.p-cta__comment-icon {
  width: 68px;
  margin-left: auto;
  margin-right: 5%;
}

.p-cta__visual {
  position: relative;
  width: min(420px, 100%);
  height: 260px;
}

.p-cta__card {
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: 180px;
  min-height: 250px;
  padding: 40px 22px;
  border-radius: 24px;
  backdrop-filter: blur(10px);
  transform-origin: 50% 100%;
  position: absolute;
  overflow: hidden;
}

.p-cta__card span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-primary-dark);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.p-cta__card-title {
  margin-top: 6px;
  color: var(--color-text-main);
  font-size: 1.8rem;
  font-weight: 700;
}

.p-cta__card-list {
  margin-top: 14px;
  padding: 0;
  list-style: none;
}

.p-cta__card-list li {
  position: relative;
  padding-left: 1.2em;
  color: var(--color-text-sub);
  font-size: 1.2rem;
  line-height: 1.7;
}

.p-cta__card-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--color-primary-soft);
  border-radius: 50%;
}

.p-cta__card-meter {
  overflow: hidden;
  height: 8px;
  margin-top: 16px;
  background: var(--color-bg-sub);
  border-radius: 999px;
}

.p-cta__card-meter span {
  display: block;
  height: 100%;
  background: var(--gradient-cta);
  border-radius: inherit;
}

.p-cta__card-note {
  margin-top: 10px;
  color: var(--color-text-sub);
  font-size: 1.2rem;
}

.p-cta__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 5px;
}

.p-cta__card-tags span {
  padding: 2.5px 10px;
  color: var(--color-primary-dark);
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--color-primary-light);
  border-radius: 999px;
}

.p-cta__card--01 {
  background: rgba(255, 250, 250, 0.9);
  border-color: rgba(228, 181, 199, 0.55);
  box-shadow: 0 18px 42px rgba(228, 181, 199, 0.28);
  z-index: 1;
  transform: translateX(-92%) rotate(-12deg);
}

.p-cta__card--02 {
  background: rgba(247, 238, 248, 0.92);
  border-color: rgba(203, 178, 255, 0.5);
  box-shadow: 0 20px 46px rgba(203, 178, 255, 0.28);
  z-index: 3;
  transform: translateX(-50%) translateY(-18px) rotate(0deg);
}

.p-cta__card--03 {
  background: rgba(255, 250, 250, 0.9);
  border-color: rgba(228, 181, 199, 0.55);
  box-shadow: 0 18px 42px rgba(228, 181, 199, 0.28);
  z-index: 2;
  transform: translateX(-8%) rotate(12deg);
}

.p-cta__card {
  animation: ctaCardFloat 4.5s ease-in-out infinite;
}

.p-cta__card--02 {
  animation-delay: 0.3s;
}

.p-cta__card--03 {
  animation-delay: 0.6s;
}

@keyframes ctaCardFloat {

  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -8px;
  }
}

.p-bg__cta {
  height: 100% !important;
  overflow: hidden;
}

/*----------------------------------------------------
  contact
----------------------------------------------------*/
.p-contact {
  background: var(--gradient-cta-section);
  padding: 150px 0 120px 0;
  z-index: 1;
}

.p-contact__bg {
  width: 100%;
  height: auto;
  aspect-ratio: 192/10;
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translate(-50%, 0);
}

.p-contact__bg-inner {
  width: 100%;
  height: auto;
  aspect-ratio: 192/10;
  overflow: hidden;
}

.p-contact__bg-inner>img {
  width: 100vw;
  height: auto;
  aspect-ratio: 192/10;
}

.p-contact__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.p-contact__lead {
  width: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  font-weight: 700;
  font-size: 2.6rem;
  background: linear-gradient(45deg, #bfa3ff, #ff91a6, #ff7ccb);
  -webkit-background-clip: text;
  /* 文字でクリップ */
  background-clip: text;
  color: transparent;
  margin-bottom: var(--space-l);
}

.p-contact__lead::before,
.p-contact__lead::after {
  display: block;
  content: '';
  flex: 1;
  border: 1px dashed var(--color-border);
}

.p-contact__body {
  width: 40%;
  margin-right: 2.5%;
}

.p-contact__head {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-xs);
}

.p-contact__heading {
  font-size: 3rem;
  color: #6f4357;
}

.p-contact__head-desc {
  display: inline-block;
  color: var(--color-primary-dark);
  padding: 0 var(--space-s);
  border: 3px solid var(--color-primary);
  background: #fff;
  border-radius: 50vh;
  margin-bottom: 5px;
}

.p-contact__links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-xs);
}

.p-contact__link {
  width: 100%;
  max-width: 480px;
  height: 90px;
  font-size: 2rem;
  line-height: 1.4;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
}

.p-contact__link-mail {
  color: var(--color-cta-text);
  background: var(--gradient-cta);
  box-shadow: var(--shadow-cta);
}

.p-contact__link-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-contact__link-icon {
  width: 20px;
  margin-right: 8px;
  flex-shrink: 0;
}

.p-contact__link-desc {
  font-weight: 700;
  margin-bottom: 0 !important;
}

.p-contact__link-notes {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  font-weight: normal;
  text-align: center;
}

.p-contact__attention {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  text-align: center;
}

.p-cta__contact {
  height: 100% !important;
  overflow: hidden;
}


/*----------------------------------------------------
  breadcrumb
----------------------------------------------------*/
.c-breadcrumb {
  padding: var(--space-xs) 0;
}

.c-breadcrumb .l-inner {
  max-width: 1100px;
}

.c-breadcrumb__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.c-breadcrumb__item {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
}

.c-breadcrumb__item>a {
  display: inline-flex;
  align-items: center;
}

.c-breadcrumb__item>a>img {
  width: 20px;
  margin-right: 10px;
  margin-bottom: 5px;
}

.c-breadcrumb__item:not(:last-of-type)::after {
  content: ">";
  padding: 0 10px;
  color: #ccc;
}


/*----------------------------------------------------
 mobile-nav
----------------------------------------------------*/
.c-mobile-nav {
  width: 100%;
  max-width: 480px;
  height: 60px;
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 99;
  box-sizing: border-box;
  transform: translateY(100%);
  transition: transform 0.8s ease;
}

.c-mobile-nav.active {
  transform: translateY(0);
}


.c-mobile-nav__list {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  list-style: none;
}

.c-mobile-nav__item {
  width: 50%;
  height: 60px;
  position: relative;
}

.c-mobile-nav__link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  line-height: 1.2;
  box-sizing: border-box;
}

.c-mobile-nav__item-tel {
  background: var(--color-gradi-orange);
}

.c-mobile-nav__item-mail {
  background: #F080A2;
}

.c-mobile-nav__icon {
  width: 20px;
  max-height: 28px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  margin-right: 5px;
}

.c-mobile-nav__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 700;
}

.c-mabile-nav__bg {
  width: 40px;
  position: absolute;
  top: -15px;
  left: 10px;
}


/*----------------------------------------------------
  footer
----------------------------------------------------*/

.c-footer__top {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, .4);
  padding: 100px 0 20px 0;
  margin-bottom: 100px;
}

.c-footer__logo {
  width: 200px;
  height: auto;
}

.c-footer__nav-list {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  font-weight: 700;
  list-style: none;
  margin-bottom: 10px;
}

.c-footer__nav-item>a {
  padding-left: var(--space-s);
}

.c-footer__bottom {
  font-size: 1.2rem;
  padding-bottom: var(--space-s);
}

.c-footer__link-list {
  display: flex;
  margin-bottom: 5px;
  list-style: none;
}

.c-footer__link-item {
  display: flex;
  line-height: 1;
}

.c-footer__link-item:not(:last-of-type)::after {
  display: block;
  content: '';
  border-right: 2px solid rgba(255, 255, 255, .5);
  margin: 0 var(--space-xs);
}

.c-footer__copy {
  letter-spacing: .05em;
}

@media screen and (max-width:1440px) {

  /*---footer---*/
  .c-footer-nav {
    flex-direction: column;
    align-items: center;
  }

  .c-footer-nav__list {
    margin-bottom: var(--space-l);
  }
}

@media screen and (max-width:1280px) {
  .c-gnav__link {
    padding: 0 10px;
  }

  .c-nav__cta-link {
    width: 160px;
  }
}

@media screen and (max-width:1024px) {

  /*---c-nav-toggle---*/
  .c-nav-toggle {
    display: block;
  }

  /*---overlay---*/
  .c-navigation {
    width: 100%;
    max-width: initial;
    height: 100vh;
    background: #212221;
    display: flex;
    flex-direction: row-reverse;
  }

  .c-navigation.overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    padding: 0;
    box-sizing: border-box;
    -ms-overflow-style: none;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
  }

  .c-navigation.overlay.is-open {
    width: 100%;
    opacity: 1;
    visibility: visible;
  }

  .c-gnav {
    width: 100%;
    height: auto;
    overflow-y: scroll;
  }

  .c-gnav::-webkit-scrollbar {
    display: none;
  }

  .c-gnav {
    width: 70%;
    height: auto;
    padding: 80px 50px;
    display: flex;
    box-sizing: border-box;
    justify-content: space-around;
    align-items: center;
  }

  .c-gnav__list {
    width: 40%;
    flex-direction: column;
    align-items: flex-start;
    border-right: 1px solid #eee;
  }

  .c-gnav__item {
    width: 100%;
    height: auto;
    padding: 0;
  }

  .c-gnav__link {
    width: 100%;
    height: auto;
    color: #fff;
    padding: 10px 0;
    align-items: flex-start;
  }

  .scroll .c-gnav__link {
    color: #fff;
  }

  .c-gnav__itemSub.u-sp-only {
    display: flex;
    flex-direction: column;
    list-style: none;
    width: 100%;
    height: auto;
    box-sizing: border-box;
  }

  .c-gnav__itemSub-inner {
    display: flex;
    align-items: center;
    padding-left: 10px;
  }

  .c-gnav__itemSub-inner::before {
    display: inline-block;
    content: '';
    width: 10px;
    height: 2px;
    border-top: 1px solid #fff;
    margin-right: 8px;
  }

  .c-gnav__itemSub-inner>a {
    color: #fff;
  }

  .c-gnav__label {
    display: none;
  }

  .c-gnav__name {
    font-size: 1.6rem;
  }

  .c-nav__cta-link.u-pc-only {
    display: none;
  }

  .c-nav-info {
    display: block;
    width: 60%;
    max-width: initial;
    height: auto;
    text-align: initial;
    margin-left: 0;
    background: none;
    font-weight: normal;
    border-radius: 0;
    padding-left: 5%;
    box-sizing: border-box;
  }

  .c-nav__cta-link {
    width: 80%;
    margin-left: 0;
  }

  .c-nyancos {
    position: absolute;
    bottom: 10%;
    right: 10%;
  }

  /*--- footer ---*/
  .footer-top {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-logo {
    margin-right: 20px;
  }

  .footer-top-inner {
    width: auto;
  }

  .footer-top-sns {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
  }

  .footer-link>a {
    width: 30%;
  }

}

@media screen and (max-width:896px) {

  /*--- footer ---*/
  .footer-nav {
    max-width: initial;
  }

  .footer-nav ul {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-link {
    justify-content: center;
  }

  .footer-link>a {
    width: 30%;
  }

  .footer-link>a {
    width: 35%;
  }
}

@media screen and (max-width:787px) {
  .c-lead {
    font-size: 2.2rem;
  }

  /*--- footer ---*/
  .footer-logo {
    width: 160px;
  }

  .footer-top-inner {
    width: calc(100% - 180px);
  }

}

@media screen and (max-width:680px) {

  /*---header---*/
  .c-logo {
    display: flex;
  }

  .c-navigation-btn.u-pc-only {
    display: none;
  }

  /*--- footer ---*/
  .footer {
    width: 90%;
  }

  .footer-top-inner>h2 {
    font-size: 1.2rem;
  }

  .footer-top-inner>p {
    font-size: 1rem;
  }

  .footer-link>a {
    width: 45%;
  }
}

@media screen and (max-width:480px) {
  .c-lead {
    font-size: 1.8rem;
  }

  .c-btn {
    height: 56px;
    font-size: 1.4rem;
    font-weight: normal;
  }

  /*---大見出し---*/
  .c-heading {
    margin-bottom: var(--space-m);
  }

  .c-heading__title {
    font-size: 2rem;
  }

  .c-heading__icon {
    width: 36px;
  }

  .c-heading__label {
    font-size: 1.4rem;
  }


  /*---header---*/

  .c-logo>a,
  .c-logo>a>img,
  .c-logo>a>svg {
    display: block;
    width: auto;
    height: 56px;
  }

  .c-gnav {
    width: 100%;
    padding: 80px 5% 80px 5%;
    box-sizing: border-box;
  }

  .c-gnav__list {
    width: 100%;
    max-width: initial;
    margin-bottom: 20px;
  }

  .c-gnav__link {
    font-size: 1.6rem;
  }

  .c-gnav__item-link {
    padding: 10px 16px;
    box-sizing: border-box;
  }

  .c-navigation-btn.u-sp-only {
    font-size: 1.6rem;
  }

  /*---toggle---*/
  .c-nav-toggle {
    width: 60px;
    height: 60px;
    top: 7px;
  }

  .c-nav-toggle>span:nth-of-type(1) {
    top: 16px;
  }

  .c-nav-toggle>span:nth-of-type(2) {
    top: 24px;
  }

  .c-nav-toggle>span:nth-of-type(3) {
    top: 32px;
  }

  .c-nav-toggle__text {
    bottom: 9px;
    font-size: 0.9rem;
  }

  /*---sp---*/
  .c-gnav__link-icon {
    width: 30px;
    margin-bottom: 0;
  }

  .c-gnav__link-name {
    font-size: 1.4rem;
  }

  .c-navigation-cta {
    flex-direction: column;
  }

  .c-navigation-cta .c-footer-cta__btn {
    width: 100%;
    height: 68px;
    font-size: 1.6rem;
  }

  .c-navigation-cta .c-footer-cta__name>span {
    font-size: 1.2rem;
  }

  .c-navigation-cta .c-footer-cta__icon {
    width: auto;
    height: 30px;
    top: -17px;
  }

  .c-navigation-btn.u-sp-only {
    height: 68px;
  }

  .c-navigation-btn.u-sp-only .c-navigation-btn__icon {
    width: 50px;
    margin-right: 10px;
  }

  .c-navigation-addList {
    flex-direction: column;
  }

  .c-navigation-addItem {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .c-navigation-addItem:not(:last-of-type) {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-border-light);
  }

  .c-navigation-addItem>img {
    border-radius: 10px;
    width: 35%;
  }

  .c-navigation-addList__inner {
    width: 62.5%;
  }

  .c-navigation-addItem__name {
    font-size: 1.1rem;
    margin-top: 0;
    padding: 2.5px 14px;
  }

  .c-navigation-addItem__text {
    font-size: 1rem;
    padding: 0;
  }

  .c-navigation-addItem__tel>span {
    font-size: 1rem;
  }

  .c-navigation-addItem__tel>a {
    line-height: 1.4;
    font-size: 1.6rem;
  }

  /*--- footer ---*/
  footer {
    padding-bottom: 80px;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    width: 50%;
    margin-bottom: 14px;
    margin-right: 0;
    order: 1;
  }

  .footer-top-sns {
    order: 2;
    margin-top: 14px;
  }

  .footer-top-inner {
    width: 100%;
    order: 3;
    margin-top: 14px;
    text-align: center;
  }

  .footer-nav ul {
    padding: 0 10px;
    box-sizing: border-box;
    justify-content: flex-start;
  }

  .footer-nav li {
    width: 50%;
    padding: 0;
  }

  .footer-nav li>a {
    justify-content: flex-start;
    padding: 0;
  }

  .footer-link {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .footer-link>a {
    width: 49%;
  }

  .footer-link>a:nth-child(n+2) {
    margin-left: 0;
  }

  .footer-link>a:nth-child(n+3) {
    margin-top: 5px;
  }
}