@charset "UTF-8";
/* カラー設定 */
:root {
  --primary-color: #3BEE0E;
  --secondary-color: #0E3FEE;
  --accent-color: #FD1500;
  --black-color: #27292D;
  --back-color: #FEFEFE;
  --white-color: #FEFEFE;
}

/*----------------------------------------------------------*/
/* 全体共通 */
/*----------------------------------------------------------*/
html {
  width: 100%;
  box-sizing: border-box;
  font-size: 62.5%;
  font-weight: 400;
  scroll-behavior: smooth;
  line-height: 1.7;
}

body {
  background-color: var(--back-color);
  color: var(--black-color);
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
}

img {
  max-width: 100%;
}

.font-en {
  font-family: "Audiowide", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

h1 {
  font-size: 4.8rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 3.6rem;
  }
}

h2 {
  font-size: 3.2rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 2.8rem;
  }
}

h3 {
  font-size: 2.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 2.4rem;
  }
}

h4 {
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  h4 {
    font-size: 1.8rem;
  }
}

p {
  font-size: 1.6rem;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 1.4rem;
  }
}

.p-large {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .p-large {
    font-size: 1.6rem;
  }
}

.p-small {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .p-small {
    font-size: 1.2rem;
  }
}

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.bg-white {
  background-color: var(--white-color);
}

.color-white {
  color: var(--white-color);
}

.color-blue {
  color: var(--secondary-color);
}

.color-red {
  color: var(--accent-color);
}

.color-green {
  color: var(--primary-color);
}

a {
  transition: all 0.15s ease-in-out;
}

a:hover {
  opacity: 0.8;
}

.mt-xl {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .mt-xl {
    margin-top: 60px;
  }
}

.mb-xl {
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .mb-xl {
    margin-bottom: 60px;
  }
}

.mt-l {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .mt-l {
    margin-top: 40px;
  }
}

.mb-l {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .mb-l {
    margin-bottom: 40px;
  }
}

.mt-m {
  margin-top: 56px;
}
@media screen and (max-width: 768px) {
  .mt-m {
    margin-top: 32px;
  }
}

.mb-m {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .mb-m {
    margin-bottom: 32px;
  }
}

.mt-s {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .mt-s {
    margin-top: 20px;
  }
}

.mb-s {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .mb-s {
    margin-bottom: 20px;
  }
}

.mt-xs {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .mt-xs {
    margin-top: 20px;
  }
}

.mb-xs {
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .mb-xs {
    margin-bottom: 20px;
  }
}

.mt-xxs {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .mt-xxs {
    margin-top: 16px;
  }
}

.mb-xxs {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .mb-xxs {
    margin-bottom: 12px;
  }
}

.mt-16px {
  margin-top: 16px;
}

.mb-16px {
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .mb-16px {
    margin-bottom: 8px;
  }
}

.section {
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .section {
    padding: 56px 0;
  }
}

.inner {
  padding: 0 4%;
  max-width: 1320px;
  margin: auto;
  display: grid;
  gap: 48px;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 16px;
    gap: 32px;
  }
}

.sec-title {
  display: grid;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .sec-title {
    gap: 24px;
  }
}
.sec-title__en {
  background-color: var(--white-color);
  font-family: "Audiowide", sans-serif;
  padding: 12px 24px;
  border-radius: 100px;
  display: block;
  width: fit-content;
  margin: auto;
}
.sec-title h1 {
  text-align: center;
  color: var(--white-color);
}
.sec-title__description {
  color: var(--white-color);
  text-align: center;
}

.page-head {
  padding-top: 140px;
}
@media screen and (max-width: 768px) {
  .page-head {
    padding-top: 80px;
  }
}
.page-head hr {
  color: var(--gray-color);
}

.center {
  text-align: center;
  margin: auto;
  width: fit-content;
  display: block;
}

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

.sp-none {
  display: block;
}
@media screen and (max-width: 768px) {
  .sp-none {
    display: none;
  }
}

