@charset "UTF-8";
/* CSS Document */
/**********************************************************
* CSS表記
**********************************************************/
:root {
  --yellow: #ffe600;
  --black: #4b4b4b;
  --gray: #f4f4f4;
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-serif: YakuHanMP, "Hiragino Mincho ProN", "Noto Serif JP", "Yu Mincho", YuMincho, serif;
}
html {font-size: 62.5%;}
body {
  color: var(--black); font-family: var(--font-serif);
  font-size: 1.6rem; line-height: 2;
  -webkit-font-feature-settings: "palt";
  -moz-font-feature-settings: "palt";
  font-feature-settings: "palt";
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--gray);
  min-width: 1000px;
}
img {pointer-events: none;}
::selection {background-color: var(--yellow);}
.aos__overflow--hidden {overflow: clip;}
@media (width < 680px) {
  body {min-width: auto; font-size: 1.4rem;}
}

/******　PC、スマホ・タブレット オンリー仕様　******/
@media (width < 680px) {
  .pc_only {display: none;}
}
@media not all and (width < 680px) {
  .sp_only {display: none;}
}

/**********************************************************
* 共通要素
**********************************************************/

/*　フッターのコンタクトボタン　*/
.contact__footer {
  font-family: var(--font-sans);
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0.1rem;
  width: 100%;
  background-color: var(--yellow);
}
.contact__footer--text {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 50px 0;
}
.contact__footer--text span {
  position: inherit;
  z-index: 3;
}
.contact__footer--text::before {
  content: url("../img/contact_logo_b.svg");
  width: 240px;
  position: inherit;
  z-index: 4;
  margin-bottom: 15px;
}
.contact__footer--text::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  z-index: 2;
  transform: scale(0, 1);
  transform-origin: center;
  transition: all 0.35s;
}
@media(hover) {
  .contact__footer--text:hover::before {
    content: url("../img/contact_logo_w.svg");
  }
  .contact__footer--text:hover::after {
    transform: scale(1, 1);
    transform-origin: center;
  }
  .contact__footer--text:hover {
    color: #fff;
  }
}
@media (max-width:680px) {
  .contact__footer--text {
    padding: 40px 0;
  }
  .contact__footer--text::before {
    width: 180px;
  }
}

/*　トップページ・各セクションをまとめるコンテナ　*/
.section__container {
  width: min(100% - 60px, 800px);
  padding: 120px 0 0;
  margin: 0 auto;
}

/*　トップページ・ショルダー　*/
.toppage__sectionname {
  position: relative;
  margin: 0 auto 80px;
}
.toppage__sectionname img {
  width: auto;
  height: 18px;
}
.toppage__sectionname::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  left: calc(-101vw);
  width: 100vw;
  height: 1px;
  background-color: #000;
}

/*　ニューモフィズム・ボタン　*/
.contentsBtn_wrap{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 70px;
}
.btn__neumorphism {
  display: block;
  position: relative;
  overflow: hidden;
  width: 380px;
  font-size: 1.6rem;
  line-height: 1;
  font-family: var(--font-sans);
  text-align: center;
  border-radius: 35px;
  background-color: var(--gray);
  box-shadow: 5px 5px 10px #dcdcdc, -5px -5px 10px #ffffff;
  padding: 27px 0;
  transition: all 0.25s;
  z-index: 1;
  /*　←「z-index:1」はSafariのborder-radiusが効かないバグの対処　*/
}
.btn__neumorphism span {
  position: inherit;
  z-index: 3;
}
.btn__neumorphism::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: calc(50% - 0.5rem);
  left: 30px;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: var(--black);
  z-index: 2;
  transform: scale(1, 1);
  transform-origin: center;
  transition: all 0.25s;
}
.btn__neumorphism:hover::before {
  transform: scale(75, 75);
  transform-origin: center;
}
.btn__neumorphism:hover {
  color: #fff;
}
@media  (max-width:680px) {
  .section__container {
    padding: 90px 0 0;
  }
  .toppage__sectionname {
    width: auto;
    margin: 0 auto 50px;
  }
  .contentsBtn_wrap{
    margin-top: 40px;
  }
  .btn__neumorphism::before {
    display: none;
  }
  .btn__neumorphism:hover {
    background-color: var(--black);
  }
}
@media (max-width:480px) {
  .btn__neumorphism {width: 300px;}
}

