@charset "UTF-8";
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
@media screen and (max-width: 1080px) {
  html {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  html {
    font-size: 13px;
  }
}

img {
  width: 100%;
  height: auto;
}

.loading {
  /*ローディング画面の縦横幅を画面いっぱいになるように指定*/
  width: 100vw;
  height: 100vh;
  /*ローディング画面の表示位置を固定*/
  position: fixed;
  top: 0;
  left: 0;
  background: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /*ローディング画面を0.5秒かけて非表示にする*/
  transition: all 0.4s linear;
  z-index: 100000;
}

.loading.loaded {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid rgb(248, 248, 248);
  border-left-color: rgb(195, 170, 50);
  /* アニメーションを1秒かけて実行 */
  animation: spinner-rotation 1s linear infinite;
}

.wrapper {
  background-color: rgb(255, 255, 255);
  font-family: "Nunito Sans", "Zen Kaku Gothic New", "Roboto", "Arial", sans-serif;
  font-weight: 400;
  text-align: center;
  color: rgb(11, 11, 11);
  line-height: 1.5;
}
.wrapper .footer {
  padding: 1.2rem;
  background-color: rgb(195, 170, 50);
  color: rgb(248, 248, 248);
}
.wrapper .footer__text {
  font-size: 0.7rem;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hamburger-overlay {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 10000;
  width: 55px;
  height: 55px;
  border: none;
  background: rgb(195, 170, 50);
  cursor: pointer;
  opacity: 0;
  animation: fadeInDown 1s ease-out 1s forwards;
  transform: translateY(-20px);
}
@media screen and (max-width: 480px) {
  .hamburger-overlay {
    top: 20px;
    right: 20px;
  }
}
.hamburger-overlay__line {
  position: absolute;
  left: 13px;
  width: 30px;
  height: 1px;
  background-color: rgb(255, 255, 255);
  transition: all 0.6s;
}
.hamburger-overlay__line:nth-of-type(1) {
  top: 19px;
}
.hamburger-overlay__line:nth-of-type(2) {
  top: 27px;
}
.hamburger-overlay__line:nth-of-type(3) {
  top: 34px;
}
.hamburger-overlay.active .hamburger-overlay__line {
  background-color: rgb(255, 255, 255);
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(8px) rotate(-45deg);
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-7px) rotate(45deg);
}

/* ドロワーメニュー本体 */
.drawer-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 250px;
  height: 100vh;
  background: rgb(255, 255, 255);
  transform: translateX(100%);
  border-left: 1px solid rgb(195, 170, 50);
  transition: transform 0.3s ease;
  z-index: 1000;
  /* メニューが開いたとき */
  /* ドロワーメニュー中身 */
  /* ドロワーメニュー専用のスタイル */
}
.drawer-menu.active {
  transform: translateX(0);
}
.drawer-menu__content {
  padding-top: 7rem;
}
.drawer-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.drawer-menu__item {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  text-align: left;
  border-bottom: 1px solid #c3aa31;
  padding-left: 2rem;
}
.drawer-menu__link {
  color: rgb(11, 11, 11);
  font-size: 1rem;
  transition: color 0.3s;
  text-decoration: none;
}
.drawer-menu__link:hover {
  color: rgb(195, 170, 50);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  /* 背景色のスライドダウン */
}
.hero__overlay {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f3f5ff;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  animation: slideDown 0.8s ease-out forwards;
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 3;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out 1s forwards;
}

