@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
}

:root {
  --bg-purple-gradient: linear-gradient(45deg, #c3bfe9 25%, #b0e0e6 100%);
  --bg-pink-gradient: linear-gradient(45deg, #d8bfd8 25%, #bfd8bf 100%);
  --bg-aqua-solid: #b0c4de;
}

html {
  font-size: 62.5%;
  scroll-behavior: auto;
}

body {
  font-family: 'Inter', 'Kiwi Maru', 'Hiragino Kaku Gothic ProN', 'YuGothic', 'Meiryo', sans-serif;
  color: #343d3e;
  font-size: clamp(1.4rem, 1.6vw, 1.6rem);
  font-weight: 400;
  text-align: justify;
  word-break: break-all;
  line-height: 2;
  letter-spacing: .005em;
}

main {
  position: relative;
  overflow: hidden;
}

/*---link---*/
a {
  text-decoration: none;
  color: #1c3843;
  position: relative;
  transition: all 0.3s ease;
}

/*---image---*/
img,
picture {
  display: block;
  width: 100%;
  height: auto;
}

/*---fonts---*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}

.font--serif {
  font-family: "YuMincho", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-style: normal;
}

.font--en {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.font--green {
  color: #41767d;
}

.font--lgreen {
  color: #add7d8;
}

.font--lblue {
  color: #B3CBEC;
}

.font--lpink {
  color: #d8add8;
}

.font--pink {
  color: #E35BA6;
}

p:not(:last-of-type) {
  margin-bottom: 14px;
}

.bg--purple {
  background: #c3bfe9;
}

.bg--aqua {
  background: #b0e0e6;
}

.bg--pink {
  background: #d8bfd8;
}

.bg--lblue {
  border: 2px solid #B3CBEC;
  color: #B3CBEC;
}

.ui--sp {
  display: none;
}

/*---spacer---*/
.spacer-bottom20 {
  margin-bottom: 20px;
}


.fadeInUP {
  will-change: opacity, transform;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.is-fadeInUP {
  opacity: 1;
  transform: translateY(0);
}

.fadeInScale {
  will-change: opacity, transform;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1s ease, transform 1s ease;
}

.is-fadeInScale {
  opacity: 1;
  transform: scale(1);
}

/*----------------------------------------------------
  common
----------------------------------------------------*/
.section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 30px;
}

.section-heading__title {
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 500;
  order: 2;
}

.section-heading__label {
  width: auto;
  height: 48px;
  order: 1;
  margin-bottom: 14px;
}


.l-inner {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

.l-col {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.l-col--column {
  display: flex;
  flex-direction: column;
}

/*---link-btn---*/
.link-btn__wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 760px;
  margin: 0 auto;
}

.link-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 49.5%;
  height: 80px;
  font-weight: 500;
  font-size: 1.8rem;
  background: #fff;
  position: relative;
  border-radius: 50vh;
}

.link-btn::before {
  display: block;
  content: '';
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background: var(--bg-purple-gradient);
  border-radius: 50vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.link-btn::after {
  display: block;
  content: '';
  width: calc(20px * .8);
  height: calc(15px * .8);
  background: url('../img/common/arrow--right-gradi.svg');
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
}

section {
  padding: 150px 0;
  position: relative;
}

.container {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}


/*----------------------------------------------------
  #loading
----------------------------------------------------*/
.loading {
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}

.loading__inner {
  width: auto;
  height: auto;
}

.loading__inner>img {
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
}

/*----------------------------------------------------
  header
----------------------------------------------------*/
header {
  width: 95%;
  height: 80px;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  border: 1px solid #fff;
  border-radius: 50vh;
  box-sizing: border-box;
  transition: .5s cubic-bezier(.4, 0, .2, 1);
}

header.scroll {
  border: none;
}

.global-nav__wrapper {
  width: 100%;
  height: auto;
  transition: 1s cubic-bezier(.4, 0, .2, 1);
}

.scroll .global-nav__wrapper {
  background: rgba(28, 56, 67, .3);
  backdrop-filter: blur(30px);
  border-radius: 50vh;
}

.global-nav {
  width: 90%;
  height: 80px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.global-nav__logo {
  width: auto;
  height: 36px;
  position: relative;
  z-index: 1;
}

.global-nav__logo>a,
.global-nav__logo>a>img,
.global-nav__logo>a>svg {
  width: auto;
  height: 100%;
}

.navigation {
  width: auto;
  height: 100%;
  margin-left: auto;
  transition: none;
}

.gnav {
  height: 100%;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.gnav__list {
  height: 100%;
  display: flex;
  list-style: none;
}

.gnav__item {
  display: inline-block;
  width: auto;
  height: 100%;
}

.gnav__item--current .gnav__item-link {
  position: relative;
}

.gnav__item--current .gnav__item-link::after {
  display: inline-block;
  content: '';
  width: 8px;
  height: 8px;
  background: #9EB9BC;
  border-radius: 50vh;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 0);
}

.gnav__item-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 100%;
  font-size: 1.5rem;
  padding: 0 10px;
  color: #fff;
}

.navigation-cta {
  width: auto;
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.navigation-cta--pc {
  display: none;
}

.navigation-cta__btn {
  width: 170px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  line-height: 1.4;
  border-radius: 8px;
  box-sizing: border-box;
  color: #fff;
  transition: .5s;
  position: relative;
}

.navigation-cta--trial {
  background: var(--bg-purple-gradient);
}

.navigation-cta--general {
  background: var(--bg-pink-gradient);
}

.navigation-cta--seminar {
  display: none;
  background: var(--bg-aqua-solid);
}

.navigation-cta__btn-icon {
  width: 32px;
  margin-right: 6px;
}

.navigation-cta__btn-main {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.navigation-cta__btn-sub {
  font-size: 1rem;
}

.navigation-cta>a:not(:last-child) {
  margin-right: 5px;
}

.navigation-cta>a>span:nth-of-type(2) {
  display: flex;
  align-items: center;
}

.gnav-info {
  display: none;
}

.gnav-info__list {
  list-style: none;
}

.global-nav__bg-flower {
  display: none;
  position: absolute;
  top: 0;
  left: -10%;
  width: 35%;
}

/*----------------------------------------------------
  #nav-toggle
----------------------------------------------------*/
.nav-toggle {
  display: none;
  position: fixed;
  top: 0;
  right: 20px;
  width: 60px;
  height: 80px;
  z-index: 1001;
  cursor: pointer;
}

.nav-toggle>span {
  display: inline-block;
  width: 50%;
  height: 3px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  background: #fff;
  border-radius: 3px;
  transition: all .4s;
  box-sizing: border-box;
}

.scroll .nav-toggle>span {
  background: #fff;
}

.nav-toggle>span:nth-of-type(1) {
  top: 30px;
}

.nav-toggle>span:nth-of-type(2) {
  top: 40px;
  right: 0;
}

.nav-toggle>span:nth-of-type(3) {
  top: 50px;
}

.nav-toggle.is-active>span {
  height: 3px;
  left: 50%;
  transform: translate(-50%, 0);
  background: #c3bfe9;
}

.nav-toggle.is-active>span:nth-of-type(1) {
  top: 20px;
  transform: translate(-50%, 20px) rotate(-45deg);
  -webkit-transform: translate(-50%, 20px) rotate(-45deg);
}

.nav-toggle.is-active>span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  animation: active-menu-bar02 .8s forwards;
  -webkit-animation: active-menu-bar .8s forwards;
}

@-webkit-keyframes active-menu-bar {
  100% {
    height: 0;
  }
}

@keyframes active-menu-bar {
  100% {
    height: 0;
  }
}

.nav-toggle.is-active span:nth-of-type(3) {
  top: 60px;
  transform: translate(-50%, -20px) rotate(45deg);
  -webkit-transform: translate(-50%, -20px) rotate(45deg);
}

/*----------------------------------------------------
  cta
----------------------------------------------------*/
.cta__wrapper {
  width: 85%;
  margin: 0 auto;
}

.cta__lead--wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cta__lead--wrapper::before {
  display: block;
  content: '';
  width: calc(8px * 1.8);
  height: calc(9.6px * 1.8);
  background: url('../img/common/icon__dia.svg');
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 10px;
}

.cta__lead {
  width: 100%;
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.cta__lead::before,
.cta__lead::after {
  display: block;
  content: '';
  flex: 1;
  border-top: 2px dotted #b0c4de;
}

.cta__lead::before {
  margin-right: 10px;
}

.cta__lead::after {
  margin-left: 10px;
}

.cta__text {
  text-align: center;
  margin-bottom: 20px;
}

.cta-col {
  display: flex;
  justify-content: space-between;
}

.cta-btn {
  width: 32%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 14px;
}

.cta-btn__first {
  background: var(--bg-purple-gradient);
}

.cta-btn__all {
  background: var(--bg-pink-gradient);
}

.cta-btn__seminor {
  background: var(--bg-aqua-solid);
}

.cta-btn__icon {
  width: 50px;
  margin-right: 10px;
}

.cta-btn__text {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.4;
}

.cta-btn__seminor .cta-btn__text {
  font-size: 1.8rem;
  text-align: center;
}

.cta-btn__text-sub {
  font-size: 1.4rem;
}

/*----------------------------------------------------
  blur-bg
----------------------------------------------------*/

.blur-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
  transition: background-color 0.6s ease;
  background: #b9d8dc;
}

.blob {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(60px);
  animation: float 15s infinite ease-in-out;
}

.blob1 {
  background: #f8d7dd;
  top: -10%;
  left: -15%;
  animation: float 15s infinite ease-in-out;
}

.blob2 {
  background: #fcded2;
  top: 20%;
  left: 70%;
  animation: float2 15s infinite ease-in-out;
}

.blob3 {
  background: #d9d6e0;
  top: 65%;
  left: 20%;
  animation: float2 15s infinite ease-in-out;
}

.blob4 {
  background: #f5f5f5;
  top: 70%;
  left: 65%;
  animation: float 15s infinite ease-in-out;

}

@keyframes float {
  0% {
    transform: translate(0, 0) scale(.6);
    opacity: .3;
  }

  50% {
    transform: translate(100px, -80px) scale(1);
    opacity: .8;
  }

  100% {
    transform: translate(0, 0) scale(.6);
    opacity: .3;
  }
}

@keyframes float2 {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: .8;
  }

  50% {
    transform: translate(100px, -80px) scale(.6);
    opacity: .3;
  }

  100% {
    transform: translate(0, 0) scale(1);
    opacity: .8;
  }
}

/*----------------------------------------------------
  parallax
----------------------------------------------------*/

.parallax {
  position: relative;
  overflow: hidden;
}

.parallax::before {
  display: block;
  content: '';
  width: 100%;
  padding-top: 35.4%;
}

.parallax::after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(28, 56, 67, .4);
}

.parallax__image {
  position: absolute;
  top: 0;
  left: 0;
}

.parallax-logo {
  position: absolute;
  top: 52.5%;
  right: 5%;
  transform: translate(0, -50%);
  width: 22.5%;
  mix-blend-mode: difference;
  z-index: 1;
}

/*----------------------------------------------------
 side-cta
----------------------------------------------------*/
.side-cta {
  position: fixed;
  top: 160px;
  right: 0;
  width: 70px;
  height: 86px;
  background: var(--bg-aqua-solid);
  border-radius: 10px 0 0 10px;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1;
}

.side-cta__link-image {
  width: 38px;
  margin: 0 auto;
}

.side-cta__link-text {
  text-align: center;
  font-size: 1.1rem;
  letter-spacing: 0;
}

/*----------------------------------------------------
#mobile-nav
----------------------------------------------------*/
#mobile-nav {
  width: 100%;
  max-width: 480px;
  height: 60px;
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1001;
  box-sizing: border-box;
  transform: translateY(100%);
  transition: transform 0.8s ease;
}

#mobile-nav.active {
  transform: translateY(0);
}


