@charset "UTF-8";
/* SCSSの読み込み */
@import url(all.css);
/*===============================================
  切り替え用
===============================================*/
html {
  font-size: clamp(8px, 2.2222222222vw, 10px);
}

.sp-none {
  display: none !important;
}

.com-table:not(.com-table--noblock) table,
.com-table:not(.com-table--noblock) table tbody,
.com-table:not(.com-table--noblock) table th,
.com-table:not(.com-table--noblock) table tr,
.com-table:not(.com-table--noblock) table td {
  display: block !important;
  width: 100% !important;
}

/*===============================================
  ページネーション
===============================================*/
/*===============================================
  詳細ページ前後
===============================================*/
/*===============================================
  wrapper
===============================================*/
#wrapper {
  min-width: 320px;
}

/*===============================================
  header
===============================================*/
#header .header__inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 90%;
  height: 8rem;
}
#header .header__logo {
  width: 25rem;
}
#header .header__logo img {
  aspect-ratio: 250/55;
}

/*===============================================
  footer
===============================================*/
#footer {
  border-top: solid 0.5rem var(--color-denim);
}
#footer .footer__inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  row-gap: 3rem;
  width: 100%;
  padding-top: 6rem;
}
#footer .footer__logo {
  width: 25rem;
  padding-bottom: 1rem;
}
#footer .footer__logo img {
  aspect-ratio: 250/55;
}
#footer .footer__sns {
  max-width: 36rem;
  padding: 0 2rem max(30px, 4rem);
  gap: max(30px, 4rem);
}
#footer .footer__sns::before {
  height: calc(100% - 1.2rem);
}
#footer .footer__sns dt > span::before {
  width: calc(100% + 6.4rem);
}
#footer .footer__sns dd {
  width: max(40px, 5rem);
}

/*フッターナビ
-----------------------------*/
.footer-nav {
  width: 100%;
  padding-top: 2rem;
  margin-bottom: -3rem;
}
.footer-nav__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--color-denim);
  padding-top: 1px;
}
.footer-nav__item {
  background: var(--color-white);
}
.footer-nav__item:first-of-type:nth-last-of-type(2n + 1) {
  grid-column: span 2;
}
.footer-nav__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.5rem;
  line-height: 2;
  padding: 1.5rem 1.2rem;
}
.footer-nav__link::after {
  content: "";
  display: block;
  width: 0.6rem;
  aspect-ratio: 6/12;
  -webkit-mask: url(../img/common/arrow.svg) no-repeat center/contain;
          mask: url(../img/common/arrow.svg) no-repeat center/contain;
  background-color: var(--color-blue);
}

/*コピーライト
-----------------------------*/
.copy {
  width: 100%;
  padding-block: 1.5rem;
  background: var(--color-blue);
}
.copy p {
  font-size: 1.1rem;
  color: var(--color-white);
}

/*===============================================
  fixed固定
===============================================*/
/*ページトップ
-----------------------------*/
#pagetop {
  right: 1rem;
  bottom: 1rem;
}

/*サイドボタン
-----------------------------*/
#side {
  left: 1rem;
  bottom: 1rem;
}

/*===============================================
  visual
===============================================*/
/*メインビジュアル
-----------------------------*/
.visual__main {
  height: 120vw;
  max-height: 72rem;
  padding-bottom: 4rem;
}
.visual__main::before, .visual__main::after {
  content: "";
  width: 100%;
  height: 50%;
  position: absolute;
  left: 0;
  z-index: -2;
}
.visual__main::before {
  background: url(../img/visual/mv_left.jpg) no-repeat right top/125%;
  top: 0;
}
.visual__main::after {
  background: url(../img/visual/mv_right.jpg) no-repeat left top/125%;
  bottom: 0;
}
.visual__main-catch {
  width: 28rem;
}