/*----------------------------------------------------------*/
/* リンクボタン_共通 */
/*----------------------------------------------------------*/
.link-btn {
  display: block;
  border-radius: 16px;
  width: 100%;
  max-width: 360px;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .link-btn {
    max-width: 327px;
  }
}
.link-btn p {
  width: 100%;
  text-align: center;
  line-height: 1;
}
.link-btn--1 {
  background-color: var(--accent-color);
}
.link-btn--1 p {
  color: var(--white-color);
}
.link-btn--2 {
  background-color: var(--white-color);
  border: solid 1px var(--accent-color);
}
.link-btn--2 p {
  color: var(--accent-color);
}

/*----------------------------------------------------------*/
/* ヘッダー */
/*----------------------------------------------------------*/
.header {
  position: sticky;
  top: 0;
  background-color: var(--black-color);
  padding: 16px 2.4% 16px 2.2%;
  z-index: 9999;
  position: fixed;
  width: 100%;
  /*OPEN時の動き*/
}
@media screen and (max-width: 1220px) {
  .header {
    padding: 0;
    height: 44px;
  }
}
.header nav {
  display: flex;
  flex-direction: row;
  position: relative;
}
@media screen and (max-width: 1220px) {
  .header nav {
    display: block;
  }
}
.header .drawer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 1220px) {
  .header .drawer {
    padding: 12px 16px;
  }
}
.header .navbar__logo {
  font-size: unset;
}
@media screen and (max-width: 1220px) {
  .header .navbar__logo {
    margin: auto;
  }
}
.header .navbar__logo a {
  width: 100%;
  display: block;
}
.header .navbar__logo a img {
  width: 100%;
  object-fit: contain;
}
@media screen and (max-width: 1220px) {
  .header .navbar__logo a img {
    height: 20px;
  }
}
.header__flex {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 1220px) {
  .header .navbar_toggle_wrapper {
    width: 28px;
    height: 28px;
    position: absolute;
    right: 16px;
    top: 8px;
  }
}
.header .navbar_toggle {
  display: none;
  transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
}
@media screen and (max-width: 1220px) {
  .header .navbar_toggle {
    display: block;
    z-index: 9999;
  }
}
.header .navbar_toggle .open {
  transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
}
.header .navbar_toggle .close {
  display: none;
}
.header .navbar_toggle.open .open {
  display: none;
}
.header .navbar_toggle.open .close {
  display: block;
}
.header .menu {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2.3vw;
  /*OPEN時の動き*/
}
@media screen and (max-width: 1220px) {
  .header .menu {
    display: none;
    z-index: 1000;
    position: relative;
    height: calc(100dvh - 44px);
    background: #27292D;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
  }
}
.header .menu__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 1220px) {
  .header .menu__list {
    display: block;
    height: fit-content;
    width: 100%;
  }
}
.header .menu__item {
  position: relative;
  padding: 0 0.8vw;
  transition: color 0.15s;
  display: flex;
  justify-content: center;
}
.header .menu__item:last-of-type {
  padding: 0 0 0 1.4vw;
}
@media screen and (max-width: 1220px) {
  .header .menu__item:last-of-type {
    padding: 16px 40px 0 40px;
  }
}
@media screen and (max-width: 1220px) {
  .header .menu__item {
    padding: 10px 0;
    justify-content: center;
  }
}
.header .menu__item a {
  width: 100%;
}
.header .menu__item p {
  color: #A6A9AF;
}
@media screen and (max-width: 1220px) {
  .header .menu__item p {
    font-size: 2rem;
    line-height: 1.5;
    font-weight: 700;
    text-align: center;
    color: #E7E8EB;
  }
}
.header .menu .header-link-box {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 1220px) {
  .header .menu .header-link-box {
    flex-direction: column;
    margin-top: 42px;
  }
}
.header .menu .header-link-box .link {
  display: flex;
  color: var(--white-color);
  padding: 12px 16px;
  border-radius: 12px;
}
@media screen and (max-width: 1220px) {
  .header .menu .header-link-box .link {
    padding: 14px 16px;
  }
}
.header .menu .header-link-box .link p {
  line-height: 1;
  width: 100%;
  text-align: center;
}
.header .menu .header-link-box .link--1 {
  background-color: var(--accent-color);
}
.header .menu .header-link-box .link--2 {
  background-color: var(--secondary-color);
}
.header .menu .header-link-box .link img {
  display: none;
}
@media screen and (max-width: 1220px) {
  .header .menu .header-link-box .link img {
    display: block;
  }
}
.header .menu .sp-only {
  display: none;
}
@media screen and (max-width: 1220px) {
  .header .menu .sp-only {
    display: block;
  }
}
.header .menu .sp-only .sns {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 28px;
}
.header .menu .sp-only .sns a {
  width: 32px;
  height: 32px;
  display: inline-block;
}
.header .menu .sp-only .sns a img {
  width: 100%;
}
.header .menu .sp-only .privacy {
  display: block;
  text-align: center;
  margin-top: 28px;
  padding-bottom: 28px;
  border-bottom: solid 1px #515151;
}
.header .menu .sp-only .privacy p {
  color: #E7E8EB;
}
.header .menu .sp-only .company {
  color: #A6A9AF;
  margin-top: 28px;
}
.header .menu.open {
  display: block;
  padding: 24px 32px;
  overflow: scroll;
}

