@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700;900&family=Poppins:wght@400&display=swap");
.btn-gold {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  width: -moz-max-content;
  width: max-content;
  padding: 12px 60px;
  border-radius: 9999px;
  cursor: pointer;
  text-decoration: none;
  color: white;
  font-size: 1.1rem;
  text-shadow: 1px 3px 6px rgba(0, 0, 0, 0.6);
  background: radial-gradient(ellipse 55% 78% at 50% 100%, rgb(229, 218, 81) 0%, transparent 100%), radial-gradient(ellipse 100% 100% at 50% 50%, rgb(134, 110, 6) 0%, #3d3500 45%, #161100 80%, #0a0800 100%);
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, filter 0.3s ease;
}
.btn-gold img {
  display: inline;
  width: 24px;
  height: 24px;
}
.btn-gold::after, .btn-gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
}
.btn-gold::before {
  border: 13px solid white;
  opacity: 0.6;
  mix-blend-mode: soft-light;
  filter: blur(5px);
}
.btn-gold::after {
  border: 8px solid #d2b09d;
  opacity: 0.2;
  mix-blend-mode: lighten;
}
.btn-gold:hover {
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.75), 0 0 50px rgba(255, 255, 255, 0.25), inset 0 1px 2px rgba(255, 255, 255, 0.1);
  filter: brightness(1.1);
}

@media screen and (max-width: 990px) {
  .btn-gold {
    font-size: 1.5rem;
  }
  .btn-gold img {
    width: 26px;
    height: 26px;
  }
}
@media screen and (max-width: 600px) and (min-width: 415px) {
  .btn-gold {
    font-size: 1.3rem;
  }
  .btn-gold img {
    width: 24px;
    height: 24px;
  }
}
.js-reveal {
  opacity: 0;
  transition: opacity 3s cubic-bezier(0.22, 1, 0.36, 1), transform 3s cubic-bezier(0.22, 1, 0.36, 1);
}
.js-reveal--up {
  transform: translateY(60px);
}
.js-reveal--left {
  transform: translateX(-70px);
}
.js-reveal--right {
  transform: translateX(70px);
}
.js-reveal--fade {
  transform: none;
}
.js-reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::-moz-selection {
  background-color: #9b882e;
}

::selection {
  background-color: #9b882e;
}

