<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* ブレークポイントで要素を表示・非表示 */
.show-pc {
  display: block;
}
.show-tab {
  display: none;
}
.show-sp {
  display: none;
}
.pc-none {
  display: none;
}

.tab-none {
  display: block;
}

.sp-none {
  display: block;
}
.none-800 {
  display: block;
}
.show-800 {
  display: none;
}

@media (max-width: 1024px) {
  .show-pc {
    display: none;
  }
  .pc-none {
    display: block;
  }
  .show-tab {
    display: block;
  }
  .tab-none {
    display: none;
  }
}

@media (max-width: 800px) {
  .none-800 {
    display: none;
  }
  .show-800 {
    display: block;
  }
}
@media (max-width: 600px) {
  .show-sp {
    display: block;
  }
  .sp-none {
    display: none;
  }
}

/* 基本設定 */

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 1.4px;
  color: #273a44;
  background-color: #ebecee;
  word-break: break-all;
  overflow-x: hidden;
}
main {
  overflow: hidden;
}
.page__wrapper {
  margin-top: 90px;
}
@media screen and (max-width: 800px) {
  .page__wrapper {
    margin-top: 0;
  }
}
/* MEDIA(共通) */
.common__media {
  position: relative;
  background: #e13626;
  padding: 60px 18% 100px 18%;
}
.common__media__inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  justify-content: center;
  gap: 8%;
}

.common__media__title {
  position: absolute;
  top: -70px;
  left: 0;

  font-family: "Roboto Condensed", sans-serif;
  font-size: 64px;
  font-weight: 500;
}
.common__media__text {
  color: #f4f5f7;
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 2.8px;
}
.common__media__btn {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 50px;
  background: #ebecee;
  max-width: 300px;
  height: 60px;
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  line-height: 10px;
  font-weight: 500;
  letter-spacing: 1.6px;
  transition: 0.3s;
}
.common__media__btn:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.common__media__btn svg {
  display: block;
  margin-bottom: 8px;
  transition: 0.3s;
}
.common__media__btn:hover.common__media__btn svg {
  transform: translateX(10px);
}

@media screen and (max-width: 1300px) {
  .common__media {
    padding: 60px 10% 100px 10%;
  }
}
@media screen and (max-width: 800px) {
  .common__media {
    padding: 60px 10% 120px 10%;
  }
  .common__media__inner {
    grid-template-columns: 1fr 1fr;
  }
  .common__media__btn {
    position: absolute;
    bottom: -80px;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 600px) {
  .common__media {
    padding: 60px 5% 120px 5%;
  }
  .common__media__title {
    font-size: 48px;
    top: -85px;
  }
  .common__media__text {
    font-size: 12px;
    line-height: 24px;
    letter-spacing: 0.96px;
  }
  .common__media__btn {
    max-width: 280px;
  }
}
/* ASSESSMENT(共通) */
.common__assessment {
  margin-top: 60px;
  position: relative;
  background: #273a44;
  padding: 60px 18% 100px 18%;
}
.common__assessment__inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  justify-content: center;
  gap: 8%;
}

.common__assessment__title {
  position: absolute;
  top: -70px;
  left: 0;
  color: #e13626;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 64px;
  font-weight: 500;
}
.common__assessment__text {
  color: #f4f5f7;
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 2.8px;
}
.common__assessment__btn {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 50px;
  background: #ebecee;
  max-width: 300px;
  height: 60px;
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  line-height: 10px;
  font-weight: 500;
  letter-spacing: 1.6px;
  transition: 0.3s;
}
.common__assessment__btn:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.common__assessment__btn svg {
  display: block;
  margin-bottom: 8px;
  transition: 0.3s;
}
.common__assessment__btn:hover.common__assessment__btn svg {
  transform: translateX(10px);
}