/*サブビジュアル
-----------------------------*/
.visual__sub {
  height: 20rem;
}
.visual__sub-catch {
  min-width: 32rem;
  height: 10rem;
  padding-inline: 2rem;
}
.visual__sub-catch img {
  height: 6.4rem;
}

/*===============================================
  main#container
===============================================*/
/*===============================================
  パンくずリスト
===============================================*/
.breadcrumb {
  padding-top: 1.2rem;
}
.breadcrumb__list {
  width: 90%;
}
.breadcrumb + .section {
  padding-top: 10rem;
}

/*===============================================
  main共通
===============================================*/
.section {
  padding: 8rem 0;
}

.inbox {
  width: 90%;
}

/*ボタン
-----------------------------*/
.com-btn {
  width: 20em;
  height: max(50px, 6rem);
  margin-inline: auto;
}

.com-link {
  justify-content: center;
  width: 36rem;
  height: max(80px, 9rem);
  font-size: var(--font-size-18);
  padding: 0 4rem 0 max(20px, 2.25rem);
}
.com-link--mail::before {
  width: 3rem;
}
.com-link--line::before {
  width: max(40px, 4.5rem);
  margin-right: max(20px, 2.25rem);
}
.com-link::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
}

/*テーブル
-----------------------------*/
.com-table tr th {
  padding: 1.5rem 2rem;
}
.com-table tr td {
  padding: 1.5rem 2rem;
}
.com-table--noblock tr th {
  width: 8em;
  border-bottom: solid 1px var(--color-denim);
}
.com-table--noblock tr td {
  vertical-align: middle;
  border-bottom: solid 1px var(--color-blue);
}
.com-table--noblock tr:first-of-type th,
.com-table--noblock tr:first-of-type td {
  border-top: solid 1px var(--color-blue);
}
.com-table--noblock tr:last-of-type th {
  border-bottom-color: var(--color-blue);
}
/*テキストボックス
-----------------------------*/
.com-text strong {
  font-size: var(--font-size-18);
  line-height: 1.66667;
}
.com-text br {
  display: none;
}

/* 背景
-----------------------------*/
.com-wave {
  padding-bottom: 5rem;
}
.com-wave::after {
  width: 120%;
  height: calc(3.6rem + 1px);
}
.com-wave + .section {
  padding-top: 10rem;
}

/*===============================================
  タイトル
===============================================*/
/*大タイトル
-----------------------------*/
.com-title01 {
  font-size: var(--font-size-25);
  row-gap: 1.5rem;
  margin-bottom: 4.2rem;
}

/*中タイトル
-----------------------------*/
.com-title02 {
  font-size: var(--font-size-20);
  border-radius: 0.5rem 1rem 1rem 0.5rem;
}

/*小タイトル
-----------------------------*/
.com-title03 {
  font-size: var(--font-size-18);
}

/* トップページ用タイトル
-----------------------------*/
.top-title::before {
  height: 7.2rem;
}
.top-title img {
  height: 2.8rem;
}

/*===============================================
  共通セクション
===============================================*/
/*お問い合わせ
-----------------------------*/
.com-contact {
  padding-bottom: 6rem;
}
.com-contact:has(+ .section) {
  padding-bottom: 0.5rem;
}
.com-contact:has(+ .section)::after {
  width: 120%;
  height: calc(3.6rem + 1px);
}
.com-contact__inner::before {
  width: calc(100vw + 0.4rem);
  height: calc(100% - 2rem);
}
.com-contact__title::before {
  width: calc(100% + 2.4rem);
  top: 2rem;
}
.com-contact__title img {
  height: 4.2rem;
}
.com-contact__heading {
  max-width: 35rem;
  flex-wrap: wrap;
  text-align: center;
  gap: 1rem;
}
.com-contact__heading::before {
  width: 100%;
}
.com-contact__heading > span {
  flex: 0 1 auto;
}
.com-contact__heading > span:last-of-type {
  flex: 0 0 100%;
}
.com-contact__heading img {
  height: 2.4rem;
}
.com-contact__items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.com-contact__tel {
  width: 100%;
  align-items: center;
  padding-top: 1.5rem;
}
.com-contact__text {
  padding-top: 5rem;
}
.com-contact__balloon {
  width: 88%;
  padding: 3rem 2rem;
  margin-bottom: 0.5rem;
}
.com-contact__balloon img {
  height: 3rem;
}
.com-contact__balloon::after {
  width: 3rem;
  aspect-ratio: 30/21;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  right: 8rem;
  top: calc(100% - 1px);
}
.com-contact__image {
  width: 20rem;
  margin-left: auto;
}