.no-scroll {
  overflow: hidden;
}

[id] {
  scroll-margin-top: 40px;
  /* アンカー遷移時に20px下げる */
}

/*----------------------------------------------------------*/
/* フッター */
/*----------------------------------------------------------*/
.footer {
  background-color: #27292D;
  color: var(--white-color);
  padding: 40px 3.5%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 32px 16px;
  }
}
.footer__content__top {
  display: flex;
  gap: 32px;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: solid 1px #515151;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .footer__content__top {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .footer__content__top .name img {
    width: 220px;
  }
}
.footer__content__top .name p {
  color: #A6A9AF;
  margin-top: 8px;
}
.footer__content__top .organizer {
  color: #A6A9AF;
}
.footer__content__top .sns {
  display: flex;
  gap: 32px;
}
.footer__content__bottom {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__content__bottom {
    flex-direction: column-reverse;
    gap: 16px;
  }
}
.footer__content__bottom .copyright {
  color: #A6A9AF;
}
.footer__content__bottom .link {
  color: #A6A9AF;
  display: flex;
  gap: 32px;
}
.footer__content__bottom .link a {
  display: flex;
  align-items: center;
}
.footer__content__bottom .link a img {
  margin-right: 8px;
}

/*----------------------------------------------------------*/
/* 下層ページ共通 */
/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
/* フォーム共通 */
/*----------------------------------------------------------*/
.wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  font-size: 0;
}

.wpcf7-form-control-wrap .wpcf7-not-valid-tip::after {
  display: inline-block;
  padding-top: 8px;
  font-size: 1.6rem;
  color: #dc3232;
}
@media screen and (max-width: 768px) {
  .wpcf7-form-control-wrap .wpcf7-not-valid-tip::after {
    padding-top: 4px;
    font-size: 1.4rem;
  }
}

.wpcf7-form-control-wrap[data-name=contact-type] .wpcf7-not-valid-tip::after {
  content: "ご相談内容を選択してください。";
}

.wpcf7-form-control-wrap[data-name=your-company] .wpcf7-not-valid-tip::after {
  content: "会社名を入力してください。";
}

.wpcf7-form-control-wrap[data-name=your-name] .wpcf7-not-valid-tip::after {
  content: "お名前を入力してください。";
}

.wpcf7-form-control-wrap[data-name=your-email] .wpcf7-not-valid-tip::after {
  content: "メールアドレスを入力してください。";
}

.wpcf7-form-control-wrap[data-name=your-tel] .wpcf7-not-valid-tip::after {
  content: "電話番号を入力してください。";
}

.form__privacy .wpcf7-form-control-wrap[data-name=acceptance-192] .wpcf7-not-valid-tip::after {
  content: "同意にチェックを入れてください。";
  position: absolute;
  width: 280px;
  padding-top: 0;
  left: 14px;
}

.form__privacy input[type=checkbox] {
  width: fit-content;
}

.form__privacy .wpcf7-list-item-label {
  display: inline-block;
}

.wpcf7 form .wpcf7-response-output {
  display: none;
}

.grecaptcha-badge {
  visibility: hidden;
}