/**********************************************************
* ヘッダー
**********************************************************/
header {
  position: sticky;
  top: 0;
  left: 0;
  font-size: 1.3rem;
  line-height: 1;
  font-family: var(--font-sans);
  z-index: 10;
}
.load__header {
  display: contents;
}
.hdr--wrap {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  padding: 20px 40px;
  transition: all 0.5s
}
.hdr--wrap img {
  width: 126px;
  transition: all 0.5s;
}
.hdr--wrap.hdr--first {
  background-color: transparent;
  padding: 40px;
}
.hdr--wrap.hdr--first img {
  width: 440px;
}
.hdr__nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
}
.hdr__nav__item {
  position: relative;
}
.hdr__nav__item::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  transform: scale(0, 1);
  transform-origin: center;
  transition: all 0.35s;
}
.hdr__nav__contact {
  display: block;
  position: relative;
  overflow: hidden;
  width: 120px;
  text-align: center;
  border-radius: 20px;
  padding: 13px 0;
  background-color: var(--yellow);
  transition: all 0.2s;
}
.hdr__nav__contact span {
  position: inherit;
  z-index: 3;
}
.hdr__nav__contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  z-index: 2;
  transform: scale(0, 1);
  transform-origin: center;
  transition: all 0.2s;
}
@media(hover) {
  .hdr__nav__item:hover::after {
    transform: scale(1, 1);
    transform-origin: center;
  }
  .hdr__nav__contact:hover::before {
    transform: scale(1, 1);
    transform-origin: center;
  }
  .hdr__nav__contact:hover {
    color: #fff;
  }
}
@media (max-width:680px) {
  .hdr--wrap {
    align-items: center;
    padding: 0 0 0 15px;
    transition: all 0s
  }
  .hdr--wrap img {
    width: auto;
    height: 32px;
    transition: all 0s;
  }
  .hdr--wrap.hdr--first {
    background-color: #fff;
    padding: 0 0 0 15px;
  }
  .hdr--wrap.hdr--first img {
    width: auto;
    height: 32px;
  }
  /******　バーガーメニューボタン　******/
  .hdr__hamburger {
    position: relative;
    display: block;
    width: 70px;
    height: 70px;
    background-color: #000;
    z-index: 999;
  }
  .hdr__hamburger span {
    position: absolute;
    left: 20px;
    display: block;
    width: 30px;
    height: 1px;
    background-color: #fff;
    transition: all 0.35s
  }
  .hdr__hamburger span:nth-last-child(1) {
    top: 24px;
  }
  .hdr__hamburger span:nth-last-child(2) {
    top: 34px;
  }
  .hdr__hamburger span:nth-last-child(3) {
    top: 34px;
  }
  .hdr__hamburger span:nth-last-child(4) {
    top: 44px;
  }
  /******　メニューボタンアクティブ時×印　******/
  .hdr__hamburger.active span:nth-last-child(1) {
    opacity: 0;
  }
  .hdr__hamburger.active span:nth-last-child(2) {
    transform: rotate(45deg);
    transform-origin: center;
  }
  .hdr__hamburger.active span:nth-last-child(3) {
    transform: rotate(-45deg);
    transform-origin: center;
  }
  .hdr__hamburger.active span:nth-last-child(4) {
    opacity: 0;
  }
  .hdr__nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    font-size: 2rem;
    color: #fff;
    background-color: #000;
    z-index: 99;
    transform: scale(0, 0);
    transform-origin: top right;
  }
  .hdr__nav.active {
    transform: scale(1, 1);
    transition: all 0.15s;
  }
  .hdr__nav__logo {
    padding: 15px
  }
  .hdr__nav__list {
    flex-direction: column;
    column-gap: 0;
    width: 100%;
    margin-top: 50px;
  }
  .hdr__nav__item {
    width: inherit;
    border-top: solid 1px var(--black);
    border-bottom: solid 1px var(--black);
    margin-top: -1px;
    background-color: #000;
  }
  .hdr__nav__item a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 5vh 0;
  }
  .hdr__nav__item::after {
    display: none;
  }
  a.hdr__nav__contact {
    width: 300px;
    color: #000;
    border-radius: 25px;
    padding: 15px 0;
    margin-top: 5vh;
  }
  .hdr__nav__contact::before {
    display: none;
  }
  .hdr__nav__contact:hover {
    color: #000;
  }
}
/**********************************************************
* フッター
**********************************************************/
footer {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  font-family: var(--font-sans);
  background-color: #000;
}
.ftr__wrap {
  display: grid;
  grid-template-columns: 60% 40%;
  grid-template-rows: 1fr auto;
  column-gap: 0px;
  row-gap: 80px;
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 50px 0 70px;
  letter-spacing: 0.05rem;
}
.ftr__company__wrap {
  grid-column: 1/2;
}
.ftr__logo__en--w {
  width: 300px;
  margin-bottom: 35px;
}
.ftr__logo__ja--w {
  width: 260px;
  margin-bottom: 20px;
}
.ftr__info div {
  margin-bottom: 0.8rem;
}
.ftr__info div:last-child {
  margin-bottom: 0;
}
.ftr__nav {
  grid-column: 2/3;
  margin: 7px 0;
}
.ftr__nav ul {
  display: flex;
  column-gap: 30px;
}
.ftr__nav--cont {
  width: 50%;
  padding: 10px 0 10px 30px;
  border-left: 1px solid #fff;
}
.ftr__nav--cont li {
  margin-bottom: 22px;
}
.ftr__nav--cont li:last-child {
  margin-bottom: 0;
}
.ftr__copyright {
  grid-column: 1/3;
  display: inline-block;
  width: 100%;
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.1rem;
}
.ftr__copyright span {
  display: inline-block;
  margin-top: 10px;
  color: #ccc;
}
@media (max-width:680px) {
  .ftr__wrap {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr repeat(2, auto);
    column-gap: 0px;
    row-gap: 40px;
  }
  .ftr__logo__en--w {
    width: 250px;
    margin: 0 auto 50px;
  }
  .ftr__logo__ja--w {
    width: 240px;
    margin: 0 auto 20px;
  }
  .ftr__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 15px;
    text-align: center;
  }
  .ftr__info span {
    display: inline-block;
    margin-bottom: 5px;
  }
  .ftr__info div {
    margin-bottom: 0;
  }
  .ftr__nav {
    grid-column: 1/2;
    width: 250px;
    margin: 0 auto;
  }
  .ftr__nav ul {
    column-gap: 20px;
  }
  .ftr__nav--cont {
    width: 50%;
    padding: 8px 0 8px 15px;
  }
  .ftr__nav--cont li {
    margin-bottom: 18px;
  }
  .ftr__copyright {
    grid-column: 1/2;
  }
}
/**********************************************************
* トップページ
**********************************************************/
/******　ファーストビュー　******/
.fv--wrap {
  padding: 0 20px;
}
.fv__philosophy {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding: 0 40px;
  margin-bottom: 50px;
}
.fv__philosophy img {
  width: min(100%, 360px);
}
.fv__visual--wrap {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 600px;
  position: relative;
  overflow: hidden;
}
.fv__visual__title {
  grid-column: 1/2;
  grid-row: 1/2;
  font-size: 2.4rem;
  line-height: 1.75;
  z-index: 3;
  text-align: left;
  word-break: keep-all;
  padding: 50px;
}
.fv__visual__title span {
  background-color: #fff;
}
.fv__visual__movie {
  grid-column: 1/2;
  grid-row: 1/2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
@media (max-width:680px) {
  .fv__philosophy {
    width: 100%;
    padding: 30px;
    margin-bottom: 20px;
  }
  .fv__visual__title {
    padding: 30px;
  }
  .fv--wrap {
    padding: 0;
  }
  .fv__visual--wrap {
    grid-template-rows: 400px;
  }
}
/******　MESSAGE　******/
.top__our_business {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 60px;
}
.top__our_business--text {
  width: 100%;
  letter-spacing: 0.015em;
  p{margin-bottom: 20px;}
  p:last-child{margin-bottom: 0;}
}
/*　メンバー紹介　*/
.exsul_members--wrap {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-sans);
}
.exsul_members {
  flex-shrink: 0;
  width: 260px;
}
.exsul_members__picture {
  width: 100%;
  margin: 0 0 30px;
}
.exsul_members__picture img {
  width: auto;
}
.exsul_members__prof{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.exsul_members__name {
  display: inline-block;
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 30px;
}
.exsul_members__name span {
  display: inline-block;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  margin-bottom: 10px;
}
.exsul_members__status {
  font-size: 1.2rem;
  line-height: 2;
}
.exsul_members__status span {
  display: inline-block;
  width: 100%;
  line-height: 1.4;
  padding-top: 5px;
  margin-top: 5px;
  border-top: 1px solid #ddd;
}
@media (max-width:680px) {
  .top__our_business {
    flex-direction: column-reverse;
    justify-content: start;
    align-items: center;
    gap: 30px;
  }
  /*　メンバー紹介　*/
  .exsul_members--wrap {
    display: flex;
    flex-direction: column;
    row-gap: 50px;
  }
  .exsul_members {
    display: flex;
    flex-direction: row;
    width: 100%;
  }
  .exsul_members__picture {
    width: 40%;
    margin: 0 20px 0 0;
  }
  .exsul_members__picture img {
    width: 100%;
    object-fit: cover;
    object-position: 50% top;
  }
  .exsul_members__prof{
    width: 60%;
  }
}

@media (max-width:480px) {
  /*　メンバー紹介　*/
  .exsul_members {
    flex-direction: column;
  }
  .exsul_members__picture {
    width: 100%;
    margin: 0 0 30px;
  }
  .exsul_members__picture img {
    width: 100%;
    aspect-ratio: 1;
    object-position: left top;
  }
  .exsul_members__prof{
    width: 100%;
  }
}
/*　アコーディオン　*/
.accordion {
  font-size: 1.2rem;
  margin-top: 20px;
  border: 1px solid #ddd;
  cursor: pointer;
}
.exsul_members__title {
  display: block;
  position: relative;
  width: 100%;
  font-size: 1.2rem;
  line-height: 1;
  transition: all 0.5s ease;
  padding: 15px;
}
.exsul_members__title::before,
.exsul_members__title::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 1px;
  background-color: #000;
  top: 50%;
  right: 15px;
  transition: all 0.5s ease;
}
.exsul_members__title::before {
  transform: rotate(0deg);
}
.exsul_members__title::after {
  transform: rotate(90deg);
}
.exsul_members__title.close::before {
  transform: rotate(45deg);
}
.exsul_members__title.close::after {
  transform: rotate(135deg);
}
.exsul_members__list {
  display: none;
  padding: 0 15px 15px;
}
.exsul_members__list li {
  line-height: 2;
}
.exsul_members__list li::before {
  content: '●';
  display: inline-block;
  color: var(--yellow);
  transform: scale(0.6, 0.6);
  margin-right: 3px;
}
/******　トップページ・コンテンツ紹介（社員研修サポート）　******/
.top_contents{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
}
.top_contents_text{
  width: 50%;
  h3{
    font-size: 3.6rem;
    line-height: 1.5;
    margin-bottom: 36px;
  }
  p{
    text-align: justify;
  }
}
.top_contents_image{
  width: 50%;
  img{
    object-fit: cover;
  }
}
@media (width < 680px) {
  .top_contents{
    flex-direction: column;
    gap: 24px;
  }
  .top_contents_text{
    width: 100%;
    h3{
      font-size: 3.6rem;
      line-height: 1.5;
      margin-bottom: 24px;
    }
    p{
      text-align: justify;
    }
  }
  .top_contents_image{
    width: 100%;
    img{
      object-fit: cover;
    }
  }
}