/*セクション名
-----------------------------*/
/*===============================================
  トップページ
===============================================*/
/*経営とメンタルの“二刀流”コーチング
-----------------------------*/
.top-about__inner::before {
  width: 104%;
  max-width: 45rem;
  height: 10.8rem;
  background-position: left bottom;
  aspect-ratio: inherit;
  top: -2rem;
  left: 0;
  transform: scale(-1, 1);
}
.top-about__title img {
  height: 8.8rem;
}
.top-about__btn {
  margin-top: 5rem;
}
.top-about__images {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.7rem;
  margin-top: 5rem;
}
.top-about__image--lt {
  width: calc(56% - 0.5rem);
}
.top-about__image--lt::before {
  width: 24rem;
  left: -4rem;
  bottom: -5rem;
}
.top-about__image--lt img {
  aspect-ratio: 5/4;
}
.top-about__image--rb {
  width: calc(44% - 0.5rem);
  margin-top: 5rem;
}
.top-about__image--rb::before {
  width: 20rem;
  right: -5rem;
  top: -4rem;
}
.top-about__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2rem;
}

/*WKLのコーチング
-----------------------------*/
.top-coaching::before {
  content: "";
  width: 95%;
  height: calc(100% + 5.6rem);
  background: url(../img/index/deco_coaching-rt.png) no-repeat right top, url(../img/index/deco_coaching-lb.png) no-repeat left bottom;
  background-size: 10rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 2rem;
  z-index: 2;
}
.top-coaching__item {
  background: linear-gradient(-40deg, var(--color-blue) 15%, var(--color-navy) 16%);
  padding: 4rem 3.5rem;
  border-radius: 2rem;
  margin-bottom: 3.5rem;
}
.top-coaching__item:last-of-type {
  margin-bottom: 0;
}
.top-coaching__item:nth-of-type(4n + 1) .top-coaching__num, .top-coaching__item:nth-of-type(4n + 2) .top-coaching__num {
  width: 7.2rem;
  top: -3rem;
  left: -1.5rem;
}
.top-coaching__item:nth-of-type(4n - 1) .top-coaching__num, .top-coaching__item:nth-of-type(4n) .top-coaching__num {
  width: 6.8rem;
  top: -3rem;
  right: -1.5rem;
}
.top-coaching__item p {
  font-size: var(--font-size-20);
  line-height: 2.25;
  background: url(../img/index/border_coaching.png) repeat left top/auto 4.5rem;
}
.top-coaching__item p br {
  display: none;
}
.top-coaching__btn {
  width: 35rem;
  margin-top: 4rem;
}

/*あなたにぴったりのサポートをご提案します。
-----------------------------*/
.top-flow__inner::before {
  display: none;
}
.top-flow__title {
  row-gap: 1.5rem;
}
.top-flow__title .sub img {
  height: 2.8rem;
}
.top-flow__title img {
  height: 2.5rem;
}
.top-flow__text p {
  word-break: keep-all;
}

/*お客様の声
-----------------------------*/
.top-voice__item {
  border-radius: 2rem;
  margin-bottom: 3rem;
}
.top-voice__item:last-of-type {
  margin-bottom: 0;
}
.top-voice__inner {
  padding: 2.4rem;
}
.top-voice__status .job {
  width: 100%;
  text-align: center;
}
.top-voice__body p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  max-height: 4lh;
}
.top-voice__btn {
  margin-top: 4rem;
}