.mobile-nav__list {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  list-style: none;
}

.mobile-nav__item {
  height: 60px;
}

.mobile-nav__item:not(.mobile-nav__item-seminor) {
  flex: 1;
}

.mobile-nav__item-seminor {
  width: 70px;
}

.mobile-nav__link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  box-sizing: border-box;
  color: #fff;
}

.mobile-nav__link--first {
  flex: 1;
  background: var(--bg-purple-gradient);
}

.mobile-nav__link--all {
  background: var(--bg-pink-gradient);
}

.mobile-nav__link--seminor {
  flex-direction: column;
  background: var(--bg-aqua-solid);
}

.mobile-nav__icon {
  width: 28px;
  height: 28px;
  margin-right: 4px;
}

.mobile-nav__item-seminor .mobile-nav__icon {
  margin-right: 0;
}

.mobile-nav__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.3rem;
}

.mobile-nav__link--seminor .mobile-nav__text {
  font-size: 1.05rem;
  text-align: center;
}

.mobile-nav__text-sub {
  font-size: 1.3rem;
}

.mobile-nav__item--all .mobile-nav__text-sub {
  font-size: 1.15rem;
  white-space: nowrap;
}

/*------------------------------------
 .footer
------------------------------------*/
.site-footer {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.site-footer .l-inner {
  padding: 200px 0;
  border-top: 1px solid #fff;
}

.footer__inner {
  width: 42.5%;
  flex-shrink: 0;
}

.footer__logo {
  width: 30%;
  margin: 0 auto 80px auto;
}


.footer__name {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.footer__name::before {
  display: inline-block;
  content: '';
  width: 10px;
  height: 10px;
  background: #eee;
  border-radius: 50vh;
  margin-right: 5px;
}

.clinic-name {
  margin-left: 8px;
}

.clinic-hours {
  width: 100%;
  background: rgba(255, 255, 255, .6);
}

.clinic-hours th {
  background: #41767d;
  color: #fff;
  padding: 0 5px;
  font-weight: 500;
  text-align: center;
}

.clinic-hours td {
  padding: 10px 5px;
  text-align: center;
  line-height: 1;
}

.last-reception {
  font-size: 1.1rem;
}

.footer__address {
  font-size: 1.4rem;
  list-style: none;
  line-height: 1.8;
  margin-bottom: 10px;
}

.footer__address>li:nth-of-type(1) {
  font-size: 1.6rem;
}

.post-code {
  font-size: 1.4rem;
  margin-right: 8px;
}

.footer-map {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, .6);
  padding: 0 10px 0 8px;
  border-radius: 50vh;
  margin-left: 5px;
  font-size: 1.4rem;
}

.footer-map::before {
  display: inline-block;
  content: '';
  width: calc(14px * 1);
  height: calc(13.22px * 1);
  background: url('../icon/icon-map.svg') center/contain no-repeat;
}

.footer__addess-col {
  display: flex;
  align-items: flex-start;
}

.footer__addess-col {
  margin-top: 3px;
}

.footer__address--tab {
  width: 80px;
  background: rgba(0, 0, 0, .1);
  border-radius: 4px;
  margin-right: 8px;
  flex-shrink: 0;
  text-align: center;
}

.footer-sns {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-sns--sp {
  display: none;
}

.footer-sns__link {
  width: 24%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  box-sizing: border-box;
  border-radius: 50vh;
  background: #fff;
}

.footer-sns__image {
  width: 24px;
  margin-right: 5px;
  flex-shrink: 0;
}

.footer-sns__link-text {
  line-height: 1.2;
  font-size: 1.2rem;
  font-weight: 500;
}

.footer-nav {
  width: 52.5%;
}

.footer-nav__col {
  display: flex;
  margin-bottom: 40px;
}

.footer-nav__blk>ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
}

.footer-nav__blk>ul>li {
  width: 25%;
  padding: 0 10px;
  box-sizing: border-box;
}

.footer-nav__blk>ul>li:nth-of-type(n+5) {
  margin-top: 20px;
}

.footer-nav__blk>ul>li>a {
  font-size: 1.6rem;
  font-weight: 700;
  color: #3F5D6E;
}

.footer-nav__blk>ul>li::before {
  display: inline-block;
  content: '';
  width: 8px;
  height: 8px;
  background: #eee;
  border-radius: 50vh;
  margin-right: 5px;
}

.footer-nav__blk>ul>li>ul {
  padding-left: 10px;
  list-style: none;
}

.footer-nav__blk>ul>li>ul>li::before {
  display: inline-block;
  content: '';
  width: 10px;
  height: 1px;
  border-top: 1px solid rgba(0, 0, 0, .3);
  margin-right: 8px;
  margin-bottom: 1px;
  vertical-align: middle;
}

.footer-nav__blk>ul>li>ul>li>a {
  font-size: 1.4rem;
}

.footer-nav__bottom {
  width: 100%;
}

.footer-nav__bottom>ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.footer-nav__bottom>ul>li {
  width: 33%;
}


.copyright {
  width: 100%;
  height: auto;
  text-align: center;
  font-size: 1.2rem;
  padding: 10px 0;
  background: #1c3843;
  color: #fff;
  position: relative;
  z-index: 1;
}

@media screen and (max-width:1536px) {
  .gnav__item-link {
    font-size: 1.4rem;
  }
}

@media screen and (max-width:1440px) {
  header {
    height: auto;
    position: fixed;
    z-index: 1001;
  }

  .global-nav__wrapper {
    width: 100%;
    max-width: initial;
    padding-left: 0;
  }

  .global-nav {
    justify-content: space-between;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .navigation-cta--pc {
    display: flex;
    margin-right: 20px;
  }

  #nav-toggle {
    display: block;
  }

  /*-------------------------------------------------
    toggle
  -------------------------------------------------*/
  .navigation {
    width: 100%;
    max-width: initial;
    height: 100vh;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    position: fixed;
    top: -20px;
    left: -2.5%;
    z-index: 1000;
  }

  .navigation.is-open {
    width: 100vw;
    height: 100vh;
    opacity: 1;
    visibility: visible;
    overflow-y: scroll;
    background: #fff;
  }

  .navigation.is-open::-webkit-scrollbar {
    display: none;
  }

  .navi-txt {
    font-size: 3rem;
  }

  .gnav {
    width: 100%;
    max-width: 520px;
    height: auto;
    margin: 0 auto;
    padding: 100px 0;
    display: block;
    position: relative;
    z-index: 1;
  }

  .gnav__list {
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }

  .gnav__item {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    position: relative;
  }

  .gnav__item:not(:last-of-type) {
    border-bottom: 1px solid #C8D0D5;
  }


  .gnav__item-link {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding: 15px 0;
    color: #3F5D6E;
    font-size: 2rem;
  }

  .gnav__item--current .gnav__item-link::after {
    display: none;
  }

  .navigation-cta {
    margin-left: 0;
  }

  .navigation-cta--sp {
    margin-bottom: 20px;
  }

  .navigation-cta--seminar {
    display: flex;
    text-align: center;
  }

  .gnav-info {
    display: block;
    padding: 20px;
    box-sizing: border-box;
    background: #F6F5FB;
    border-radius: 10px;
  }

  .gnav-info__item--first {
    font-size: 1.8rem;
    font-weight: 500;
  }

  .gnav-info__item:nth-of-type(n+2) {
    margin-top: 5px;
  }

  .gnav-info__item {
    display: flex;
    align-items: flex-start;
  }

  .gnav-info__tab {
    border: 1px solid #c3bfe9;
    padding: 0 8px;
    flex-shrink: 0;
    color: #c3bfe9;
    margin-right: 10px;
    border-radius: 4px;
  }

  .global-nav__bg-flower {
    display: block;
  }

  .side-cta {
    display: none;
  }

}

@media screen and (max-width:1440px) {
  .footer-nav__blk>ul>li {
    width: 33%;
  }

  .footer-nav__blk>ul>li:nth-of-type(n+4) {
    margin-top: 20px;
  }
}

@media screen and (max-width:1360px) {
  .gnav {
    padding-left: 0;
  }

  /*---footer----*/
  .footer__address>li:nth-of-type(1) {
    font-size: 1.4rem;
  }

  .footer-map {
    font-size: 1.3rem;
  }
}

@media screen and (max-width:1280px) {
  html {
    font-size: calc(100vw/128);
  }
}

@media screen and (max-width:1024px) {
  html {
    font-size: calc(100vw/102.4);
  }

  .navigation-cta--pc .navigation-cta--seminar {
    width: 80px;
    flex-direction: column;
    text-align: center;
  }


  .navigation-cta--pc .navigation-cta--seminar .navigation-cta__btn-icon {
    margin-right: 0;
    width: 24px;
  }

  .navigation-cta--pc .navigation-cta--seminar>span {
    font-size: 1.2rem;
    line-height: 1.2;
  }

  /*---cta---*/
  .cta__wrapper {
    width: 100%;
  }

  /*--- footer ---*/

  .l-col__footer {
    max-width: 600px;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
  }

  .footer__logo {
    width: 45%;
  }

  .footer__inner {
    width: 100%;
    margin: 0 auto 30px auto;
  }

  .footer__address>li:nth-of-type(1) {
    font-size: 1.6rem;
  }

  .footer-map {
    font-size: 1.4rem;
  }

  .footer-nav {
    width: 100%;
  }

}

@media screen and (max-width:896px) {
  html {
    font-size: calc(100vw/89.6);
  }

  .navigation-cta--pc .navigation-cta--seminar {
    display: none;
  }

  /*---cta---*/
  .cta-col {
    flex-wrap: wrap;
  }

  .cta-btn {
    width: 49.5%;
  }

  .cta-btn__seminor {
    margin-left: auto;
    margin-right: auto;
    margin-top: 8px;
  }
}

@media screen and (max-width:787px) {
  html {
    font-size: calc(100vw/78.6);
  }

  .global-nav__logo {
    margin: 0 auto;
    height: 44px;
  }

  .navigation-cta--pc {
    display: none;
  }
}

@media screen and (max-width:680px) {
  html {
    font-size: calc(100vw/68);
  }

  .l-inner {
    width: 85%;
  }

  .global-nav__logo {
    display: flex;
  }

  /*---cta---*/
  .cta__text {
    width: 90%;
    text-align: justify;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-btn {
    width: 100%;
  }

  .cta-btn:nth-of-type(n+2) {
    margin-top: 8px;
  }

  /*---parallax---*/

  .parallax::before {
    padding-top: 100%;
  }

  .parallax-logo {
    width: 50%;
    top: 50%;
    right: initial;
    left: 7.5%;
  }
}

@media screen and (max-width:600px) {
  .gnav {
    width: 85%;
    padding: 0;
  }

  /*---footer---*/
  .footer-sns {
    flex-wrap: wrap;
  }

  .footer-sns__link {
    width: 49.5%;
  }

  .footer-sns__link:nth-of-type(n+3) {
    margin-top: 8px;
  }
}

@media screen and (max-width:480px) {
  html {
    font-size: 62.5%;
  }

  body {
    font-size: 1.4rem;
  }

  section {
    padding: 80px 0;
  }

  .link-btn__wrapper {
    width: 95%;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
  }

  .link-btn {
    width: 100%;
    height: 68px;
    font-size: 1.6rem;
  }

  .link-btn__wrapper .link-btn:nth-of-type(n+2) {
    margin-top: 10px;
  }

  /*---header---*/
  header {
    height: auto;
    position: fixed;
    top: 10px;
    border: none;
  }

  .global-nav {
    height: 60px;
  }

  .global-nav__logo {
    height: 30px;
    padding-right: 20px;
    box-sizing: border-box;
  }

  .navigation {
    top: -10px;
  }

  .gnav {
    width: 100%;
    padding: 80px 5% 80px 5%;
    box-sizing: border-box;
  }

  .gnav__list {
    width: 100%;
    max-width: initial;
    margin-bottom: 20px;
  }

  .gnav__item {
    display: flex;
  }

  .gnav__item-link {
    font-size: 1.6rem;
    padding: 10px 16px;
    box-sizing: border-box;
  }

  .navigation-cta {
    flex-direction: column;
  }

  .navigation-cta__btn {
    width: 100%;
  }

  .navigation-cta__btn:nth-of-type(n+2) {
    margin-top: 5px;
  }

  .navigation-cta>a:not(:last-child) {
    margin-right: 0;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50vh;
    top: 8px;
    right: 15px;
  }

  .nav-toggle>span:nth-of-type(1) {
    top: 12px;
  }

  .nav-toggle>span:nth-of-type(2) {
    top: 20px;
    right: 0;
  }

  .nav-toggle>span:nth-of-type(3) {
    top: 28px;
  }

  .nav-toggle.is-active>span:nth-of-type(1) {
    top: 0;
  }

  .nav-toggle.is-active>span:nth-of-type(2) {
    left: 50%;
  }

  .nav-toggle.is-active span:nth-of-type(3) {
    top: 40px;
  }

  .navigation-cta.header-sp {
    flex-direction: column;
  }

  .navigation-cta.header-sp>a {
    width: 100%;
  }

  .navigation-cta.header-sp>a:nth-of-type(n+2) {
    margin-top: 10px;
  }

  .gnav-info {
    padding: 20px 14px;
  }

  .gnav-info__item--first {
    font-size: 1.3rem;
  }

  .gnav-info__item {
    font-size: 1.2rem
  }

  .gnav-info__tab {
    padding: 0 6px;
    flex-shrink: 0;
    color: #c3bfe9;
    margin-right: 5px;
  }

  /*---ttl---*/
  .section-heading__label {
    height: 30px;
  }

  .section-heading__title {
    font-size: 1.2rem;
  }

  /*---cta---*/
  .cta-btn__text-sub--sp {
    font-size: 1.2rem;
  }

  /*---footer---*/
  .site-footer .l-inner {
    width: 90%;
    padding: 100px 0;
  }

  .footer__logo {
    width: 75%;
    margin: 0 auto 14px auto;
  }

  .footer__name {
    font-size: 1.4rem;
    flex-direction: column;
    line-height: 1.4;
  }

  .footer__name::before {
    display: none;
  }

  .footer__name::after {
    display: block;
    content: '';
    width: calc(8px * 1.2);
    height: calc(9.6px * 1.2);
    background: url('../img/common/icon__dia--w.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 20px;
  }

  .footer__address>li:nth-of-type(1) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 1.4rem;
  }

  .footer-map {
    font-size: 1.3rem;
  }

  .footer__addess-col {
    font-size: 1.3rem;
  }

  .footer__address--tab {
    width: 70px;
  }

  .footer-nav__blk>ul>li {
    width: 49%;
  }

  .footer-nav__blk>ul>li:nth-of-type(n+3) {
    margin-top: 20px;
  }

  .footer-nav__blk>ul>li>a {
    font-size: 1.4rem;
  }

  .footer-nav__blk>ul>li>ul>li>a {
    font-size: 1.3rem;
  }

  .copyright {
    font-size: 1rem;
  }
}