/******　トップページ・ブログ（トピックス）　******/
.top__our_topics {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, auto);
  width: 100%;
  margin: 0 auto;
}
.top__our_topics ul {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.top__our_sectionname {
  width: 100%;
  border-bottom: solid 1px var(--black);
  padding: 0 0 30px;
  margin: 0 0 50px;
}
.top__our_sectionname img {
  width: auto;
  height: 28px;
}
.top__our_topics__allData {
  font-family: var(--font-sans);
}
.top__our_topics__image {
  margin-bottom: 14px;
  overflow: hidden;
}
.top__our_topics__image img {
  object-fit: cover;
  width: 100%;
  height: 240px;
  transition: transform 0.4s;
}
.top__our_topics__image:hover img {
  transform: scale(1.2, 1.2);
}
.top__our_topics__title {
  font-size: 1.8rem;
  line-height: 1.4;
  margin-bottom: 10px;
}
.top__our_topics__tag {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.top__our_topics__cat,
.top__our_topics__date {
  font-size: 1.2rem;
  line-height: 1;
  padding: 7px;
  background-color: #ffffff;
}
.btn__blogArticle {
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  font-size: 1.4rem;
  line-height: 1;
  text-align: center;
  padding: 6px 0;
  border: solid 1px var(--black);
  transition: all 0.3s;
}
.btn__blogArticle:hover {
  color: #ffffff;
  background-color: var(--black);
}
@media (width <680px) {
  .top__our_sectionname img {
    height: 22px;
  }
  .top__our_topics ul {
    gap: 4rem;
  }
  .top__our_topics__image img {
    height: clamp(170px,53vw,360px);
  }
  .btn__blogArticle {
    position: static;
    width: 100%;
    padding: 10px 0;
    margin: 50px 0 0;
  }
}

/******　トップページ・契約までの流れ　******/
.flow__contract {
  background-color: #eaeaea;
  text-align: center;
  padding: 100px 0;
  margin: 100px 0 0;
}
.flow__contract--wrap {
  display: block;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
.flow__contract--title {
  font-size: 2.4rem;
  margin-bottom: 40px;
}
.flow__contract--list {
  font-family: var(--font-sans);
}
.flow__contract--list div {
  position: relative;
  background-color: #fff;
  padding: 30px;
  margin-bottom: 40px;
}
.flow__contract--list div:last-child {
  margin-bottom: 0;
}
.flow__contract--list div::after {
  content: '▼';
  position: absolute;
  line-height: 1;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
}
.flow__contract--list div:last-child::after {
  display: none;
}
.flow__contract--list-title {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 15px;
}
.flow__contract--list-text {
  font-size: 1.4rem;
  line-height: 1.86;
}
@media (max-width:680px) {
  .flow__contract {
    padding: 70px 30px;
    margin: 80px 0 0;
  }
  .flow__contract--list div {
    padding: 30px 20px;
  }
  .flow__contract--list-title {
    font-size: 1.8rem;
  }
  .flow__contract--list-text {
    text-align: justify;
  }
}

/**********************************************************
* 下層ページ（共通部分）
**********************************************************/

/*　ファーストビュー　*/
.article--wrap {
  width: 960px;
  margin: 0 auto;
  padding: 100px 0;
}
.article__title img {
  width: auto;
  height: 35px;
  margin-bottom: 30px;
}
.article__title.subpage img {
  width: auto;
  height: 28px;
  margin-bottom: 80px;
}
.article__title--sub {
  font-family: var(--font-sans);
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.25rem;
  border-top: solid 1px #ccc;
  padding-top: 30px;
  margin-bottom: 56px;
}
.article__img {
  width: 100%;
  margin-bottom: 120px;
}
.article__btn {
  display: block;
  margin: 0 auto;
}
@media (max-width:680px) {
  .article--wrap {
    width: auto;
    padding: 60px 30px 100px;
  }
  .article__title img {
    height: 30px;
    margin-bottom: 20px;
  }
  .article__title.subpage img {
    height: 22px;
    margin-bottom: 60px;
  }
  .article__title--sub {
    font-size: 2rem;
    letter-spacing: 0.15rem;
    padding-top: 20px;
    margin-bottom: 35px;
  }
  .article__img {
    width: 100vw;
    margin: 0 0 50px -30px;
  }
}
.article__section--wrap {
  display: grid;
  grid-template-columns: 370px 590px;
  grid-template-rows: 1fr;
}
.article__section_title {
  grid-column: 1 / 2;
}
.article__section_title img {
  width: auto;
  height: 70px;
  margin-bottom: 25px;
}
.article__section_title--ja {
  font-family: var(--font-sans);
  font-size: 1.4rem;
}
.article__section_column {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / 3;
}
@media (max-width:680px) {
  .article__section--wrap {
    grid-template-columns: auto;
    grid-template-rows: repeat(2, auto);
    row-gap: 35px;
  }
  .article__section_title {
    grid-column: 1/2;
  }
  .article__section_column {
    grid-column: 1/2;
  }
}

/**********************************************************
* 下層ページ・CONTENTS
**********************************************************/
.contents--wrap {
  margin-bottom: 180px;
}
.contents--wrap:last-child {
  margin-bottom: 0;
}
.contents--wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(54px, 15vw, 150px);
  grid-template-rows: 1fr 1fr;
  grid-template-areas:
    "a b"
    "a b";
}
.contents__section--title {
  grid-area: b;
}
h2.contents__section--title img {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(20px, 5.5vw, 50px);
}
.contents__section {
  grid-area: a;
}
@media (max-width:680px) {
  .contents--wrap {
    margin-bottom: 100px;
  }
}

.contents__consul--lead {
  margin: 0 0 42px;
}
.contents__consul--lead h3 {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.2em;
  margin-bottom: 32px;
}
.contents__consul--fee {
  width: 100%;
  overflow-x: scroll;
}
.contents__consul--fee table {
  display: table;
  border-collapse: collapse;
  width: 100%;
  white-space: nowrap;
}
.contents__consul--fee th,
.contents__consul--fee td {
  line-height: 1;
  text-align: center;
  border: 1px solid #000;
  vertical-align: middle;
}
.contents__consul--fee th:first-child,
.contents__consul--fee td:first-child {
  width: 40%;
}
.contents__consul--fee th {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  background-color: #999;
  padding: 11px;
}

.contents__consul--fee td {
  font-size: 1.8rem;
  padding: 21px;
}

.contents__consul--fee td span {
  font-size: 1.2rem;
  vertical-align: top;
}

.contents__consul--fee td.verticalText span {
  display: inline-block;
  writing-mode: vertical-lr;
  white-space: pre;
  font-size: 1.8rem;
  vertical-align: middle;
}

.contents__consul--fee td.verticalText:first-child {
  width: 20%;
}

.contents__consul--fee td p {
  font-size: 1.2rem;
  vertical-align: middle;
  margin-top: 5px;
}

.contents__consul--fee td ul {
  font-size: 1.6rem;
  text-align: left;
  line-height: 1.6;
}

.contents__consul--fee td ul li::before {
  content: "●";
  font-size: 1.2rem;
  vertical-align: middle;
  margin-right: 3px;
}

.contents__consul--feeAttention {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 1.2rem;
  line-height: 1.4;
  margin-top: 10px;
}

.contents__consul--feeAttention p {
  margin-bottom: 4px;
}

.contents__consul--feeAttention p:last-child {
  margin-bottom: 0;
}

.contents__consul--sample {
  padding: 60px 0 0;
}

.contents__consul--sample h3 {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.2em;
  margin: 0 0 32px;
}

.contents__consul--slideList {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.contents__consul--slideItems {
  background-color: #fff;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  animation: fadein 0.3s;
}

.contents__consul--slideItems img {
  border: solid 1px #ccc;
  transition: all 0.5s;
}

.contents__consul--slideItems h4 {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  line-height: 1.4;
  padding: 20px;
}

.contents__consul--slideItems:hover {
  color: #9f9f9f;
  box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.2);
}

.contents__consul--slideItems:hover img {
  opacity: 0.6;
}

@keyframes fadein {
  0% {
    transform: scale(.1);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/*　コンテンツ・研修サンプル動画　*/
.scrollBlock {
  overflow: hidden;
}

/*　コンテンツ・研修スライドソートボタン　*/
.sort-btn {
  display: flex;
  flex-direction: row;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.sort-btn li {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  line-height: 1;
  border: 1px solid #333;
  border-radius: 5px;
  padding: 10px 15px;
  cursor: pointer;
  transition: all 0.3s;
}

.sort-btn .active {
  background-color: #333;
  color: #fff;
}

.sort-btn li:hover {
  background-color: #333;
  color: #fff;
}

@media (max-width:680px) {
  .contents__consul--sample {
    margin-bottom: 0;
  }
}

@media (max-width:680px) {
  .contents__consul--lead.design .top__image {
    margin: 0 0 25px;
  }

  .contents__consul--lead.design .top__image .balloon {
    width: 130px;
    height: 130px;
    font-size: 1.4rem;
    line-height: 1.65;
    z-index: 1;
  }

  .contents__consul--lead.design .top__image img {
    object-fit: cover;
    object-position: top right;
    width: 100%;
    height: clamp(230px, 65vw, 480px);
    margin-top: calc(calc(75vw + 90px) - calc(100vw - 15px));
  }

  .contents__consul--lead.design .top__image p {
    font-size: 2.2rem;
    line-height: 1.6;
  }
}

/*　コンテンツ詳細ページ　*/
.contents__detail--wrap {
  width: 100%;
  margin-bottom: 60px;
}

.contents__detail--title {
  width: 100%;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 2.4rem;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.075em;
  background-color: var(--black);
  padding: 18px 10px;
  margin-bottom: 40px;
  word-break: keep-all;
}

.contents__detail--text {
  margin-bottom: 50px;
}

.contents__detail--attention {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.075em;
  border: solid 1px var(--black);
  padding: 12px;
  margin-bottom: 50px;
}

.contents__detail--list {
  display: flex;
  flex-direction: column;
  font-family: var(--font-sans);
  font-size: 1.4rem;
  line-height: 1.75;
  margin-bottom: 70px;
}

.contents__detail--items {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-top: solid 1px #ccc;
  padding: 24px 10px;
}

.contents__detail--items:last-child {
  border-bottom: solid 1px #ccc;
}

.contents__detail--items dt {
  width: 80px;
  word-break: keep-all;
}

.contents__detail--items dd {
  width: calc(100% - 100px);
}

.contents__detail--items ul li::before {
  content: "・ ";
}

.contents__detail--img img {
  width: 100%;
}

.contents__detail--img figure {
  border: solid 1px #ccc;
  margin-bottom: 50px;
}

.contents__detail--img figure:last-child {
  margin-bottom: 0;
}

@media (max-width:680px) {
  .contents__detail--wrap {
    margin-bottom: 50px;
  }

  .contents__detail--title {
    font-size: 2.2rem;
    line-height: 1.4;
    text-align: center;
    padding: 13px 8px;
    margin-bottom: 25px;
  }

  .contents__detail--text {
    margin-bottom: 35px;
  }

  .contents__detail--attention {
    margin-bottom: 35px;
  }

  .contents__detail--list {
    margin-bottom: 35px;
  }

  .contents__detail--items {
    padding: 20px 8px;
  }

  .contents__detail--items dt {
    width: 70px;
  }

  .contents__detail--items dd {
    width: calc(100% - 85px);
  }

  .contents__detail--img figure {
    margin-bottom: 25px;
  }
}


/**********************************************************
* 下層ページ・SERVICE
**********************************************************/

.service_page__contents {
  position: relative;
  padding-bottom: 120px;
}

.service_page__contents--title {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 40px;
}

.service_page__contents--text {
  margin-bottom: 50px;
}

.service_page__contents__portfolio {
  position: absolute;
  inset: 0 0 auto auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28rem;
  height: 4rem;
  font-family: var(--font-sans);
  font-size: 1.4rem;
  line-height: 1;
  border: solid 1px var(--black);
  transition: all 0.3s;
}

.service_page__contents--list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  font-family: var(--font-sans);
  div {
    flex-basis: 465px;
    background-color: #fff;
    padding: 30px;
  }
  
  figure {
    display: block;
    width: 300px;
    margin: 0 auto 30px;
  }
  
  dt {
    font-size: 2rem;
    line-height: 1;
    text-align: center;
    margin-bottom: 25px;
  }
  
  dd {
    font-size: 1.4rem;
    line-height: 1.86;
  }
}

.exsul_achievements{
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.exsul_achievements_column{
  line-height: 1.2;
  .title{
    display: inline-block;
    width: 100%;
    font-family: var(--font-sans);
    font-size: 2rem;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #fff;
    background-color: #4b4b4b;
    padding: 10px;
    margin-bottom: 30px;
  }

  li{
    margin-bottom: 24px;
    .sub_title{
      font-size: 1.8rem;
      font-family: var(--font-sans);
      border-bottom: solid 1px var(--black);
      padding-bottom: 8px;
      margin-bottom: 16px;
      span{
        font-size: 85%;
      }
    }
    .attention{
      font-size: 1.2rem;
      font-family: var(--font-sans);
      margin-bottom: 16px;
    }
    .achievements_item{
      p{
        margin-bottom: 8px;
        &::before{
          content: "・";
          margin-right: 5px;
        }
        &:last-child{
          margin-bottom: 0;
        }
      }
    }
  }
  
  .pc_flex_row{
    display: flex;
    flex-direction: row;
    gap: 30px;
  }
}

@media (hover) {
  .service_page__contents__portfolio:hover {
    background-color: var(--black);
    color: #ffffff;
  }
}

@media (max-width:680px) {
  .service_page__contents {
    padding-bottom: 70px;
  }
  .service_page__contents--title {
    font-size: 2.8rem;
    margin-bottom: 25px;
  }
  .service_page__contents--text {
    margin-bottom: 50px;
  }
  .service_page__contents__portfolio {
    position: relative;
    inset: auto;
    width: 100%;
    margin-bottom: 25px;
  }
  .service_page__contents__portfolio:active {
    background-color: var(--black);
    color: #ffffff;
  }
  .service_page__contents--list {
    gap: 20px;
    div {
      flex-basis: auto;
      padding: 20px;
    }
    figure {
      width: 200px;
      margin: 0 auto 30px;
    }
    dt {
      font-size: 1.8rem;
      line-height: 1.35;
      margin-bottom: 15px;
    }
  }
  .exsul_achievements{
    gap: 30px;
  }
  .exsul_achievements_column{
    .title{
      font-size: 1.8rem;
      margin-bottom: 20px;
      padding: 7px;
    }
    li{
      margin-bottom: 18px;
      .sub_title{
        font-size: 1.6rem;
        padding-bottom: 6px;
        margin-bottom: 12px;
      }
      .attention{
        margin-bottom: 12px;
      }
    }
    .pc_flex_row{
      flex-direction: column;
      gap: 0;
      .displayContents{
        display: contents;
      }
    }
  }
}


/*　会社概要　*/
.corporate_info--wrap {
  display: flex;
  flex-direction: column;
  font-family: var(--font-sans);
  font-size: 1.4rem;
  line-height: 2;
}

.corporate_info {
  display: flex;
  align-items: center;
  flex-direction: row;
  border-top: solid 1px #ccc;
  padding: 25px 20px;
}

.corporate_info dt {
  display: inline-block;
  width: 140px;
}

.corporate_info dd dl dd {
  padding-left: 1em;
}

.corporate_info:last-child {
  border-bottom: solid 1px #ccc;
}

@media (max-width:680px) {

  /*　会社概要　*/
  .corporate_info {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 25px 10px;
  }

  .corporate_info dt {
    width: 100%;
    border-left: solid 5px #ccc;
    line-height: 1.2;
    margin-bottom: 10px;
    padding-left: 10px;
  }

  .corporate_info dd dl dt {
    border-left: none;
    line-height: inherit;
    margin-bottom: 0;
    padding-left: 0;
  }
}

@media (max-width:480px) {
  /*　会社概要　*/
  .corporate_info {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 25px 10px;
  }

  .corporate_info dt {
    width: 100%;
    border-left: solid 5px #ccc;
    line-height: 1.2;
    margin-bottom: 10px;
    padding-left: 10px;
  }

  .corporate_info dd dl dt {
    border-left: none;
    line-height: inherit;
    margin-bottom: 0;
    padding-left: 0;
  }
}

@media (min-width:481px) {
  /*　デバイス幅480pxのみの改行　*/
  .sp_max480px_only {
    display: none;
  }
}


/**********************************************************
* 下層ページ・プライバシーポリシー
**********************************************************/
.minus-margin {
  margin-top: -10px;
}

.privacy_policy--wrap {
  font-family: var(--font-sans);
}

.privacy_policy--wrap p {
  margin-bottom: 36px;
}

.privacy_policy--wrap p:last-child {
  margin-bottom: 0;
}

.privacy_policy--wrap p span {
  color: #64b4aa;
}

.privacy_policy--wrap p a {
  color: #64b4aa;
  text-decoration-line: underline;
}

.privacy_policy--wrap p a::after {
  content: url("../img/icon_out_link.svg");
  display: inline-block;
  width: 1.2rem;
  margin: 0 3px;
}

.privacy_policy--last {
  text-align: end;
}

.privacy_policy__enactment_data {
  display: inline-block;
  width: 270px;
  font-family: var(--font-sans);
  line-height: 1;
  margin-top: 50px;
  padding: 50px 0 0;
  border-top: solid 1px var(--black);
}

.privacy_policy__enactment_data p {
  margin-bottom: 12px;
}

.privacy_policy__enactment_data p:last-child {
  margin-bottom: 0;
}

@media print,
screen and (max-width:680px) {
  .minus-margin {
    margin-top: 0;
  }

  .privacy_policy__enactment_data {
    width: 100%;
    margin-top: 40px;
    padding: 20px 0 0;
  }

  .privacy_policy__enactment_data p:last-child {
    margin-bottom: 30px;
  }
}