/*ボタンリンクセクション
-----------------------------*/
.top-links {
  padding-bottom: 2.5rem;
}
.top-links__item {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 2.5rem;
  max-width: 40rem;
  background: var(--color-navy);
  border-radius: 2rem;
  padding: 3rem 2rem;
  margin: 0 auto 3rem;
}
.top-links__item:nth-of-type(2n) {
  background: var(--color-blue);
}
.top-links__item:last-of-type {
  margin-bottom: 0;
}
.top-links__item::before {
  width: 16rem;
  right: -2rem;
  bottom: -0.5rem;
}
.top-links__title {
  width: 20rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
}
.top-links__title img {
  height: 3rem;
}
.top-links__btn {
  width: 20rem;
  margin-left: 0;
}
.top-links__btn:hover {
  background: color-mix(in srgb, var(--color-red) 20%, var(--color-white));
}

/*お知らせ
-----------------------------*/
.top-news__title::before {
  height: 7.2rem;
}
.top-news__title img {
  height: 2.8rem;
}
.top-news__btn {
  margin-top: 4rem;
}

/*関連サイト
-----------------------------*/
.top-related__btns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.top-related__btn {
  height: 9.5rem;
}

/*===============================================
  World Knowledge Labについて
===============================================*/
/*World Knowledge Labについて
-----------------------------*/
.about-lead::before {
  width: 96%;
  height: 12rem;
  bottom: 0;
  z-index: 6;
}
.about-lead__image {
  margin-top: 4rem;
}
.about-lead__image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-lead__image img {
  border-radius: 2rem;
}