/* トップスライドショー画像 */
.main-top__img-slider {
  position: relative;
  padding: 0 16px;
}
.main-top__img-inner {
  position: relative;
  width: 100%;
  height: auto;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.slide.active {
  opacity: 1;
}

.slide-space {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  box-sizing: border-box;
}

/* アニメーションキー */
@keyframes slideDown {
  to {
    top: 0;
  }
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.main-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 5rem 0;
  font-weight: 400;
}
@media screen and (max-width: 1080px) {
  .main-top {
    flex-direction: column;
    padding: 3rem 0;
  }
}
.main-top__text {
  flex: 0 0 54%;
  padding: 0 16px;
  text-align: left;
  letter-spacing: -0.02em;
  padding-top: 5%;
}
@media screen and (max-width: 480px) {
  .main-top__text {
    padding: 0 14px;
  }
}
@media screen and (max-width: 970px) {
  .main-top__text {
    flex-direction: column;
    padding-top: 0%;
  }
}
.main-top__img {
  flex: 0 0 41%;
  /*     padding: 0 16px; */
}
.main-top__company {
  font-size: 1.375rem;
  padding-bottom: 1.3rem;
}
@media screen and (max-width: 480px) {
  .main-top__company {
    font-size: 1rem;
  }
}
.main-top__event {
  background-color: rgb(195, 170, 50);
  color: #fff;
  border-radius: 30px;
  padding: 0.3rem 1.1rem 0.2rem 1.1rem;
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 480px) {
  .main-top__event {
    font-size: 1.3rem;
  }
}
.main-top__title {
  font-size: 2.375rem;
  line-height: 1.6;
  padding-bottom: 16px;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .main-top__title {
    font-size: 1.35rem;
  }
}
.main-top__sub-title {
  font-size: 1.625rem;
  padding-bottom: 16px;
  padding-bottom: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .main-top__sub-title {
    font-size: 1.15rem;
  }
}
.main-top__sub-title span {
  font-weight: 300;
}
.main-top__foundation {
  font-size: 4.6rem;
  font-family: "segoe UI", "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, sans-serif;
  font-weight: Thin 100;
  font-style: Italic;
  color: #7f8ddb;
  padding-bottom: 2rem;
}
.main-top__number {
  font-size: 1.2rem;
}
@media screen and (max-width: 480px) {
  .main-top__number {
    font-size: 1.4rem;
  }
}
.main-top__border {
  border: none;
  height: 1px;
  background-color: rgb(195, 170, 50);
}

.section-title {
  font-family: "Jost", "Roboto", sans-serif;
  font-weight: 100;
  font-style: italic;
  font-size: 5rem;
  color: rgb(95, 101, 150);
  padding-bottom: 2rem;
}
@media screen and (max-width: 480px) {
  .section-title {
    font-size: 3rem;
    font-weight: 200;
  }
}

.news {
  max-width: 1350px;
  padding: 5rem 16px;
  text-align: left;
  margin: 0 auto;
}
.news__list {
  max-width: 880px;
  margin: 0 auto;
  list-style: none;
}
.news__item {
  display: flex;
  gap: 1em;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.news__item-date {
  white-space: nowrap;
  font-family: "Jost", "Roboto", sans-serif;
  font-weight: 300;
  font-style: italic;
  color: #666;
}
.news__item-text {
  text-decoration: none;
  color: rgb(11, 11, 11);
  transition: color 0.3s;
  font-family: "segoe UI", "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, sans-serif;
}
.news__item-text:hover {
  color: rgb(195, 170, 50);
}

.concept {
  display: flex;
  justify-content: space-between;
  align-items: end;
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  padding: 5rem 0;
}
@media screen and (max-width: 970px) {
  .concept {
    flex-direction: column;
    align-items: center;
  }
}
.concept__text {
  flex: 0 0 63%;
  padding: 0 16px;
  font-family: "segoe UI", "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  line-height: 1.8;
  text-align: justify;
}
.concept__banner-img {
  transition: opacity 0.3s ease;
}
.concept__banner-img:hover {
  opacity: 0.7;
}
.concept__img {
  flex: 0 0 32%;
  padding: 0 16px;
}
@media screen and (max-width: 970px) {
  .concept__img {
    width: 65%;
    padding-top: 20px;
  }
}

.interview {
  max-width: 1350px;
  padding: 5rem 16px;
  text-align: left;
  font-weight: 600 !important;
  margin: 0 auto;
}
.interview__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  padding: 0;
  list-style: none;
}
.interview__item {
  width: calc(33.333% - 16px); /* 3カラム分割 - gapに合わせて調整 */
  box-sizing: border-box;
}
@media screen and (max-width: 970px) {
  .interview__item {
    width: calc(50% - 12px);
  }
}
.interview__item a {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
.interview__item a:hover {
  color: rgb(195, 170, 50);
}
.interview__item a:hover img {
  opacity: 0.7;
}
.interview__item a:hover .interview__item-date,
.interview__item a:hover .interview__item-title {
  color: rgb(195, 170, 50);
}
.interview__item img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgb(248, 248, 248);
  margin-bottom: 1rem;
  transition: opacity 0.3s ease;
}
.interview__item-date {
  font-family: "Jost", "Roboto", sans-serif;
  font-weight: 300;
  font-style: italic;
  color: #666;
  transition: color 0.3s ease;
}
.interview__item-title {
  font-family: "Nunito Sans", "Zen Kaku Gothic New", "Roboto", "Arial", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  margin-top: 4px;
  transition: color 0.3s ease;
}

.kiji-header {
  padding-top: 5rem;
}
.kiji-header__title {
  font-size: 1.5rem;
  padding-bottom: 1rem;
  font-weight: 600;
}
.kiji-header__date {
  font-size: 1rem;
  color: #666;
  padding-bottom: 1rem;
}

.kiji-wrap {
  max-width: 1000px;
  text-align: left;
  margin: 0 auto;
  font-family: "segoe UI", "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  line-height: 1.8;
  text-align: justify;
  padding: 0 16px;
}
.kiji-wrap__kiji-credit {
  font-size: 0.9rem;
  text-align: right;
  padding-bottom: 1rem;
  font-weight: 300;
}
.kiji-wrap__heading {
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  margin-top: 2.5rem;
  padding: 0.2rem 0.7rem;
  background-color: rgba(250, 228, 127, 0.15);
  border-left: 2px solid rgb(195, 170, 50);
}
.kiji-wrap__kiji-content p {
  padding-bottom: 1.2rem;
}
.kiji-wrap__kiji-content p b {
  font-weight: 600;
}
.kiji-wrap__kiji-mainimg {
  padding-bottom: 2rem;
}
.kiji-wrap__kiji-img {
  text-align: center;
  padding: 3rem 0;
}
.kiji-wrap__kiji-img img {
  width: 80%;
  border: 1px solid rgb(248, 248, 248);
}
.kiji-wrap__page-number {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.kiji-wrap__page-number .number-button {
  display: inline-block;
  background-color: rgb(195, 170, 50);
  width: 40px;
  height: 40px;
  color: rgb(255, 255, 255);
  text-align: center;
  border: 1px solid rgb(195, 170, 50);
  line-height: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: "Nunito Sans", "Zen Kaku Gothic New", "Roboto", "Arial", sans-serif;
}
.kiji-wrap__page-number .number-button:hover {
  background-color: rgb(255, 255, 255);
  color: rgb(195, 170, 50);
}
.kiji-wrap__page-number .number-button--active {
  background-color: rgb(255, 255, 255);
  color: rgb(195, 170, 50);
}
.kiji-wrap__back-home {
  text-align: center;
  margin-top: 40px;
  font-family: "Nunito Sans", "Zen Kaku Gothic New", "Roboto", "Arial", sans-serif;
  padding-bottom: 5rem;
}
.kiji-wrap__back-home .back-button {
  display: inline-block;
  background-color: rgb(195, 170, 50);
  color: rgb(255, 255, 255);
  border: 1px solid rgb(195, 170, 50);
  padding: 10px 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.kiji-wrap__back-home .back-button:hover {
  background-color: rgb(255, 255, 255);
  color: rgb(195, 170, 50);
}

/* ボタン全体の横並び */
.sns-btn__list {
  display: flex;
  gap: 0.5rem; /* ボタンの間隔 */
  justify-content: center; /* 中央揃え（必要に応じて変更） */
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 480px) {
  .sns-btn__list {
    padding-bottom: 1rem;
  }
}
.sns-btn__list_item a {
  display: inline-block;
  transition: opacity 0.3s ease;
}
.sns-btn__list_item a:hover {
  opacity: 0.6;
}
.sns-btn__list_item a img {
  width: 2.2rem;
  height: 2.2rem;
  display: block;
}

.service_img-animation {
  overflow: hidden;
  position: relative;
  overflow: hidden;
  height: auto;
  z-index: 100;
}

.service_img-animation::before {
  animation: service_img-animation 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #fff;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

@keyframes spinner-rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadeInFromTop {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInFromBottom {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes img-opacity {
  100% {
    opacity: 1;
  }
}
@keyframes service_img-animation {
  100% {
    transform: translateX(100%);
  }
}
@keyframes moveRight {
  0% {
    left: -100%;
  }
  100% {
    left: 0%;
  }
}
@keyframes scrollText {
  0% {
    transform: translateX(0); /* 初期位置 */
  }
  100% {
    transform: translateX(-100%); /* 左端に終了 */
  }
}
@keyframes fadeInFromBottom-page {
  0% {
    opacity: 0;
    transform: translateY(20px); /* 下から上に移動 */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* 元の位置に戻る */
  }
}
.fadeInFromBottom-page {
  opacity: 0; /* 初期状態で透明 */
  visibility: hidden; /* 初期状態で非表示 */
}

.fadeInFromBottom-page.show {
  animation: fadeInFromBottom-page 0.7s ease-out forwards; /* アニメーションの追加 */
  visibility: visible;
}/*# sourceMappingURL=style.css.map */