body {
  margin: 0 auto;
  background-color: white;
  font-family: "Noto Sans JP", sans-serif, "Yu Gothic", "游ゴシック", sans-serif;
  font-size: 20px;
  color: black;
  line-height: 1.8;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

ul {
  list-style: none;
}

.sp {
  display: none;
}

.firstview {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: url(/assets/img/img-fv@2x.webp) no-repeat center/cover;
  opacity: 0;
  transition: opacity 3s cubic-bezier(0.22, 1, 0.36, 1);
}
.firstview.is-visible {
  opacity: 1;
}
.firstview__inner {
  position: relative;
  width: calc(100% - 60px);
  height: calc(100% - 60px);
  margin: 30px;
  overflow-y: scroll;
  scrollbar-width: none;
  overflow: hidden;
  gap: 2em;
  z-index: 1;
}
.firstview__inner::-webkit-scrollbar {
  display: none;
}
.firstview__heading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.firstview h1 {
  font-size: 11.5vw;
  font-weight: 500;
  color: white;
  line-height: 1.2;
}
.firstview h1 span {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.firstview h1 span.is-visible {
  opacity: 1;
}
.firstview__txt {
  display: flex;
  flex-direction: column;
  gap: 2em;
  padding: 10vw 4vw 14vw 4vw;
  opacity: 0;
  visibility: hidden;
  transform: translateY(2rem);
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0s linear 0s;
}
.firstview__txt.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.firstview__txt p {
  font-size: 1.8vw;
  color: white;
  line-height: 2.8;
  letter-spacing: 0.1em;
}
.firstview__prop {
  position: absolute;
  bottom: 3vw;
  right: 3vw;
  font-size: 1.2rem;
  color: white;
  padding: 6px 30px 6px 0;
  border-radius: 4px;
  z-index: 20;
  background: url(/assets/img/arrw.svg) no-repeat right bottom;
}
.firstview::before {
  content: "";
  display: block;
  position: absolute;
  top: 30px;
  left: 30px;
  width: calc(100% - 60px);
  height: calc(100% - 60px);
  background-color: #9b882e;
  mix-blend-mode: multiply;
}
.firstview::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(/assets/img/img-fv_human@2x.webp) no-repeat center/cover;
}

.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 40px 70px;
  z-index: 100;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo img {
  width: 140px;
  height: auto;
}
.header__contact {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  color: white;
  background: #9b882e;
  border-radius: 50px;
  padding: 10px 30px 10px 10px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, letter-spacing 0.35s ease;
}
.header__contact:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 8px 24px rgba(155, 136, 46, 0.55), 0 2px 8px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.06em;
}
.header__contact:hover .header__contact-toggle {
  animation: pulse-dot 0.6s ease forwards;
}
.header__contact-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: white;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.header__contact-toggle img {
  height: 24px;
  width: auto;
}
.header.stick {
  padding: 1% 2%;
  backdrop-filter: blur(20px);
}
.header.stick .header__logo img {
  filter: invert(1);
}
@keyframes pulse-dot {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1.1);
  }
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #9b882e;
  padding: 5%;
  border: 30px solid #9b882e;
  background: url(/assets/img/img-concept@2x.webp) no-repeat center/cover;
}
.hero__inner {
  position: relative;
  width: 82%;
  height: 100%;
  border: 1px solid white;
  background: rgba(155, 136, 46, 0.5);
}
.hero__label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 20px;
  font-family: "Poppins", sans-serif, sans-serif;
  font-size: 1.3rem;
  color: #9b882e;
  background-color: white;
}
.hero__content {
  padding: 5% 5%;
  text-align: center;
  color: white;
}
.hero__title {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 0.5em;
}
.hero__text {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2.4;
}
.hero__cta {
  position: fixed;
  max-width: 280px;
  bottom: 7vh;
  right: 0;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  background: #9b882e;
  box-shadow: -7px 7px 12px rgba(0, 0, 0, 0.2);
  color: white;
  line-height: 1.6;
  text-align: center;
  font-weight: 500;
  overflow: hidden;
  z-index: 200;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.hero__cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.hero__cta:hover {
  filter: saturate(1.5);
  transform: translateY(-5px);
}
.hero__cta figure {
  display: block;
  position: relative;
}
.hero__cta figure::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(/assets/img/icon-youtube@2x.webp) no-repeat center/25%;
}
.hero__cta .icon-exw {
  display: inline;
  width: 14px;
  height: 14px;
  margin-left: 0.5em;
}
.hero__cta-label {
  font-size: 0.75rem;
  margin-top: 1em;
  margin-bottom: 6px;
}
.hero__cta-txt {
  font-size: 1.2rem;
  margin-bottom: 1em;
}
.hero__cta-link {
  display: block;
}