/*コーチ紹介
-----------------------------*/
.about-coach__box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 3rem;
  padding: 3rem 2.4rem;
  border-radius: 2rem;
  margin-bottom: 3rem;
}
.about-coach__box--deco {
  padding-bottom: 15rem;
}
.about-coach__box--deco::after {
  height: 12rem;
}
.about-coach__box > * {
  width: 100%;
}
.about-coach__heading {
  margin-bottom: 0;
}
.about-coach__body {
  max-width: 68rem;
}
.about-coach__item {
  margin-bottom: 3rem;
}
.about-coach__image--owner {
  width: 21.4rem;
  margin-inline: auto;
}
.about-coach__image--owner img {
  aspect-ratio: 0.8;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-coach__image--license {
  aspect-ratio: 16/9;
  padding: 1.5rem;
}
.about-coach__image--license img {
  height: 100%;
}

/*会社概要
-----------------------------*/
.about-company__table td .memo {
  display: block;
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  margin-top: 0.6rem;
}
.about-company__map {
  height: 30rem;
  margin-top: 3rem;
}

/*===============================================
  コーチングについて
===============================================*/
/*こんなお悩みはありませんか？
-----------------------------*/
.coaching-trouble__list {
  padding: 3rem 0 3rem 2rem;
  margin-bottom: 2rem;
}
.coaching-trouble__list::before {
  width: calc(100% + 5vw);
  border-radius: 2rem 0 0 2rem;
}
.coaching-trouble__list::after {
  width: 100%;
  height: 12rem;
  bottom: -10rem;
  right: 0;
}
.coaching-trouble__item {
  padding-left: 3rem;
}
.coaching-trouble__item::before {
  width: 1.8rem;
}
.coaching-trouble__solving {
  padding: 10rem 0 calc(5rem + clamp(0px, 38rem - 50vw, 6rem));
  margin-top: 10rem;
}
.coaching-trouble__solving::before {
  height: calc(4rem + 1px);
}
.coaching-trouble__solving::after {
  width: 95%;
  max-width: 64rem;
  height: 10rem;
  bottom: 0;
}
.coaching-trouble__heading {
  font-size: var(--font-size-24);
}
.coaching-trouble__heading::before {
  width: calc(100% + 4rem);
  height: 3rem;
}
.coaching-trouble__heading > span {
  letter-spacing: 0.05em;
  margin-right: -0.05em;
}
.coaching-trouble__heading .b {
  font-size: 1.25em;
}
.coaching-trouble__heading .ruby {
  padding-top: 2rem;
}
.coaching-trouble__heading .ruby span {
  font-size: var(--font-size-base);
}

/*経営とメンタルの“二刀流”コーチングで、
お悩みを解決へと導きます。
-----------------------------*/
.coaching-about__image {
  margin-top: 5rem;
}
.coaching-about__image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.coaching-about__image img {
  border-radius: 2rem;
}
.coaching-about__image::before {
  width: calc(100% + 4rem);
  height: calc(100% + 6rem);
  background-size: 32%;
  top: -3.2rem;
  left: -2rem;
}

/*サービス内容
-----------------------------*/
.coaching-service::before {
  display: none;
}
.coaching-service__entry {
  padding: 3rem 2.4rem;
  margin-bottom: 3rem;
}
.coaching-service__entry:last-of-type {
  margin-bottom: 0;
}
.coaching-service__item {
  line-height: var(--line-height-half);
  padding-bottom: calc(1.5rem + (1em - 1lh) / 2);
  margin-bottom: 1.5rem;
}

/*コーチングの特徴
-----------------------------*/
.coaching-feature__heading .num {
  font-size: var(--font-size-base);
  margin-bottom: 2rem;
}
.coaching-feature__image {
  margin-top: 3rem;
}
.coaching-feature__image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*料金
-----------------------------*/
.coaching-fee__table tr th {
  width: 60%;
}
.coaching-fee__table tr td {
  text-align: right;
}

/*コーチングの流れ
-----------------------------*/
.coaching-flow__item {
  padding: 3rem 2.4rem;
}
.coaching-flow__icon {
  width: 12rem;
  margin: 0 auto 3rem;
}
.coaching-flow__heading::before {
  font-size: var(--font-size-20);
}

/*===============================================
  ご相談事例
===============================================*/
/*ご相談事例　一覧
-----------------------------*/
.case-list__item {
  padding: 2.4rem 2rem 3rem;
  border-radius: 2rem;
}

/*===============================================
  お客様の声
===============================================*/
/*お客様の声　一覧
-----------------------------*/
.voice-list__item {
  padding: 2.4rem 2rem 3rem;
  border-radius: 2rem;
}

/*===============================================
  お知らせ
===============================================*/
/* お知らせ 一覧
-----------------------------*/
/* お知らせ 詳細
-----------------------------*/
/*タグリスト
-----------------------------*/
/*===============================================
  お問い合わせ
===============================================*/
.contact-form__table {
  margin-bottom: 2.5em;
}
.contact-form__table tr td {
  padding-inline: 0;
}
.contact-form__table tr td select,
.contact-form__table tr td textarea,
.contact-form__table tr td input[type=tel],
.contact-form__table tr td input[type=num],
.contact-form__table tr td input[type=text],
.contact-form__table tr td input[type=email],
.contact-form__table tr td input[type=url] {
  font-size: 1em;
  line-height: 1.5;
  padding: 0.5em 1em;
}
.contact-form .contact-submits-wrap > * {
  width: 20em;
  max-width: 100%;
  height: clamp(50px, 13.3333333333vw, 60px);
  margin: 0 auto 1.25em;
}
.contact-form .contact-submits-wrap > *:last-child {
  margin-bottom: 0;
}

/*===============================================
  お問い合わせ完了
===============================================*/
/*===============================================
  プライバシーポリシー
===============================================*/
.privacy-policy__box {
  padding: 3rem 2rem;
}

/*===============================================
  サイトマップ
===============================================*/
.sitemap-list__item {
  margin-bottom: 0.75em;
}
.sitemap-list__item:last-of-type {
  margin-bottom: 0;
}
.sitemap-list__link {
  padding: 1em;
}

/*===============================================
  404エラー
===============================================*/