@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap");
/* foundation
-------------------- */
/* color
-------------------- */
/* break point
-------------------- */
/* auto size
-------------------- */
/* media queries
-------------------- */
html {
  font-size: 62.5%;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", Meiryo, "メイリオ", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt" 1;
}

a {
  text-decoration: none;
}

p {
  font-family: serif;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

button {
  width: 100%;
  background-color: transparent;
  border: none;
  cursor: pointer;
  overflow: hidden;
  outline: none;
  padding: 0;
  appearance: none;
}

.p-gmap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
}
@media screen and (min-width: 768px) {
  .p-gmap {
    padding-top: 50%;
  }
}
.p-gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* layout
-------------------- */
.l-header {
  position: fixed;
  background-color: #151515;
  width: 100%;
  height: 60px;
  transition: transform 0.3s;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .l-header {
    height: 100px;
  }
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 15px;
}
@media screen and (min-width: 768px) {
  .l-header__inner {
    height: 100%;
    margin-left: 30px;
  }
}
.l-header__inner .l-header__logo a {
  display: block;
  background-image: url(../../assets/images/common/logo-main-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 125px;
  height: 30px;
}
@media screen and (min-width: 768px) {
  .l-header__inner .l-header__logo a {
    width: 161px;
    height: 37px;
  }
}
.l-header__inner .p-header__menu {
  width: 60px;
  height: 60px;
}
@media screen and (min-width: 768px) {
  .l-header__inner .p-header__menu {
    display: none;
  }
}
.l-header__inner .p-header__menu--inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.l-header__inner .p-header__menu--inner span {
  width: 20px;
  height: 2px;
  background-color: #fff;
  transition: transform 0.3s;
}
.l-header__inner .p-header__menu--inner span:first-of-type {
  margin-bottom: 5px;
}
.l-header__inner .p-header__menu--inner:hover {
  background-color: #151515;
}
.l-header__inner .p-header__menu.js-active .p-header__menu--inner span:first-of-type {
  transform: translateY(0px) rotate(45deg);
  margin-bottom: 0;
}
.l-header__inner .p-header__menu.js-active .p-header__menu--inner span:last-child {
  transform: translateY(-2px) rotate(-45deg);
}
.l-header__inner-content {
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .l-header__inner-content {
    width: 200px;
    background-color: #151515;
    position: fixed;
    top: 60px;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.3s;
    overflow: hidden;
    z-index: 1;
  }
}
@media screen and (min-width: 768px) {
  .l-header__inner-content {
    padding: 0;
  }
}
.l-header__inner-content .l-nav__content {
  width: 100%;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .l-header__inner-content .l-nav__content {
    display: flex;
  }
}
.l-header__inner-content .l-nav__content--item:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .l-header__inner-content .l-nav__content--item:not(:last-child) {
    margin-bottom: 0;
    margin-right: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .l-header__inner-content .l-nav__content--item:not(:last-child) {
    margin-right: 40px;
  }
}
@media screen and (min-width: 768px) {
  .l-header__inner-content .l-nav {
    position: absolute;
    top: 50%;
    left: 53%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (min-width: 1024px) {
  .l-header__inner-content .l-nav {
    left: 50%;
  }
}
@media screen and (max-width: 767px) {
  .l-header__inner-content.js-active {
    visibility: visible;
    transform: translateX(0%);
    opacity: 1;
  }
}
.l-header__inner--social {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 90px;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .l-header__inner--social {
    width: 110px;
    margin-top: 0;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
  }
}
.l-header__inner--social__item {
  font-family: serif;
  font-size: 1.3rem;
  text-align: center;
}
.l-header__inner--social__item:first-child {
  color: #fff;
  width: 100%;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.l-header__inner--social__item a {
  transition: opacity 0.3s;
}
.l-header__inner--social__item a:hover {
  opacity: 0.8;
}
.l-header.js-hide {
  transform: translateY(-100%);
}

.l-mask {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  z-index: 3;
}
.l-mask.js-active {
  visibility: visible;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .l-mask {
    display: none;
  }
}

.l-fixed-button {
  position: fixed;
  z-index: 2;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .l-fixed-button {
    width: 100%;
    bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .l-fixed-button {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .l-fixed-button__list {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .l-fixed-button__list li {
    width: 100%;
  }
}
.l-fixed-button__list li a {
  display: block;
  display: grid;
  place-content: center;
  height: 60px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .l-fixed-button__list li a {
    width: 60px;
    height: 200px;
    writing-mode: vertical-rl;
  }
}
.l-fixed-button__list li a:hover {
  opacity: 0.8;
}
.l-fixed-button__line a {
  background: #AB2025;
}
.l-fixed-button__pamphlet a {
  color: #151515 !important;
  background: #DFE3E6;
}

.l-main {
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  .l-main {
    padding-top: 100px;
  }
}

/* about
-------------------- */
.l-about {
  padding-top: 60px;
}
@media screen and (min-width: 1024px) {
  .l-about {
    padding-top: 100px;
  }
}
.l-about-content {
  background-color: #151515;
  margin-top: 200px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .l-about-content {
    margin-top: 0;
    padding-bottom: 0;
  }
}
.l-about-content .l-container {
  position: relative;
  display: flex;
}
@media screen and (max-width: 767px) {
  .l-about-content .l-container {
    flex-direction: column-reverse;
  }
}
@media screen and (min-width: 768px) {
  .l-about-content .l-container {
    height: 865px;
    align-items: center;
  }
}
.l-about-content .l-container .l-about-content__text {
  position: relative;
  margin-top: 30px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .l-about-content .l-container .l-about-content__text {
    margin-top: 0;
  }
}
.l-about-content .l-container .l-about-content__text p {
  font-size: 1.7rem;
  line-height: 1.8;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .l-about-content .l-container .l-about-content__text p {
    font-size: 2rem;
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 1600px) {
  .l-about-content .l-container .l-about-content__text p {
    font-size: 2.5rem;
  }
}
.l-about-content .l-container .l-about-content__kv {
  background: url(../../assets/images/about-kv.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: calc(100% - 20px);
  height: 113.8666666667vw;
  margin-top: -170px;
  margin-left: 20px;
}
@media screen and (min-width: 768px) {
  .l-about-content .l-container .l-about-content__kv {
    width: 100%;
    width: 500px;
    height: 875px;
    margin-top: 0;
    position: absolute;
    top: -160px;
    right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .l-about-content .l-container .l-about-content__kv {
    width: 600px;
  }
}
@media screen and (min-width: 1600px) {
  .l-about-content .l-container .l-about-content__kv {
    width: 765px;
  }
}

/* beginner
-------------------- */
.l-beginner {
  margin-top: 60px;
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .l-beginner {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 768px) {
  .l-beginner .l-container {
    display: flex;
    flex-wrap: wrap;
  }
}
.l-beginner .l-container .l-beginner-item {
  background-color: #151515;
}
@media screen and (min-width: 768px) {
  .l-beginner .l-container .l-beginner-item {
    width: calc(50% - 30px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 15px 30px;
  }
}
.l-beginner .l-container .l-beginner-item:first-child {
  height: 295px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .l-beginner .l-container .l-beginner-item:first-child {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .l-beginner .l-container .l-beginner-item:not(:last-child) {
    margin-bottom: 10px;
  }
}
.l-beginner .l-container .l-beginner-item__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.l-beginner .l-container .l-beginner-item__content h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .l-beginner .l-container .l-beginner-item__content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }
}
.l-beginner .l-container .l-beginner-item__content img {
  width: 156px;
  height: 41px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .l-beginner .l-container .l-beginner-item__content img {
    width: 257px;
    height: 68px;
    margin-bottom: 20px;
  }
}
.l-beginner .l-container .l-beginner-item__content p {
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .l-beginner .l-container .l-beginner-item__content p {
    font-size: 4rem;
  }
}
.l-beginner .l-container .l-beginner-item__text {
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .l-beginner .l-container .l-beginner-item__text {
    padding: 40px;
  }
}
.l-beginner .l-container .l-beginner-item__text p {
  font-size: 1.7rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .l-beginner .l-container .l-beginner-item__text p {
    font-size: 2.3rem;
  }
}
.l-beginner .l-container .l-beginner-item__text p .c-number {
  display: block;
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .l-beginner .l-container .l-beginner-item__text p .c-number {
    font-size: 4.5rem;
  }
}
.l-beginner .l-container .l-beginner-item__text .c-text__sub {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .l-beginner .l-container .l-beginner-item__text .c-text__sub {
    margin-top: 20px;
  }
}
.l-beginner .l-container .l-beginner-item__voice {
  margin-top: 40px;
}
.l-beginner .l-container .l-beginner-item__voice h4 {
  font-weight: normal;
  line-height: 1.3;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .l-beginner .l-container .l-beginner-item__voice h4 {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
}
.l-beginner .l-container .l-beginner-item__voice dl:not(:last-child) {
  margin-bottom: 30px;
}
.l-beginner .l-container .l-beginner-item__voice dl dt {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.l-beginner .l-container .l-beginner-item__voice dl dt p {
  font-size: 1.6rem;
  margin-left: 30px;
}
@media screen and (min-width: 768px) {
  .l-beginner .l-container .l-beginner-item__voice dl dt p {
    font-size: 1.8rem;
  }
}
.l-beginner .l-container .l-beginner-item__voice dl dd {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .l-beginner .l-container .l-beginner-item__voice dl dd {
    font-size: 1.8rem;
  }
}

/* movie
-------------------- */
.l-movie {
  background-color: #151515;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .l-movie {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 768px) {
  .l-movie .l-container .l-movie-content {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
  }
}
.l-movie .l-container .l-movie-content__item:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .l-movie .l-container .l-movie-content__item:not(:last-child) {
    margin-bottom: 40px;
  }
}
.l-movie .l-container .l-movie-content__item p {
  color: #fff;
  font-size: 1.2rem;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .l-movie .l-container .l-movie-content__item p {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .l-movie .l-container .l-movie-content__item {
    width: calc(50% - 30px);
    margin-left: 15px;
    margin-right: 15px;
  }
}

/* section
-------------------- */
.l-section {
  margin-top: 60px;
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .l-section {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}

/* campaign
-------------------- */
.l-campaign {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  .l-campaign {
    margin-bottom: 100px;
  }
}
.l-campaign a {
  transition: opacity 0.3s;
}
.l-campaign a:hover {
  opacity: 0.8;
}

/* experience
-------------------- */
.l-experience {
  background-color: #151515;
  padding-top: 60px;
  padding-bottom: 100px;
}
@media screen and (min-width: 768px) {
  .l-experience {
    padding-top: 100px;
  }
}
.l-experience-kv {
  height: 170px;
  background-image: url(../../assets/images/experience-kv.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .l-experience-kv {
    height: 500px;
  }
}
.l-experience .p-title h2 {
  font-size: 2.8rem;
}
@media screen and (min-width: 768px) {
  .l-experience .p-title h2 {
    font-size: 5rem;
  }
}
.l-experience-content {
  color: #fff;
}
.l-experience-content__item:not(:last-child) {
  margin-bottom: 40px;
}
.l-experience-content__item .c-title__line {
  font-size: 1.4rem;
  border-bottom: 1px solid #fff;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .l-experience-content__item .c-title__line {
    font-size: 1.8rem;
  }
}
.l-experience-content__item p {
  margin-bottom: 30px;
}
.l-experience-content__item p,
.l-experience-content__item ul {
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .l-experience-content__item p,
  .l-experience-content__item ul {
    font-size: 1.8rem;
    line-height: 1.8;
  }
}
@media screen and (min-width: 768px) {
  .l-experience-content__item ul {
    display: flex;
    flex-wrap: wrap;
  }
  .l-experience-content__item ul li {
    width: 50%;
  }
}
.l-experience-content__item .c-button-main__wide {
  margin-bottom: 10px;
}

/* system
-------------------- */
.l-system {
  background-color: #151515;
  padding-bottom: 60px;
}
.l-system-kv {
  height: 240px;
  background-image: url(../../assets/images/system-kv.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .l-system-kv {
    height: 985px;
    justify-content: flex-start;
  }
  .l-system-kv .p-title {
    margin-top: 100px;
  }
}
.l-system-kv .l-container {
  padding: 0 20px;
}
.l-system-content {
  background-color: #fff;
  margin-top: -40px;
  padding: 40px 20px;
}
@media screen and (min-width: 768px) {
  .l-system-content {
    padding: 60px;
    margin-top: -700px;
  }
}
.l-system-content__item {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .l-system-content__item {
    font-size: 2rem;
  }
}
.l-system-content__item .l-system__expense {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.l-system-content__item .l-system__expense dt {
  font-size: 1.2rem;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .l-system-content__item .l-system__expense dt {
    font-size: 1.8rem;
  }
}
.l-system-content__item .l-system__expense dd {
  font-size: 2.2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .l-system-content__item .l-system__expense dd {
    font-size: 3rem;
  }
}
.l-system-content__item .l-system__expense dd span {
  font-size: 1rem;
  margin-left: 10px;
}
@media screen and (min-width: 768px) {
  .l-system-content__item .l-system__expense dd span {
    font-size: 1.5rem;
  }
}
.l-system-content__item .c-text-custom {
  margin-bottom: 10px;
}
.l-system-content__item .c-text-custom span {
  font-size: 1.3rem;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .l-system-content__item .c-text-custom span {
    font-size: 1.6rem;
    margin: 0;
  }
}
.l-system-content__item .l-system-monthly {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .l-system-content__item .l-system-monthly {
    justify-content: space-between;
  }
}
.l-system-content__item .l-system-monthly__item {
  width: calc(50% - 30px);
  margin: 0 15px 30px;
}
@media screen and (min-width: 768px) {
  .l-system-content__item .l-system-monthly__item {
    width: 160px;
  }
}
.l-system-content__item .l-system-monthly__item img {
  margin-bottom: 20px;
}
.l-system-content__item .l-system-monthly__item .l-system__expense {
  flex-direction: column;
  margin-bottom: 0;
  text-align: center;
}
.l-system-content__item .l-system-monthly__item .l-system__expense dt {
  font-size: 1.2rem;
  margin-bottom: 5px;
  margin-right: 0;
}
.l-system-content__item .l-system-monthly__item .l-system__expense dd {
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .l-system-content__item .l-system-monthly__item .l-system__expense dd {
    font-size: 2.5rem;
  }
}
.l-system-content__item .l-system-monthly__item .c-text__label {
  margin-top: 15px;
  margin-bottom: 15px;
}
.l-system-content__item .c-title__line {
  margin-top: 45px;
  margin-bottom: 15px;
}
.l-system-content__item p {
  font-size: 1.3rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .l-system-content__item p {
    font-size: 1.5rem;
  }
}
.l-system-content__item p span {
  font-size: 2rem;
  font-weight: bold;
  display: block;
}
@media screen and (min-width: 768px) {
  .l-system-content__item p span {
    display: inline-block;
    margin: 0 10px;
  }
}
.l-system-content__item:not(:first-child) .l-system__expense {
  margin-top: 20px;
  margin-bottom: 20px;
}
.l-system-content__item:nth-child(3) .c-title__band, .l-system-content__item:nth-child(4) .c-title__band, .l-system-content__item:last-child .c-title__band {
  margin-bottom: 20px;
}
.l-system-content__item:nth-child(3) .l-system__expense, .l-system-content__item:nth-child(4) .l-system__expense {
  font-size: 1.7rem;
  margin-top: 0;
  margin-bottom: 10px;
}
.l-system-content__item:nth-child(3) .l-system__expense dd, .l-system-content__item:nth-child(4) .l-system__expense dd {
  font-size: 1.7rem;
}
.l-system-content__item:last-child {
  margin-bottom: 0;
}
.l-system-content__item .c-text-list {
  margin-top: 30px;
  margin-bottom: 30px;
}

/* class
-------------------- */
.l-class {
  background-color: #151515;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .l-class {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.l-class-kv {
  display: flex;
}
.l-class-kv__item {
  width: 50%;
  height: 205px;
}
@media screen and (min-width: 768px) {
  .l-class-kv__item {
    height: 500px;
  }
}
.l-class-kv__item-01 {
  background-image: url(../../assets/images/class-kv-01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.l-class-kv__item-02 {
  background-image: url(../../assets/images/class-kv-02.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.l-class .l-container {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.l-class-info {
  margin-top: -40px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .l-class-info {
    display: flex;
    margin-top: -100px;
  }
}
.l-class-info__item {
  background-color: #fff;
  padding: 7px 7px 20px;
}
@media screen and (min-width: 768px) {
  .l-class-info__item {
    width: 100%;
    margin-left: 10px;
    margin-right: 10px;
  }
}
.l-class-info__item .p-title {
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
}
.l-class-info__item .p-title h2 {
  font-size: 2.7rem;
}
@media screen and (min-width: 768px) {
  .l-class-info__item .p-title h2 {
    font-size: 3.5rem;
  }
}
.l-class-info__item .p-title p {
  color: #151515;
  margin-top: 10px;
}
.l-class-info__item-class {
  width: 100%;
}
.l-class-info__item-class dl {
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
}
.l-class-info__item-class dl:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.l-class-info__item-class dl:last-child {
  margin-bottom: 20px;
}
.l-class-info__item-class dl dt {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 7px;
}
.l-class-info__item-class dl dd {
  font-size: 1.2rem;
  line-height: 1.5;
}
.l-class-info__item:first-child {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .l-class-info__item:first-child {
    margin-bottom: 0;
  }
}

/* staff
-------------------- */
.l-staff {
  background-color: #151515;
}
@media screen and (min-width: 768px) {
  .l-staff {
    padding-bottom: 60px;
  }
}
.l-staff-kv {
  background-image: url(../../assets/images/staff-kv.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  height: 200px;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .l-staff-kv {
    height: 500px;
  }
}
.l-staff-list {
  display: flex;
  flex-wrap: wrap;
  margin: -40px -5px 0;
}
@media screen and (min-width: 768px) {
  .l-staff-list {
    margin: -100px -15px 0;
  }
}
.l-staff-list__item {
  width: calc(50% - 10px);
  margin: 0 5px 30px;
}
@media screen and (min-width: 768px) {
  .l-staff-list__item {
    width: calc(50% - 30px);
    margin: 0 15px 40px;
  }
}
.l-staff-list__item .l-staff-visual__name {
  color: #fff;
  font-family: serif;
  font-weight: normal;
  font-size: 1.7rem;
  text-align: center;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .l-staff-list__item .l-staff-visual__name {
    font-size: 3rem;
    margin-top: 30px;
    margin-bottom: 10px;
  }
}
.l-staff-list__item p {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .l-staff-list__item p {
    font-size: 1.3rem;
  }
}
.l-staff-list__item .l-staff__info {
  font-size: 1.4rem;
  margin-top: 20px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .l-staff-list__item .l-staff__info {
    font-size: 1.7rem;
  }
}

/* facility
-------------------- */
.l-facility {
  background-color: #151515;
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  .l-facility {
    padding-top: 100px;
  }
}
.l-facility-visual {
  display: flex;
  flex-wrap: wrap;
}
.l-facility-visual__item {
  width: 50%;
}
@media screen and (min-width: 768px) {
  .l-facility-visual__item {
    width: 25%;
  }
}
.l-facility-visual__item:first-child {
  width: 100%;
}
.l-facility-room {
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .l-facility-room {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.l-facility-room__item {
  width: 50%;
}
.l-facility-room__item:first-child {
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .l-facility-room__item:first-child {
    margin-bottom: 60px;
  }
}
.l-facility-room__item p {
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 10px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-facility-room__item p {
    font-size: 1.3rem;
  }
}
.l-facility-room__item-col2 {
  display: flex;
}
.l-facility-room__item-col2 img {
  width: 50%;
}

/* access
-------------------- */
.l-access__visual {
  height: 270px;
  background-image: url(../../assets/images/access-kv.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .l-access__visual {
    height: 800px;
  }
}
.l-access__inner {
  padding-top: 40px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .l-access__inner {
    padding-top: 100px;
    margin-bottom: 100px;
  }
}
.l-access__inner .p-gmap {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .l-access__inner .p-gmap {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 768px) {
  .l-access__inner .l-access-content {
    display: flex;
  }
}
.l-access__inner .l-access-content__logo {
  background-image: url(../../assets/images/common/logo-main-black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 157px;
  height: 43px;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .l-access__inner .l-access-content__logo {
    width: 168px;
    height: 44px;
    margin-bottom: 0;
    margin-right: 100px;
  }
}
.l-access__inner .l-access-content__info {
  color: #151515;
}
.l-access__inner .l-access-content__info dt {
  font-family: "DM Serif Display", serif;
  font-size: 1.8rem;
  line-height: 1.3;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .l-access__inner .l-access-content__info dt {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
}
.l-access__inner .l-access-content__info dd {
  font-size: 1.2rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .l-access__inner .l-access-content__info dd {
    font-size: 1.3rem;
  }
}

/* banner
-------------------- */
.l-banner {
  background-color: #222;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .l-banner {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.l-banner__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.l-banner__inner .c-banner__wide {
  margin-bottom: 20px;
}

.l-container__md {
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.l-container__lg {
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  max-width: 1110px;
  margin-left: auto;
  margin-right: auto;
}

.l-footer {
  color: #fff;
  padding-top: 50px;
  background-color: #151515;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding: 80px 0;
  }
}
.l-footer a {
  color: #fff;
  transition: opacity 0.3s;
}
.l-footer a:hover {
  opacity: 0.8;
}
.l-footer-logo {
  display: flex;
  margin-bottom: 45px;
}
@media screen and (min-width: 768px) {
  .l-footer-logo {
    margin-bottom: 60px;
  }
}
.l-footer-logo__main {
  background-image: url(../../assets/images/common/logo-main-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 200px;
  height: 48px;
}
@media screen and (min-width: 768px) {
  .l-footer-logo__main {
    width: 282px;
    height: 66px;
  }
}
.l-footer-nav {
  display: flex;
  margin-bottom: 30px;
}
.l-footer-nav__item a {
  font-size: 1.2rem;
  font-family: "DM Serif Display", serif;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .l-footer-nav__item a {
    font-size: 1.7rem;
  }
}
.l-footer-nav__item:not(:first-child) {
  margin-left: 15px;
}
@media screen and (min-width: 768px) {
  .l-footer-nav__item:not(:first-child) {
    margin-left: 30px;
  }
}
.l-footer-social {
  margin-bottom: 30px;
  display: flex;
}
.l-footer-social__item:not(:first-child) {
  margin-left: 10px;
}
.l-footer-bottom-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .l-footer-bottom-nav {
    margin-bottom: 60px;
  }
}
.l-footer-bottom-nav__item {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .l-footer-bottom-nav__item {
    font-size: 1.2rem;
  }
}
.l-footer-bottom-nav__item a {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .l-footer-bottom-nav__item a {
    font-size: 1.2rem;
  }
}
.l-footer-bottom-nav__item:nth-child(2) {
  margin-right: 15px;
}
@media screen and (min-width: 768px) {
  .l-footer-bottom-nav__item:nth-child(2) {
    margin-right: 30px;
  }
}
.l-footer-bottom-nav__item:first-child {
  width: 100%;
}
.l-footer-bottom-nav__item:first-child a {
  width: 120px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .l-footer-bottom-nav__item:first-child a {
    width: auto;
  }
}
.l-footer-bottom-nav__item:first-child a .c-logo {
  display: block;
  width: 50px;
  height: 50px;
  background-image: url(../../assets/images/common/logo-t-spine.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 10px;
}
.l-footer-bottom-nav__item-top {
  width: auto !important;
}
.l-footer-bottom-nav__top {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .l-footer-bottom-nav__top {
    margin-bottom: 15px;
  }
}
.l-footer-bottom__copyright {
  text-align: center;
  text-transform: uppercase;
  color: #555;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .l-footer-bottom__copyright {
    font-size: 1.2rem;
  }
}
.l-footer .l-footer-banner {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .l-footer .l-footer-banner {
    flex-direction: row;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .l-footer-banner li:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 768px) {
  .l-footer .l-footer-banner li:not(:last-child) {
    margin-right: 30px;
  }
}

/* object
-------------------- */
.l-front-slider__item {
  position: relative;
}
.l-front-slider .l-front-slider-kv {
  height: calc(100vh - 60px);
  transform: scale(1);
  transition: transform 0.5s;
}
@media screen and (min-width: 768px) {
  .l-front-slider .l-front-slider-kv {
    height: calc(100vh - 100px);
  }
}
.l-front-slider .l-front-slider-kv__01 {
  background-image: url(../../assets/images/front-slider-01-sp.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .l-front-slider .l-front-slider-kv__01 {
    background-image: url(../../assets/images/front-slider-01-pc.jpg);
  }
}
.l-front-slider .l-front-slider-kv__02 {
  background-image: url(../../assets/images/front-slider-02-sp.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
}
@media screen and (min-width: 768px) {
  .l-front-slider .l-front-slider-kv__02 {
    background-image: url(../../assets/images/front-slider-02-pc.jpg);
    background-position: center;
  }
}
.l-front-slider .l-front-slider-kv__03 {
  background-image: url(../../assets/images/front-slider-03-sp.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .l-front-slider .l-front-slider-kv__03 {
    background-image: url(../../assets/images/front-slider-03-pc.jpg);
  }
}
.l-front-slider .slick-active .l-front-slider-kv {
  transform: scale(1.07);
}

.p-front-slider__content {
  width: 100%;
  padding-left: 20px;
  position: absolute;
  left: 0;
  bottom: 60px;
}
@media screen and (min-width: 768px) {
  .p-front-slider__content {
    padding-left: 80px;
  }
}
@media screen and (min-width: 1600px) {
  .p-front-slider__content {
    padding-left: 200px;
    bottom: 100px;
  }
}
.p-front-slider__content h1 {
  font-family: serif;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .p-front-slider__content h1 {
    font-size: 6rem;
  }
}
@media screen and (min-width: 1600px) {
  .p-front-slider__content h1 {
    font-size: 9rem;
  }
}
.p-front-slider__content p {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .p-front-slider__content p {
    font-size: 2rem !important;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1600px) {
  .p-front-slider__content p {
    font-size: 3rem !important;
    margin-bottom: 60px;
  }
}

.p-cta {
  height: 270px;
  background-image: url(../../assets/images/contact-bg-sp.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media screen and (min-width: 768px) {
  .p-cta {
    height: 600px;
  }
}
@media screen and (min-width: 1024px) {
  .p-cta {
    background-image: url(../../assets/images/contact-bg-pc.jpg);
    align-items: center;
  }
}
.p-cta .l-container__lg {
  margin-bottom: 20px;
}
.p-cta .l-container__lg .p-cta__button {
  display: flex;
}
.p-cta .l-container__lg .p-cta__button .c-button:first-child {
  margin-right: 10px;
}

.p-cta-counseling {
  background-image: url(../../assets/images/cta-counseling.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  padding: 45px 20px;
}
.p-cta-counseling__content {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.p-cta-counseling__content p {
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .p-cta-counseling__content p {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
.p-cta-counseling__content p span {
  font-size: 3rem;
  margin-top: 10px;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-cta-counseling__content p span {
    font-size: 4rem;
    margin-top: 15px;
  }
}

.c-title {
  font-family: "DM Serif Display", serif;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.3;
}

.c-title__sub {
  font-family: serif;
  text-transform: uppercase;
  font-weight: bold;
}

.c-title__white {
  color: #fff;
}

.c-title__black {
  color: #151515;
}

.c-title__main-lg {
  font-size: 4rem;
  line-height: 1.3;
}

.c-title__main-xl {
  font-size: 5rem;
}

.c-title__base {
  font-size: 4rem;
}
@media screen and (min-width: 768px) {
  .c-title__base {
    font-size: 6rem;
  }
}

.p-title {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .p-title {
    margin-bottom: 60px;
  }
}
.p-title p {
  font-size: 1.3rem;
  line-height: 1.5;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .p-title p {
    margin-top: 15px;
    font-size: 1.8rem;
  }
}

.c-title__band {
  background-color: #151515;
  color: #fff;
  font-size: 1.5rem;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .c-title__band {
    font-size: 1.7rem;
  }
}

.c-title__line {
  font-size: 2rem;
  border-bottom: 1px solid #151515;
  padding-bottom: 10px;
}

.c-text__note {
  font-size: 1rem !important;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .c-text__note {
    font-size: 1.3rem !important;
  }
}

.c-text__md {
  font-size: 1.7rem !important;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .c-text__md {
    font-size: 3rem !important;
  }
}

.c-text__lg {
  font-size: 1.8rem !important;
  line-height: 1.5;
}

.c-text__center {
  text-align: center;
}

.c-text__right {
  text-align: right;
}

.c-text-color__white {
  color: #fff;
}

.c-text-color__black {
  color: #151515;
}

.c-text-tel {
  display: inline-block;
  color: #fff;
  font-size: 1.3rem;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .c-text-tel {
    font-size: 1.5rem;
  }
}
.c-text-tel span {
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .c-text-tel span {
    font-size: 3rem;
  }
}

.c-text__sub {
  font-size: 1.1rem !important;
}
@media screen and (min-width: 768px) {
  .c-text__sub {
    font-size: 1.5rem !important;
  }
}

.c-br-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-br-pc {
    display: block;
  }
}

.c-br-sp {
  display: block;
}
@media screen and (min-width: 1024px) {
  .c-br-sp {
    display: none;
  }
}

.c-text-custom {
  font-size: 1.5rem !important;
}
@media screen and (min-width: 768px) {
  .c-text-custom {
    font-size: 1.8rem !important;
  }
}

.c-text-list {
  display: flex;
}
.c-text-list li {
  font-size: 1.8rem;
}
.c-text-list li:first-of-type {
  margin-right: 15px;
}

.c-underline__button {
  position: relative;
  font-family: serif;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: bold;
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-underline__button {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 1024px) {
  .c-underline__button {
    font-size: 1.5rem;
  }
}
.c-underline__button:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}
.c-underline__button:hover::after {
  width: 100%;
  left: auto;
  right: 0;
}

.c-social {
  display: flex;
  justify-content: center;
}
.c-social__item a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .c-social__item a i {
    width: 15px;
    height: 15px;
  }
}
.c-social__item a:hover {
  background-color: #333;
}

.c-icon-button span {
  position: relative;
  display: flex;
  padding-left: 15px;
}
.c-icon-button span i {
  position: absolute;
  top: 48%;
  left: 0;
  transform: translateY(-50%);
}

.c-icon-button-right {
  font-size: 1.2rem !important;
}
@media screen and (min-width: 768px) {
  .c-icon-button-right {
    font-size: 1.4rem !important;
  }
}
.c-icon-button-right span {
  position: relative;
  display: flex;
  padding-right: 20px;
}
.c-icon-button-right span i {
  position: absolute;
  top: 48%;
  right: 0;
  transform: translateY(-50%);
}

.c-button-center {
  display: flex;
  justify-content: center;
}

.c-banner__wide {
  width: 100%;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .c-banner__wide {
    height: 200px;
  }
}
.c-banner__wide-staff {
  background-color: #8C734B;
}
.c-banner__wide--staff {
  background: url(../../assets/images/staff_baner_2025.png) no-repeat center/contain;
  width: 209px;
  height: 58px;
}
@media screen and (min-width: 768px) {
  .c-banner__wide--staff {
    width: 414px;
    height: 115px;
  }
}
.c-banner__wide-part {
  background-color: #DFE3E6;
}
.c-banner__wide--part {
  background: url(../../assets/images/parttime_baner_2025.png) no-repeat center/contain;
  width: 171px;
  height: 58px;
}
@media screen and (min-width: 768px) {
  .c-banner__wide--part {
    width: 339px;
    height: 115px;
  }
}
.c-banner__wide-crossfit {
  background-color: #000;
  border: 1px solid #2c2c2c;
}
.c-banner__wide--crossfit {
  background: url(../../assets/images/logo-crossfitjournal.jpg) no-repeat center/contain;
  width: 116px;
  height: 58px;
}
@media screen and (min-width: 768px) {
  .c-banner__wide--crossfit {
    width: 225px;
    height: 115px;
  }
}
.c-banner__wide:hover {
  opacity: 0.8;
}

.c-banner-03 {
  width: calc(50% - 10px);
  height: 90px;
  background-color: #022779;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .c-banner-03 {
    height: 140px;
  }
}
.c-banner-03__text {
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-banner-03__text {
    font-size: 1.5rem;
  }
}
.c-banner-03__text span {
  font-size: 1.4rem;
  font-weight: bold;
  display: block;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .c-banner-03__text span {
    font-size: 2.5rem;
  }
}
.c-banner-03:hover {
  opacity: 0.8;
}

.c-banner-04 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 255px;
  height: 80px;
  background-color: #262626;
}
.c-banner-04 .c-logo-otemachi {
  display: block;
  width: 100px;
  height: 55px;
  background-image: url(../../assets/images/common/logo-otemachi.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.c-banner-04 .c-logo-alcedo {
  display: block;
  width: 100px;
  height: 55px;
  background-image: url(../../assets/images/common/logo-alcedo.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.c-banner-04 .c-logo-sagamihara {
  display: block;
  width: 100px;
  height: 55px;
  background-image: url(../../assets/images/common/logo-sagamihara-white.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.c-button {
  position: relative;
  display: inline-block;
  overflow: hidden;
  transition: transform ease 0.3s;
  z-index: 1;
}
.c-button span {
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  position: relative;
  z-index: 2;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .c-button span {
    font-size: 1.5rem;
  }
}
.c-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: skewX(25deg) scale(0, 1);
  transform-origin: right top;
}
.c-button:hover:before {
  transform-origin: left bottom;
  transform: skewX(25deg) scale(2, 2);
}

.c-button-main {
  background: #0e98d8;
  padding: 20px 30px;
}
@media screen and (min-width: 768px) {
  .c-button-main {
    padding: 20px 40px;
  }
}
.c-button-main:before {
  background: #fff;
}
.c-button-main:hover span {
  color: #151515;
}

.c-button-main__wide {
  padding: 20px 55px;
}
@media screen and (min-width: 768px) {
  .c-button-main__wide {
    padding: 30px 65px;
  }
}
.c-button-main__wide span {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .c-button-main__wide span {
    font-size: 1.7rem;
  }
}

.c-button-schedule {
  background: #161573;
  padding: 20px 30px;
}
@media screen and (min-width: 768px) {
  .c-button-schedule {
    padding: 20px 40px;
  }
}
.c-button-schedule:before {
  background: #555;
}
.c-button-schedule span {
  position: relative;
  padding-left: 20px;
}
.c-button-schedule span i {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.c-button-border {
  background: transparent;
  border: 1px solid #555;
  padding: 7px 20px;
  display: block;
  text-align: center;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .c-button-border {
    padding: 15px 20px;
  }
  .c-button-border span {
    font-size: 1.3rem;
  }
}
.c-button-border:before {
  background: #555;
}

.c-button-line {
  background: #27a709;
  padding: 20px 30px;
}
@media screen and (min-width: 768px) {
  .c-button-line {
    padding: 20px 40px;
  }
}
.c-button-line:before {
  background: #fff;
}
.c-button-line span {
  position: relative;
  padding-left: 25px;
}
.c-button-line span i {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.c-button-line:hover span {
  color: #151515;
}
.c-button-line:hover span i {
  background: url(../../assets/images/common/ico-line-black.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.c-button-cta {
  background: #161573;
  padding: 20px 10px;
}
@media screen and (min-width: 768px) {
  .c-button-cta {
    padding: 30px 40px;
  }
}
.c-button-cta:before {
  background: #fff;
}
.c-button-cta span {
  position: relative;
  padding-left: 25px;
}
.c-button-cta span i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.c-button-cta:hover span {
  color: #151515;
}
.c-button-cta:hover span i.c-icon-contact__white {
  background: url(../../assets/images/common/ico-contact-black.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.c-button-cta:hover span i.c-icon-line__white {
  background: url(../../assets/images/common/ico-line-black.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.c-icon {
  display: block;
  width: 20px;
  height: 20px;
}

.c-icon-md {
  display: block;
  width: 20px;
  height: 20px;
}

.c-icon-sm {
  display: block;
  width: 15px;
  height: 15px;
}

.c-icon-xs {
  display: block;
  width: 11px;
  height: 11px;
}

/* white
-------------------- */
.c-icon-contact__white {
  background-image: url(../../assets/images/common/ico-contact-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.c-icon-line__white {
  background-image: url(../../assets/images/common/ico-line-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.c-icon-twitter__white {
  background-image: url(../../assets/images/common/ico-twitter-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.c-icon-facebook__white {
  background-image: url(../../assets/images/common/ico-facebook-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.c-icon-instagram__white {
  background-image: url(../../assets/images/common/ico-instagram-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.c-icon-blank__white {
  background-image: url(../../assets/images/common/ico-blank-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.c-icon-pdf__white {
  background-image: url(../../assets/images/common/ico-pdf-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

/* black
-------------------- */
.c-icon-contact__black {
  background-image: url(../../assets/images/common/ico-contact-black.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.c-icon-line__black {
  background-image: url(../../assets/images/common/ico-line-black.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.c-icon-facebook__black {
  background-image: url(../../assets/images/common/ico-facebook-black.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.c-icon-instagram__black {
  background-image: url(../../assets/images/common/ico-instagram-black.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

/* circle
-------------------- */
.c-icon-circle__white {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-icon-circle__black {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #000;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .c-icon-circle__black {
    width: 50px;
    height: 50px;
  }
}

.c-icon-avatar {
  display: block;
  width: 65px;
  height: 65px;
}

.c-icon-employee {
  background-image: url(../../assets/images/icon-employee.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.c-icon-medical {
  background-image: url(../../assets/images/icon-medical.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.c-icon-civilServant {
  background-image: url(../../assets/images/icon-civilServant.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

/* 0 */
.u-m0 {
  margin: 0 !important;
}

.u-mt0 {
  margin: 0 !important;
}

.u-mr0 {
  margin: 0 !important;
}

.u-mb0 {
  margin: 0 !important;
}

.u-ml0 {
  margin: 0 !important;
}

/* top */
.u-mt10 {
  margin-top: 10px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

/* right */
.u-mr10 {
  margin-right: 10px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-mr30 {
  margin-right: 30px !important;
}

/* bottom */
.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

/* left */
.u-ml10 {
  margin-left: 10px !important;
}

.u-ml20 {
  margin-left: 20px !important;
}

.u-ml30 {
  margin-left: 30px !important;
}

/* 0 */
.u-p0 {
  padding: 0 !important;
}

.u-pt0 {
  padding: 0 !important;
}

.u-pr0 {
  padding: 0 !important;
}

.u-pb0 {
  padding: 0 !important;
}

.u-pl0 {
  padding: 0 !important;
}

/* top */
.u-pt10 {
  padding-top: 10px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

/* right */
.u-pr10 {
  padding-right: 10px !important;
}

.u-pr20 {
  padding-right: 20px !important;
}

.u-pr30 {
  padding-right: 30px !important;
}

/* bottom */
.u-pb10 {
  padding-bottom: 10px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

/* left */
.u-pl10 {
  padding-left: 10px !important;
}

.u-pl20 {
  padding-left: 20px !important;
}

.u-pl30 {
  padding-left: 30px !important;
}

.t-bg-color {
  background-color: #fff;
}/*# sourceMappingURL=style.css.map */