.service {
  padding-bottom: 120px;
  overflow: hidden;
}
.service__heading {
  padding: 7rem 10% 80px 10%;
}
.service__heading-inner {
  padding: 20px 0;
}
.service__heading-title {
  position: relative;
  margin-right: -10vw;
  padding-bottom: 0.1em;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  background-color: rgba(155, 136, 46, 0.45);
}
.service__heading-title span {
  padding-right: 1em;
  background-color: #f3f5f4;
}
.service__body {
  display: flex;
  align-items: stretch;
  width: 90%;
  margin: auto;
}
.service__image {
  width: 45%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.service__image img {
  width: 100%;
  height: auto;
}
.service__content {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  margin-left: 5vw;
}
.service__title {
  font-size: 3.7rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: white;
}
.service__title span, .service__title strong {
  display: inline-block;
  padding: 0 0 0.1em 20px;
  margin-bottom: 0.2em;
  background-color: #9b882e;
  white-space: nowrap;
}
.service__title strong {
  background-color: black;
}
.service__text {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 2;
}
.service__note {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  padding: 1.5em 2em;
  margin-top: 3vw;
  font-weight: 500;
  font-size: 1.1rem;
  background-image: url("../../assets/img/service-note-frame.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.service__note-heading {
  color: #9b882e;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 700;
  line-height: 1.7;
}
.service__note-list {
  list-style: disc;
}

.service--executive {
  background-color: #f3f5f4;
}
.service--executive .service__body {
  flex-direction: row;
}

.service--coach {
  background-color: white;
}
.service--coach .service__heading-title span {
  background-color: white;
}
.service--coach .service__body {
  flex-direction: row-reverse;
}

.president {
  overflow: hidden;
}
.president > div {
  width: 64%;
  max-width: 1228px;
  min-width: 1000px;
  margin: auto;
  color: white;
}
.president__inner {
  display: block;
  position: relative;
  min-height: 400px;
  margin-bottom: 15%;
  background-color: #9b882e;
}
.president__inner::before {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  left: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border: 1px solid white;
}
.president__image {
  position: absolute;
  width: 76%;
  top: 0;
  right: 0;
  z-index: 1;
}
.president__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.president__content {
  width: -moz-max-content;
  width: max-content;
  padding: 7% 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  z-index: 2;
}
.president__title {
  font-size: 2.5rem;
  line-height: 1.8;
}
.president__link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
}
.president__link img {
  width: 32px;
  height: 32px;
}

.footer {
  position: relative;
  background-color: #9b882e;
  color: white;
  font-weight: 400;
  text-align: center;
  z-index: 100;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 190px;
  font-size: 0.9rem;
  text-align: center;
}
.footer__copy {
  min-height: 50px;
  padding: 10px 0;
  font-size: 0.7rem;
  margin-top: 6px;
}

@media (min-aspect-ratio: 2/1) {
  .firstview {
    height: 57vw;
  }
}
@media (max-aspect-ratio: 1.26/1) {
  .firstview {
    height: 57vw;
  }
  .firstview__inner {
    width: calc(100% - 3vw);
    height: calc(100% - 3vw);
    margin: 1.5vw;
  }
  .firstview::before {
    height: calc(100% - 3vw);
  }
}
@media screen and (max-width: 1920px) and (min-width: 1367px) {
  html {
    font-size: 1.04vw;
  }
  .hero {
    padding: 7% 3%;
    border-width: 1.5vw;
  }
}
@media screen and (max-width: 1366px) {
  .hero__cta {
    max-width: -moz-max-content;
    max-width: max-content;
  }
  .hero__cta a {
    display: flex;
  }
  .hero__cta a figure {
    height: 130px;
    aspect-ratio: 1/1;
  }
  .hero__cta a figure::before {
    background-size: 50%;
  }
  .hero__cta a > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 1em;
  }
  .hero__cta a > div .hero__cta-label {
    font-size: 10px;
  }
  .hero__cta a > div .hero__cta-txt {
    font-size: 16px;
  }
  .footer__inner {
    min-height: 120px;
    font-size: 14px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 601px) and (max-aspect-ratio: 1.26/1) {
  html {
    font-size: 1.4vw;
  }
  .firstview::before {
    top: 1.5vw;
    left: 1.5vw;
    width: 97vw;
    background-color: #9b882e;
    mix-blend-mode: multiply;
  }
  .header {
    padding: 2.5vw 4vw;
  }
  .header__contact {
    font-size: 16px;
  }
  .hero {
    padding: 90px 2%;
    border-width: 1.5vw;
  }
  .hero__inner {
    width: 85%;
  }
  .hero__content {
    padding: 8% 3%;
  }
  .service__title {
    font-size: 3.8vw;
  }
  .service__image {
    width: 50%;
  }
  .president > div {
    min-width: 90%;
  }
  .president__inner {
    margin-bottom: 12%;
  }
}
@media screen and (max-width: 990px) {
  .service__body {
    flex-direction: column-reverse !important;
  }
  .service__title {
    font-size: 7vw;
  }
  .service__image {
    width: 100%;
  }
  .service__text {
    font-size: 2.5vw;
  }
  .service__note {
    font-size: 2vw;
  }
  .president > div {
    min-width: 90%;
  }
  .president__inner {
    min-height: auto;
    margin-bottom: 20%;
  }
  .president__image {
    width: 86%;
  }
}
@media screen and (max-width: 600px) {
  html {
    font-size: 3.2vw;
  }
  .sp {
    display: inline;
  }
  .header {
    padding: 20px;
  }
  .header__contact {
    padding: 6px 30px 6px 6px;
  }
  .header__contact-toggle {
    width: 32px;
    height: 32px;
  }
  .header__contact-toggle img {
    height: 18px;
  }
  .firstview {
    height: 100vh;
    background-image: url(/assets/img/img-fv_sp@2x.webp);
  }
  .firstview__heading {
    height: -moz-max-content;
    height: max-content;
    padding: 33vw 0 21vw 0;
  }
  .firstview__txt {
    padding: 0 5%;
    margin-bottom: 8vh;
    gap: 1.5em;
  }
  .firstview__txt p {
    font-size: 4.2vw;
    line-height: 2.4;
    letter-spacing: 0.2em;
  }
  .firstview__image-sp {
    display: block;
    width: 100%;
    height: auto;
  }
  .firstview::before {
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
  .firstview::after {
    display: none;
  }
  .hero {
    border-width: 10px;
    padding: 9%;
  }
  .hero__inner {
    width: 100%;
  }
  .hero__label {
    font-size: 0.9rem;
    padding: 0 10px;
  }
  .hero__title {
    margin-bottom: 1em;
    font-size: 7.5vw;
  }
  .hero__text {
    font-size: 1.15rem;
    text-align: left;
  }
  .hero__image {
    position: relative;
    width: 100%;
    height: 250px;
  }
  .hero__content {
    margin-left: 0;
    padding: 40px 5%;
  }
  .hero__cta {
    margin-right: -185px;
  }
  .service {
    padding-bottom: 18vw;
  }
  .service__body {
    flex-direction: column !important;
  }
  .service__image {
    width: 100%;
  }
  .service__heading {
    padding: 3rem 5% 40px 5%;
  }
  .service__heading-title {
    line-height: 1.4;
    background-color: transparent;
    border-bottom: #9b882e 4px solid;
  }
  .service__heading-title span {
    display: inline-block;
  }
  .service__body {
    gap: 8vw;
  }
  .service__content {
    margin-left: 0;
  }
  .service__title {
    font-size: 8vw;
  }
  .service__title span,
  .service__title strong {
    padding: 0 0 0.1em 10px;
  }
  .service__text {
    font-size: 3.5vw;
  }
  .service__note {
    font-size: 3.2vw;
  }
  .service.service--coach {
    padding-bottom: 36vw;
  }
  .president__inner {
    margin-bottom: 14vw;
  }
  .president__content {
    padding: 10%;
    gap: 15px;
  }
  .president__title {
    font-size: 5vw;
  }
  .president__link {
    font-size: 2.5vw;
  }
  .president__image {
    width: calc(100% + 5vw);
    left: 0;
    overflow: hidden;
  }
  .president__image img {
    margin-left: 18vw;
  }
}
@media screen and (max-width: 414px) {
  .service__body {
    flex-direction: column !important;
  }
  .service__image {
    width: 100%;
  }
  .service__content {
    padding: 40px 5%;
  }
}/*# sourceMappingURL=style.css.map */