@media screen and (max-width: 1300px) {
  .common__assessment {
    padding: 60px 10% 100px 10%;
  }
}
@media screen and (max-width: 800px) {
  .common__assessment {
    padding: 60px 10% 120px 10%;
  }
  .common__assessment__inner {
    grid-template-columns: 1fr 1fr;
  }
  .common__assessment__btn {
    position: absolute;
    bottom: -80px;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 600px) {
  .common__assessment {
    padding: 60px 5% 120px 5%;
  }
  .common__assessment__text {
    font-size: 12px;
    line-height: 24px;
    letter-spacing: 0.96px;
  }
  .common__assessment__btn {
    max-width: 280px;
  }
  .common__assessment__title {
    font-size: 48px;
    top: -85px;
  }
}
/* REQEST｜CONTACT (共通) */
.common__bottom {
  padding: 100px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.common__box {
  position: relative;
  width: 45%;
  background-color: #273a44;
  max-width: 400px;
}
.common__box:hover .common__box__inner {
  margin: 0;
  padding: 50px 40px;
}
.common__box:hover .common__box__title {
  animation: hurueru 0.2s infinite;
}
.common__box--red {
  background-color: #e13626;
}
.common__box__title {
  width: 100%;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 48px;
  font-weight: 500;
}
.common__box__title--red {
  color: #e13626;
}
.common__box__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 10px;
  padding: 40px 20px;
  border: 1.5px solid #f4f5f7;
  color: #f4f5f7;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.8px;
  transition: 0.5s;
}
@keyframes hurueru {
  0% {
    transform: translate(-50%, 0px) rotateZ(0deg);
  }
  25% {
    transform: translate(-50%, 2px) rotateZ(1deg);
  }
  50% {
    transform: translate(-50%, 2px) rotateZ(0deg);
  }
  75% {
    transform: translate(-50%, 0px) rotateZ(-1deg);
  }
  100% {
    transform: translate(-50%, 0px) rotateZ(0deg);
  }
}

@media screen and (max-width: 1024px) {
  .common__box:hover .common__box__inner {
    margin: 0;
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .common__bottom {
    gap: 20px;
    padding: 80px 10%;
  }
  .common__box__inner {
    flex-direction: column;
    font-size: 4vw;
    letter-spacing: 1.8px;
    padding: 20% 0;
    gap: 5px;
  }
  .common__box__inner--gap9 {
    gap: 9px;
  }
  .common__box__title {
    font-size: 7.5vw;
    top: -27px;
  }
  .request__icon {
    width: 28px;
  }
  .contact__icon {
    width: 28px;
  }
  .common__box:hover .common__box__inner {
    margin: 0;
    padding: 27% 0;
  }
}
/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: #ebecee;
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
  align-content: center;
}
.header nav {
  width: 100%;
  display: flex;
}
.header__inner {
  display: flex;
  align-items: center;
  padding: 0 35px;
}

.header__logo {
  cursor: pointer;
  transition: 0.3s;
  width: 74px;
  height: 45px;
}
.header__logo:hover {
  opacity: 0.6;
}

.header__nav {
  width: 100%;
  display: flex;
  align-items: center;
  margin-left: 120px;
  gap: 50px;
}
.header__list {
  position: relative;
  color: #273a44;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.header__link:hover {
  background: #e13626;
  color: #f4f5f7;
}
.header__link {
  padding: 1px 4px;
  transition: 0.3s;
}
.header__link.on {
  background: #e13626;
  color: #f4f5f7;
}
.header__list__content-in {
  padding-right: 20px;
}
.header__list__content-in::after {
  position: absolute;
  top: 34%;
  right: 0;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 8px solid #273a44;
  border-bottom: 0;
  transition: 0.5s;
}
.header__list__content-in:hover::after {
  border-top: 8px solid #e13626;
}

.header__list__content-in:has(.header__link.on)::after {
  border-top: 8px solid #e13626;
}
.header__sub-menu {
  opacity: 0;
  position: absolute;
  width: max-content; /* コンテンツの幅に合わせる */
  min-width: 170px; /* 最小幅を設定（必要な場合） */
  left: 0;
  bottom: -80px;
  padding-top: 10px;
  transition: 0.5s;
  pointer-events: none;
}
.header__list:hover .header__sub-menu {
  opacity: 1;
  bottom: -155px;
  pointer-events: all;
}
.header__sub-menu__list {
  font-size: 14px;
  padding: 25px 35px;
  background: #ebecee;
  border: 2px solid #e13626;
  box-shadow: 0 0px 8px #00000029;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.header__sub-menu__list__item {
  display: flex;
  gap: 10px;
  align-items: center;
  line-height: 1.5;
}
.header__sub-menu__list__item:before {
  content: "";
  width: 2px;
  height: 15px;
  background: #e13626;
}
.header__sub-menu__list__item a {
  padding: 1px 4px;
  transition: 0.5s;
}
.header__sub-menu__list__item a:hover {
  background: #e13626;
  color: #f4f5f7;
}
.header__btn {
  margin-left: auto;
  width: 210px;
  height: 50px;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  line-height: 50px;
  letter-spacing: 1.4px;
  background-color: rgba(39, 58, 68, 1);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: 0.3s;
}
.header__btn:hover {
  background: #e13626;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 997;
  pointer-events: none;
  transition: 0.5s;
}
.overlay.is-active {
  pointer-events: all;
}
@media screen and (max-width: 1200px) {
  .header__nav {
    gap: 5%;
    margin-left: 6%;
  }
}
@media screen and (max-width: 1024px) {
  .header__nav {
    gap: 3%;
    margin-left: 6%;
  }
  .header__list {
    font-size: 12px;
  }
  .header__btn {
    width: 170px;
    height: 40px;
    font-size: 12px;
    line-height: 40px;
  }
  .header__btn svg {
    width: 15px;
    height: 15px;
  }
  .header__list__content-in {
    padding-right: 10px;
  }
  .header__list__content-in::after {
    top: 40%;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top: 6px solid #273a44;
  }
}
@media screen and (max-width: 800px) {
  .header {
    background: transparent;
    pointer-events: none;
    height: 0;
  }
  .header__inner {
    display: none;
  }
  .header__btn {
    font-size: 14px;
    margin: 40px 0 0 0;
    width: 80%;
    height: 50px;
    font-weight: 600;
    background-color: rgba(235, 236, 238, 1);
    color: #273a44;
  }
  .header__btn svg path {
    fill: #273a44;
    transition: 0.5s;
  }
  .header__btn:hover {
    color: #ebecee;
  }
  .header__btn:hover svg path {
    fill: #ebecee;
  }
}
@media screen and (max-width: 600px) {
  .header__btn {
    margin: 30px 0 0 0;
  }
}
/* ハンバーガーメニュー  */
.hamburger {
  display: none;
  cursor: pointer;
  position: fixed;
  top: 25px;
  right: 0;
  background-color: #273a44;
  border-radius: 20px 0 0 20px;
  width: 60px;
  height: 60px;
  padding: 15px 0 15px 10px;
  pointer-events: all;
  z-index: 1000;
}

.hamburger__border {
  display: block;
  height: 2px;
  margin: 6px auto;
  width: 30px;
  background-color: #ebecee;

  transition: transform 0.3s, 0.5s;
}
.hamburger__border--01.is-active {
  transform: rotate(-45deg) translate(-4px, 6px);
}
.hamburger__border--02.is-active {
  opacity: 0;
}
.hamburger__border--03.is-active {
  transform: rotate(45deg) translate(-4px, -6px);
}

.header .hamburger__nav {
  display: none;
  pointer-events: all;
  background-color: #273a44;
  height: auto;
  position: fixed;
  top: 25px;
  right: -100%;
  width: 80%;
  z-index: 998;
  transition: 0.6s ease;
  border-radius: 20px 0 0 20px;
}

.header .hamburger__nav.is-active {
  right: 0;
}
.header .hamburger__inner {
  padding: 100px 40px 80px 80px;
  overflow: scroll;
  max-height: 95vh;
}

.header .hamburger__nav__links {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.header .hamburger__nav__link {
  display: block;
  width: 100%;
  color: #ebecee;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 500;
}
.header .hamburger__nav__link a {
  padding: 1px 4px;
  transition: 0.5s;
}
.header .hamburger__nav__link a:hover {
  background: #e13626;
  color: #f4f5f7;
}
.hamburger__nav__togle {
  vertical-align: middle;
  margin-left: 5px;
  transition: .3s;
}
.hamburger__nav__togle.JsAcBtn.is-active{
  transform: rotate(180deg);
}
.hamburger__nav__togle.JsAcBtn .is-active--none{
  transition: .3s;
}
.hamburger__nav__togle.JsAcBtn.is-active .is-active--none{
  opacity: 0;
}

@media screen and (max-width: 800px) {
  
  .header .hamburger {
    display: block;
  }
  .header .hamburger__nav {
    display: block;
  }
  .header .hamburger__nav__link a {
    width: 95%;
}
  .header__sub-menu {
    width: 100%;
    min-width: 100%;
    padding-left: 8px;
    opacity: 1;
    position: inherit;
    bottom: inherit;
    left: inherit;
    transition: none;
  }
  .header__sub-menu__list {
    pointer-events: all;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }
  .header__sub-menu__list__item:before {
    width: 4px;
  }
}
@media screen and (max-width: 600px) {
  .header .hamburger__nav__links {
    gap: 30px;
  }
  .header .hamburger__inner {
    padding: 80px 40px 60px 50px;
  }
}
@media screen and (max-width: 390px) {
  .header .hamburger__nav {
    width: 85%;
  }
}

/* /header */

/* foooter */
.footer {
  padding: 70px 120px 50px 120px;
  background-color: #f4f5f7;
}
.footer__layout {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

.footer__logo {
  max-width: 120px;
  display: block;
  transition: 0.5s;
}
.footer__logo:hover {
  opacity: 0.6;
}
.footer__left__text {
  margin-top: 40px;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px; /* 178.571% */
  letter-spacing: 1.4px;
}
.footer__right {
  position: relative;
  display: flex;
  justify-content: end;
  gap: 100px;
  align-items: end;
}
.footer__links {
  display: flex;
  gap: 20px;
}
.footer__links.bottom {
  margin-top: 20px;
}
.footer__link {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  transition: 0.5s;
}
.footer__link a {
  transition: 0.5s;
  padding: 0 4px;
}
.footer__link a:hover {
  background: #e13626;
  color: #f4f5f7;
}
.footer__sub-links {
  margin-top: 5px;
}
.footer__sub-link {
  font-size: 12px;
  font-weight: 500;
  position: relative;
  padding-left: 12px;
  margin-left: 15px;
}
.footer__sub-link::before {
  content: "▼";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px; /* 矢印のサイズを調整 */
  color: inherit; /* リンクと同じ色を使用 */
  transition: 0.5s;
}
.footer__sub-link:hover::before {
  color: #e13626; /* ホバー時の色を指定 */
}
.footer .zen {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.footer__bottom {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.footer__copy {
  max-width: 125px;
  margin-top: 50px;
}
.footer__copy img {
  mix-blend-mode: darken;
}
@media screen and (max-width: 1400px) {
  .footer {
    padding: 70px 5% 50px 5%;
  }
  .footer__right {
    width: 100%;
  }
}
@media screen and (max-width: 1100px) {
  .footer__layout {
    flex-direction: column;
    gap: 40px;
    align-items: start;
  }
  .footer__right {
    justify-content: space-between;
    gap: 20px;
  }
}
@media screen and (max-width: 800px) {
  .footer {
    padding: 70px 10% 50px 10%;
  }
  .footer__layout {
    gap: 30px;
  }
  .footer__links {
    flex-direction: column;
    gap: 15px;
  }
  .footer__link {
    display: flex;
    align-items: flex-start;
  }
  .footer__sub-links {
    margin-top: 0;
  }
  .footer__copy {
    margin-top: 0;
    max-width: 80px;
  }
  .footer__left__text {
    line-height: 20px;
  }
  .footer__left__text--small {
    font-size: 12px;
  }
  .flex-row--sp {
    display: flex;
    flex-direction: row;
  }
}
@media screen and (max-width: 600px) {
  .footer {
    padding: 70px 2% 50px 8%;
  }
  .footer__logo {
    max-width: 100px;
  }
  .footer__right {
    gap: 0;
    width: 100%;
  }
  .flex__end--sp {
    align-items: end;
    justify-content: space-between;
  }
}
@media screen and (max-width: 414px) {
  .footer {
    padding: 70px 5% 50px 5%;
  }
  .footer__left__text {
    font-size: 3.5vw;
  }
  .footer__link {
    font-size: 3.5vw;
  }
  .footer__sub-link {
    font-size: 3vw;
  }
}

/* /foooter */

/* お問い合わせラベル */
.contact__label {
  position: fixed;
  bottom: 5%;
  right: 0;
  width: 100%;
  max-width: 140px;
  z-index: 100;
}
.contact__label__close {
  cursor: pointer;
  display: inline-block;
}

.contact__label__inner {
  position: relative;
  transition: 0.5s;
}
.contact__label__inner:hover {
  opacity: 0.8;
}
.contact__label__inner svg {
  transition: 0.5s;
}
.contact__label__inner:hover svg {
  transform: translateX(10px);
}
.contact__label__title {
  display: block;
  width: 100%;
  background: #e13626;
  padding: 20px 10px;
  text-align: center;
  color: #f4f5f7;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px; /* 100% */
  letter-spacing: 2px;
  display: flex;
  justify-content: center;
}
.contact__label__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.contact__label__title--large {
  font-size: 36px;
  line-height: 16px; /* 44.444% */
  letter-spacing: 10.8px;
}
.contact__label__contents {
  padding: 10px 10px 30px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #273a44;
}
.contact__label__text {
  color: #f4f5f7;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
  letter-spacing: 1.4px;
}

@media screen and (max-width: 600px) {
  .contact__label {
    max-width: 70px;
  }
  .contact__label__contents {
    writing-mode: vertical-lr;
    flex-direction: row;
    gap: 5px;
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    line-height: 22px; /* 137.5% */
    letter-spacing: 1.6px;
    padding: 20px 10px;
  }
  .contact__label__contents svg {
    max-width: 30px;
  }
}
/* COMING  SOON */
.coming-soon {
  background-image: url(../images/common/bgCommingSoon.png);
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.coming-soon--media {
  margin-top: -40px;
}
.coming-soon__title {
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 2.4px;
}
.coming-soon__text {
  margin-top: 12px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 1.4px;
}

.coming-soon__btn {
  border-radius: 20px;
  background: #273a44;
  display: flex;
  width: 240px;
  height: 65px;
  padding: 30px 31px 30px 38px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  color: #ebecee;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 1.8px;
  margin: 50px auto 0 auto;
  transition: 0.5s;
}
.coming-soon__btn:hover {
  opacity: 0.6;
}
.coming-soon__btn svg {
  transition: 0.5s;
}
.coming-soon__btn:hover svg {
  transform: translateX(-10px);
}
@media screen and (max-width: 600px) {
  .coming-soon {
    height: 60vh;
  }
  .coming-soon__title {
    font-size: 32px;
    letter-spacing: 1.6px;
  }
  .coming-soon__text {
    font-size: 14px;
    line-height: 25px; /* 178.571% */
    letter-spacing: 1.4px;
  }
  .coming-soon__btn {
    background: transparent;
    width: auto;
    margin-top: 10px;
    padding: 0;
  }
}
</pre></body></html>