@charset "UTF-8";
/*—————————– INDEX ———————————

・変数・関数
・ベースCSS

・リセットCSS
・ベースCSS

・モジュール・パーツ m-
・補助的に使用 u-

・ヘッダー header
・フッター footer
・グローバルナビゲーション gNavBtn gNav
・共通で使うレイアウト l-

・トップページ home
・セミナー情報 seminar
・セミナー情報詳細 seminardetail
・講師プロフィール profile
・会社情報 company
・講師募集のお知らせ recruit
・お問い合わせ contact
・プライバシーポリシー privacy

—————————–—————————–—————————–*/




/* ========================================
変数・関数
======================================== */
:root {
  --color-black: #464646;
  --color-glay: #b8b8b8;
  --color-pink: #EBA8C0;
  --color-pink-rgb: 235, 168, 192;
  --font-base: "Noto Sans JP", sans-serif;
  --sp-mg: 20px;
}



/* ========================================
リセットCSS
======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p,
div {
  overflow-wrap: break-word;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

iframe {
  max-width: 100%;
  vertical-align: middle;
}

span {
  font: inherit;
  letter-spacing: inherit;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address {
  font: inherit;
}

input,
button,
textarea,
select {
  color: inherit;
  font: inherit;
  vertical-align: middle;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}



/* ========================================
ベースCSS
======================================== */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: url(../image/common/bg.gif) center top/auto repeat;
  color: var(--color-black);
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* CLEAR-FIX */
.clearfix {
  zoom: 1;
}

.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  line-height: 0;
  visibility: hidden;
}



/* ========================================
モジュール・パーツ m-
======================================== */
.m-inner {
  width: 96%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .m-inner {
    width: calc(100% - var(--sp-mg) * 2);
  }
}

.m-secTtl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 8px;
  padding-bottom: 2px;
  border-bottom: 2px solid var(--color-black);
  color: #000;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.m-secTtl_sub {
  display: block;
  margin-top: 1px;
  color: var(--color-black);
  font-size: 10px;
  font-weight: 400;
}

.m-ttl-border {
  padding-left: 8px;
  padding-bottom: 2px;
  border-left: solid 5px #eaabc2;
  color: #000;
  font-size: 16px;
  font-weight: 700;
}

.m-indent > * {
  padding-left: 1em;
  text-indent: -1em;
}

@media (hover: hover) {
  .m-hoverBox a,
  .m-hover {
    transition: opacity 0.3s;
  }

  .m-hoverBox a:hover,
  .m-hover:hover {
    opacity: 0.7;
  }
}



/* ========================================
補助的に使用 u-
======================================== */
@media screen and (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}

.u-ib {
  display: inline-block !important;
}

.u-text-center {
  text-align: center !important;
}
.u-text-left {
  text-align: left !important;
}
.u-text-right {
  text-align: right !important;
}

.u-font11 {
  font-size: 11px !important;
}

.u-font12 {
  font-size: 12px !important;
}

.u-font13 {
  font-size: 13px !important;
}

.u-font14 {
  font-size: 14px !important;
}

.u-font16 {
  font-size: 16px !important;
}

.u-color-red {
  color: #F06 !important;
}
.u-color-black {
  color: var(--color-black) !important;
}

.u-weight-normal {
  font-weight: 400 !important;
}
.u-weight-bold {
  font-weight: 700 !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-palt {
  font-feature-settings: "palt";
}



/* ========================================
ヘッダー header
======================================== */
.header {
  position: relative;
}
.header_box1 {
  display: flex;
  padding: 24px 0 24px 155px;
}
.header_logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 155px;
  height: 100%;
  background: var(--color-pink);
  position: absolute;
  top: 0;
  left: max((100% - 1000px) / 2, 2%);
  z-index: 2;
}
.header_spApp {
  display: flex;
  align-items: center;
  gap: 0 18px;
  line-height: 1;
  position: relative;
  z-index: 11;
}
.header_spApp ._text {
  display: block;
  margin-top: 4px;
  color: var(--color-pink);
  font-size: 10px;
  letter-spacing: -0.05em;
  line-height: 1;
  white-space: nowrap;
}
.header_spApp ._contact a {
  display: block;
  text-align: center;
}
.header_img {
  width: 100%;
  height: 145px;
  background-position: center;
  background-size: auto 100%;
  background-repeat: repeat-x;
}

@media screen and (max-width: 767px) {
  .header {
    padding-top: 60px;
  }
  .header_box1 {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 60px;
    padding: 0 var(--sp-mg);
    background: #fff url(../image/common/bg.gif) center top/auto repeat;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }
  .header_logo {
    display: block;
    width: 135px;
    height: auto;
    background: none;
    position: relative;
    left: 0;
    z-index: 11;
  }
}


/* ========================================
フッター footer
======================================== */
.footer {
  margin-top: auto;
  padding-bottom: 15px;
  border-top: 1px solid #000;
  background: #fff;
  position: relative;
}
.footer_inner {
  position: relative;
}
.footer_topto {
  display: block;
  padding: 5px 4px 7px 20px;
  background: #000 url(/assets/image/common/topto.svg) left 6px center/auto no-repeat;
  font-size: 12px;
  color: #fff;
  line-height: 1;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
@media (hover: hover) {
  .footer_topto {
    transition: opacity 0.4s;
  }
  .footer_topto:hover {
    opacity: 0.8;
  }
}
.footer_nav {
  padding-top: 15px;
  overflow: hidden;
}
.footer_nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 20px;
  font-size: 12px;
}
.footer_nav li {
  position: relative;
}
.footer_nav li + li::before {
  content: "";
  display: block;
  width: 1px;
  height: 15px;
  background: var(--color-black);
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
}
.footer_nav a {
  display: block;
}
@media (hover: hover) {
  .footer_nav a {
    transition: opacity 0.4s;
  }
  .footer_nav a:hover {
    opacity: 0.7;
  }
}
.footer_info {
  margin-top: 10px;
  font-size: 13px;
  text-align: right;
}
.footer_info ._tel {
  font-size: 20px;
  letter-spacing: 0.02em;
}
.footer_info ._min {
  font-size: 0.7em;
}
.footer_logo {
  display: block;
  width: 190px;
  margin-left: auto;
  margin-bottom: 10px;
}
.footer_copyright {
  margin-top: 20px;
  display: block;
  font-size: 10px;
  text-align: right;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .footer_topto {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    padding: 0;
    background-image: none;
    text-align: center;
    line-height: 1.4;
  }
  .footer_nav {
    padding-top: 5px;
    padding-right: 50px;
  }
  .footer_info {
    margin-top: 25px;
    text-align: left;
    font-size: 14px;
  }
  .footer_info ._tel {
    font-size: 14px;
    font-weight: 700;
  }
  .footer_logo {
    margin-right: auto;
    margin-bottom: 20px;
  }
  .footer_copyright {
    margin-top: 5px;
    text-align: left;
  }
}



/* ========================================
グローバルナビゲーション gNavBtn gNav
======================================== */
.gNavBtn {
  width: 40px;
  padding-top: 3px;
  text-align: center;
}
.gNavBtn span:not(._text) {
  display: block;
  width: 36px;
  height: 2px;
  margin-left: auto;
  margin-right: auto;
  background: var(--color-pink);
  transition: 0.3s;
}
.gNavBtn span:not(._text) + span {
  margin-top: 6px;
}
.is-menuActive .gNavBtn span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.is-menuActive .gNavBtn span:nth-child(2) {
  opacity: 0;
}
.is-menuActive .gNavBtn span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.gNav {
  flex: 1;
}
.gNav ul {
  display: flex;
  height: 100%;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.gNav ul::-webkit-scrollbar {
  display: none;
}
.gNav li {
  width: 20%;
}
.gNav li + li {
  border-left: 1px solid var(--color-black);
}
.gNav a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  height: 42px;
  font-size: min(1.6927083333vw, 14px);
  line-height: 1.4;
}
@media (hover: hover) {
  .gNav a {
    transition: color 0.3s;
  }
  .gNav a:hover {
    color: var(--color-pink);
  }
}
.gNav a span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.05em;
  line-height: 1;
}
.gNav ._current a {
  color: var(--color-pink);
}
.gNav ._contact {
  border-left: 0;
}

@media screen and (min-width: 768px) {
  .gNav ._contact a {
    color: #fff;
    background: var(--color-pink);
  }
  @media (hover: hover) {
    .gNav ._contact a {
      transition: opacity 0.3s;
    }
    .gNav ._contact a:hover {
      opacity: 0.8;
    }
  }
}

@media screen and (max-width: 767px) {
  .gNav {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 0.3s 0s, transform 0s 0.3s;
  }
  .is-menuActive .gNav {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.3s 0s, transform 0s 0s;
  }
  .gNav ul {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px 0;
  }
  .gNav li {
    width: auto;
  }
  .gNav li + li {
    border: 0;
  }
  .gNav a {
    color: var(--color-pink);
    font-size: 18px;
  }
  .gNav a span {
    font-size: 14px;
  }
}



/* ========================================
共通で使うレイアウト l-
======================================== */
.l-container {
  padding-top: 32px;
  padding-bottom: 32px;
}

.l-breadcrumbs {
  background: rgba(0, 0, 0, 0.13);
}
.l-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0 4px;
  padding: 6px 0;
  font-size: 11px;
}
.l-breadcrumbs li + li::before {
  content: ">";
  margin-right: 4px;
}
.l-breadcrumbs a {
  text-decoration: underline;
}

.l-seminarList {
  max-width: 600px;
}
.l-seminarList > li {
  display: flex;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-glay);
}
.l-seminarList > li + li {
  margin-top: 20px;
}
.l-seminarList ._container {
  flex: 1;
}
.l-seminarList ._container a {
  display: flex;
  gap: 0 10px;
  padding-right: 15px;
}
@media (hover: hover) {
  .l-seminarList ._container a {
    transition: opacity 0.4s;
  }
  .l-seminarList ._container a:hover {
    opacity: 0.7;
  }
}
.l-seminarList ._thumbnail {
  width: 90px;
}
.l-seminarList ._icon {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 5px;
}
.l-seminarList ._icon span {
  display: block;
  background: #000;
  padding: 4px;
  color: #fff;
  font-size: 10px;
  line-height: 1;
}
.l-seminarList ._ttl {
  margin-top: 2px;
  color: #000;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}
.l-seminarList ._subTtl {
  margin-top: 2px;
  color: #b46d86;
  font-size: 11px;
  line-height: 1.2;
}
.l-seminarList ._textBox {
  flex: 1;
}
.l-seminarList ._app {
  display: inline-block;
  margin-top: 15px;
  padding: 0 10px;
  border: 1px solid var(--color-black);
  border-radius: 20px;
  font-size: 12px;
  font-feature-settings: "palt";
}
.l-seminarList ._side {
  width: 186px;
  padding-left: 15px;
  border-left: 1px dashed var(--color-black);
  font-size: 14px;
  line-height: 1.4;
}
.l-seminarList ._day {
  font-size: 12px;
}
.l-seminarList ._day + .l-seminarList ._day {
  margin-top: 5px;
}
.l-seminarList ._day dt {
  color: #b46d86;
}
.l-seminarList ._day dd {
  line-height: 1.4;
}
.l-seminarList ._corona {
  display: inline-block;
  margin-top: 20px;
  padding: 5px 0 5px 8px;
  background: #f46f72;
  color: #FFF;
  font-size: 12px;
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  .l-seminarList > li {
    display: block;
  }
  .l-seminarList ._ttl {
    font-size: 16px;
  }
  .l-seminarList ._side {
    width: 100%;
    margin-top: 10px;
    padding-left: 0;
    border-left: 0;
  }
  .l-seminarList ._day {
    font-size: 16px;
  }
}



.l-listLayout1 {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 3.2%;
}
.l-listLayout1 > li {
  width: 31.2%;
  padding: clamp(15px, 2.6041666667vw, 28px);
  background: #FFF;
  border: solid 1px var(--color-glay);
}
.l-listLayout1_head {
  padding: 1px 0 5px 8px;
  border-left: solid 5px #eaabc2;
  color: #000;
  font-size: 16px;
  line-height: 1.5;
}
.l-listLayout1_subTtl {
  color: #666;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.2;
}
.l-listLayout1_description {
  margin-top: 10px;
  font-size: 14px;
}
.l-listLayout1_description a {
  text-decoration: underline;
  opacity: 0.9;
}

@media screen and (max-width: 767px) {
  .l-listLayout1 {
    gap: 20px 4%;
  }
  .l-listLayout1 > li {
    width: 48%;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 480px) {
  .l-listLayout1 > li {
    width: 100%;
  }
}




.l-form {
  margin-top: 40px;
  padding-bottom: 40px;
}
.l-form_stepNav {
  margin-bottom: 20px;
}
.l-form_row {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
  padding: 20px 0;
  border-bottom: 1px dotted var(--color-black);
  line-height: 1.5;
}
.l-form_row dl {
  display: flex;
  width: 100%;
}
.l-form_row dt {
  width: 140px;
  min-width: 140px;
  padding-top: 3px;
}
.l-form_row dd {
  flex: 1;
}
.l-form_row.-col2 {
  display: flex;
  gap: 0 20px;
}
.l-form_row.-col2 dl {
  width: 50%;
}
.l-form input[type=text],
.l-form input[type=email],
.l-form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  width: 100%;
  height: 32px;
  margin: 0;
  padding: 0 5px;
  background: #fff;
  box-shadow: 0;
  border: 1px solid var(--color-black);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
}
.l-form input[type=text]::-moz-placeholder, .l-form input[type=email]::-moz-placeholder, .l-form textarea::-moz-placeholder {
  color: #C9CACA;
}
.l-form input[type=text]:-ms-input-placeholder, .l-form input[type=email]:-ms-input-placeholder, .l-form textarea:-ms-input-placeholder {
  color: #C9CACA;
}
.l-form input[type=text]::placeholder,
.l-form input[type=email]::placeholder,
.l-form textarea::placeholder {
  color: #C9CACA;
}
.l-form input[type=text]:focus,
.l-form input[type=email]:focus,
.l-form textarea:focus {
  border: 2px solid var(--color-pink);
  outline: 0;
}
.l-form input[type=text] {
  max-width: 400px;
}
.l-form textarea {
  max-width: 600px;
  height: 200px;
  padding-top: 5px;
  padding-bottom: 5px;
}
.l-form_checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
}
.l-form_checkbox input[type=radio],
.l-form_checkbox input[type=checkbox] {
  width: auto;
  margin-right: 5px;
  vertical-align: baseline;
}
.l-form_checkbox label {
  display: inline-block;
  cursor: pointer;
}
.l-form select {
  height: 32px;
  font-size: 16px;
}
.l-form_postcode input {
  width: 100px !important;
}
.l-form_notes {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.2;
}
.l-form_rec {
  display: inline;
  color: #F06;
  font-size: 14px;
  font-weight: 700;
  vertical-align: middle;
}
.l-form_appBox {
  display: flex;
  justify-content: center;
  gap: 20px 20px;
  width: 100%;
  margin-top: 30px;
}
.l-form_appBox input,
.l-form_appBox a {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  margin: 0;
  width: 200px;
  height: 32px;
  margin: 0;
  padding: 0 5px;
  background: #ddd;
  box-shadow: 0;
  border: 1px solid var(--color-black);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
  text-align: center;
  cursor: pointer;
}
.l-form_appBox input:focus,
.l-form_appBox a:focus {
  border: 2px solid var(--color-pink);
  outline: 0;
}
.l-form-confilm .l-form_row {
  padding-top: 10px;
  padding-bottom: 10px;
}
.l-form-confilm .l-form_row dt {
  font-weight: 700;
  font-size: 14px;
}
.seminardetail .l-form-confilm .l-form_row dt {
  width: 280px;
}
.l-form-confilm .msg {
  color: #F06;
}
@media screen and (max-width: 767px) {
  .l-form_row dl {
    display: block;
  }
  .l-form select {
    width: 100%;
  }
}


/* ========================================
トップページ home
======================================== */
.home {
  position: relative;
}
.homeHeader {
  position: relative;
}
.homeHeader_box1 {
  display: flex;
  padding: 24px 0 24px 155px;
  position: relative;
}
.homeHeader_box1::before {
  content: "";
  display: block;
  width: 155px;
  height: 100%;
  background: var(--color-pink);
  position: absolute;
  top: 0;
  left: 0;
}
.homeHeader_spApp {
  display: flex;
  align-items: center;
  gap: 0 18px;
  line-height: 1;
  position: relative;
  z-index: 11;
}
.homeHeader_spApp ._text {
  display: block;
  margin-top: 4px;
  color: var(--color-pink);
  font-size: 10px;
  letter-spacing: -0.05em;
  line-height: 1;
  white-space: nowrap;
}
.homeHeader_spApp ._contact a {
  display: block;
  text-align: center;
}
.homeHeader_box2 {
  height: 312px;
  position: relative;
}
.homeHeader_pcLogo {
  height: 100%;
  position: relative;
  z-index: 2;
}
.homeHeader_pcLogo > div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 155px;
  height: 100%;
  background: url(../image/common/bg_logo.png) center/auto repeat;
  background: rgba(var(--color-pink-rgb), 0.8);
}
.homeHeader_spLogo {
  width: 135px;
  position: relative;
  z-index: 11;
}
.homeHeader_img {
  display: flex;
  align-items: center;
  width: 100%;
  line-height: 1;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.homeHeader_img img {
  max-width: none;
  width: 2149px;
  height: 312px;
  -webkit-animation: hscroll 150s linear infinite;
          animation: hscroll 150s linear infinite;
}
@-webkit-keyframes hscroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-2149px);
  }
}
@keyframes hscroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-2149px);
  }
}
.homeHeader_copy {
  padding-left: 160px;
  font-size: 12px;
  text-align: right;
  position: absolute;
  right: 50%;
  bottom: 4px;
  transform: translateX(50%);
}
.homeCorona {
  padding: 10px;
  background: #fff;
  border: 1px solid var(--color-black);
}
.homeMain {
  display: flex;
  gap: 0 30px;
  padding-top: 40px;
  padding-bottom: 60px;
  padding-left: 180px;
  position: relative;
}
.homeMain::before {
  content: "";
  display: block;
  width: 155px;
  height: 100%;
  background: var(--color-pink);
  position: absolute;
  top: 0;
  left: 0;
}
@media (hover: hover) {
  .homeMain_aside a {
    transition: opacity 0.4s;
  }
  .homeMain_aside a:hover {
    opacity: 0.7;
  }
}
.homeMain_aside_sns {
  display: flex;
  flex-direction: column;
  gap: 10px 30px;
  margin-top: 20px;
}
.homeMain_primary {
  flex: 1;
}
.homeMain_aside {
  width: 190px;
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
.homeIntro {
  border: 1px #e98789 solid;
  background: #fae9ea;
  padding: 20px;
  margin-top: 20px;
}
.homeIntro_ttl {
  margin-bottom: 15px;
  padding: 4px 8px;
  background: #f46f72;
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
.homeIntro_textBox p + P {
  margin-top: 1em;
}
.homeIntro_textBox a {
  margin: 0 2px;
  padding: 0 2px;
  border: 1px solid #000;
}
@media (hover: hover) {
  .homeIntro_textBox a {
    transition: .3s;
  }
  .homeIntro_textBox a:hover {
    background: #FCC;
  }
}


@media screen and (max-width: 1000px) {
  .homeMain {
    padding-left: 0;
  }
  .homeMain::before {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .homeHeader {
    padding-top: 60px;
  }
  .homeHeader_box1 {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 60px;
    padding: 0 var(--sp-mg);
    background: #fff url(../image/common/bg.gif) center top/auto repeat;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }
  .homeHeader_box1::before {
    display: none;
  }
  .homeHeader_copy {
    width: 100%;
    padding: 5px var(--sp-mg);
    text-align: left;
    right: 0;
    bottom: 0;
    transform: none;
  }
  .homeHeader_copy::before {
    content: "";
    display: block;
    width: 100%;
    height: calc(100% - 30px);
    background: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .homeMain {
    display: block;
    padding-bottom: 40px;
  }
  .homeMain_aside {
    margin-top: 40px;
    width: 100%;
    align-items: center;
  }
  .homeMain_aside_sns {
    flex-direction: row;
    justify-content: center;
  }
  .homeMain_aside_sns ._yotube {
    width: 40px;
  }
  .homeMain_aside_sns ._twitter {
    width: 36px;
  }
  .homeMain_aside_sns ._instagram {
    width: 32px;
  }
}

/* ========================================
セミナー情報 seminar
======================================== */
.seminar .m-secTtl {
  margin-bottom: 16px;
}
.seminarContainer1 {
  display: flex;
  gap: 32px 30px;
}
.seminarConcept {
  flex: 1;
}
.seminarConcept_description {
  font-weight: 700;
}
.seminarConcept_description p + p {
  margin-top: 1em;
}
.seminarPast {
  margin-top: 32px;
}
.seminarPast table {
  display: block;
  width: 100%;
  margin-top: 15px;
  background: #FFF;
  font-size: 13px;
  line-height: 1.4;
  table-layout: fixed;
}
.seminarPast th,
.seminarPast td {
  padding: 12px;
  border: solid 1px var(--color-glay);
}
.seminarPast th {
  color: #333;
  background-color: #f1f1f1;
}
.seminarPast th:nth-child(1) {
  width: 11%;
}
.seminarPast th:nth-child(2) {
  width: 38%;
}
.seminarPast th:nth-child(3) {
  width: 15%;
}
.seminarPast th:nth-child(4) {
  width: 36%;
}
.seminarPast td:first-child {
  text-align: center;
}
.seminarPast td:last-child {
  color: #888;
  font-size: 12px;
}
.seminarPast span {
  font-size: 10px;
  margin-top: 10px;
  display: block;
  color: #666;
}
.seminarPast h3 {
  text-align: left;
}


@media screen and (min-width: 1001px) {
  .seminarConcept_description {
    font-size: 13px;
  }
}
@media screen and (max-width: 1000px) {
  .seminarContainer1 {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .seminarConcept {
    margin-top: 32px;
  }
  .seminarPast table {
    border-left: solid 1px var(--color-glay);
    border-right: solid 1px var(--color-glay);
    border-bottom: solid 1px var(--color-glay);
  }
  .seminarPast tr {
    display: block;
    border-top: solid 1px var(--color-glay);
  }
  .seminarPast th,
  .seminarPast td {
    display: block;
    width: 100%;
    border: 0;
    padding: 5px 10px 0;
    text-align: left;
  }
  .seminarPast th:first-child,
  .seminarPast td:first-child {
    padding-top: 10px;
  }
  .seminarPast th:last-child,
  .seminarPast td:last-child {
    padding-bottom: 10px;
  }
  .seminarPast th {
    width: 100% !important;
  }
  .seminarPast td:first-child {
    text-align: left;
  }
}


/* ========================================
セミナー情報詳細 seminardetail
======================================== */

.seminardetailHead {
  display: flex;
  color: #000;
  border-bottom: solid 2px #000;
}
.seminardetailHead_ttlBox {
  width: 58%;
  padding-right: 16px;
  padding-bottom: 10px;
}
.seminardetailHead_ttlBox ._ttl {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}
.seminardetailHead_ttlBox ._subTtl {
  margin-top: 5px;
  color: #b46d86;
  font-size: 12px;
}
.seminardetailHead_documentBox {
  flex: 1;
  padding-left: 16px;
  padding-bottom: 10px;
  border-left: 1px dotted var(--color-black);
  font-size: 15px;
  font-weight: 700;
}
.seminardetailHead_documentBox > div {
  padding-right: 105px;
  position: relative;
}
.seminardetailHead_documentBox > div + div {
  margin-top: 10px;
}
.seminardetailHead_documentBox ._notes {
  color: #666;
  font-size: 11px;
}
.seminardetailHead_documentBox ._textbg {
  display: inline-block;
  background: #FF3;
  padding: 0 4px 1px;
}
.seminardetailHead_documentBox ._pdfBtn {
  position: absolute;
  top: 0;
  right: 0;
}
.seminardetailSumally {
  display: flex;
  flex-direction: row-reverse;
  gap: 0 20px;
  margin-top: 16px;
}
.seminardetailSumally h2 {
  margin-bottom: 10px;
}
.seminardetailSumally_imgBox {
  width: 210px;
}
.seminardetailSumally_contBox {
  flex: 1;
}
.seminardetailSumally_contBox > section + section {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dotted var(--color-black);
}

.seminardetailProgram_list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  font-size: 13px;
}
.seminardetailProgram_list > li {
  width: calc((100% - 20px) / 2);
}
.seminardetailProgram_list ._part {
  display: inline-block;
  margin-bottom: 4px;
  padding: 2px 5px;
  background-color: #FFF;
  border: solid 1px #666;
  color: #333;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.05em;
}
.seminardetailProgram_list ._emp {
  color: #C30;
}
.seminardetailProgram_panf {
  margin-top: 10px;
  text-align: right;
  font-size: 12px;
}
.seminardetailPlace {
  margin-top: 32px;
}
.seminardetailPlace_overview {
  width: 100%;
  font-size: 12px;
}
.seminardetailPlace_overview tr {
  border-bottom: 1px solid #000;
}
.seminardetailPlace_overview th,
.seminardetailPlace_overview td {
  padding: 12px 0;
}
.seminardetailPlace_overview th:nth-child(1),
.seminardetailPlace_overview td:nth-child(1) {
  width: 125px;
  text-align: left;
}
.seminardetailPlace_overview th:nth-child(2),
.seminardetailPlace_overview td:nth-child(2) {
  padding-right: 20px;
}

.seminardetailPlace_overview th:nth-child(3),
.seminardetailPlace_overview td:nth-child(3) {
  padding-right: 20px;
}
.seminardetailPlace_overview th:nth-child(4),
.seminardetailPlace_overview td:nth-child(4) {
  width: 100px;
}
.seminardetailPlace_overview th:nth-child(5),
.seminardetailPlace_overview td:nth-child(5) {
  width: 132px;
  color: #f06;
  font-size: 12px;
  text-align: center;
}
.seminardetailPlace_overview ._part {
  display: inline-block;
  margin-bottom: 4px;
  padding: 2px 5px;
  background-color: #FFF;
  border: solid 1px #666;
  color: #333;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.05em;
}
.seminardetailLecture {
  margin-top: 32px;
}
.seminardetailLecture_list {
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 16px 16px;
  margin-top: 10px;
}
.seminardetailLecture_list > li {
  width: calc((100% - 16px) / 2);
  padding: 0 16px 16px;
  background: rgba(0, 0, 0, 0.05);
  border: solid 1px var(--color-glay);
}
.seminardetailLecture_list ._charge {
  width: calc(100% + 32px);
  margin-left: -16px;
  padding: 4px 16px;
  background: #fff;
  color: #b46d86;
}
.seminardetailLecture_list ._img {
  margin-top: 16px;
  margin-left: 5px;
  float: right;
}
.seminardetailLecture_list h3 {
  margin: 10px 0;
  color: #000;
  font-size: 16px;
}
.seminardetailLecture_list h3 span {
  display: block;
  color: #7c7c7c;
  font-size: 12px;
  line-height: 1;
}
.seminardetailLecture_list p a {
  text-decoration: underline;
}

.seminardetaiCharge {
  margin-top: 32px;
}
.seminardetaiCharge_app {
  margin-top: 16px;
  text-align: center;
}

.seminardetaiVoice {
  margin-top: 32px;
}
.seminardetaiVoice_list {
  display: flex;
  align-items: flex-start;
  gap: 16px 16px;
  margin-top: 10px;
}
.seminardetaiVoice_list ._place {
  width: 352px;
  font-size: 14px;
}
.seminardetaiVoice_list ._gallery {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 16px;
}
.seminardetaiVoice_list ._gallery > li {
  width: 65px;
  border: 1px solid #999;
}
@media (hover: hover) {
  .seminardetaiVoice_list ._gallery > li:hover {
    border-color: var(--color-pink);
  }
}
.seminardetaiApp {
  margin-top: 32px;
}
.seminardetaiApp h2 {
  margin-bottom: 16px;
}
.seminardetaiApp_sec {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px dotted var(--color-black);
}
.seminardetaiApp_sec h3 {
  margin-bottom: 10px;
}
.seminardetaiApp_formContainer1 {
  display: grid;
  gap: 0 20px;
  grid-template-columns: 1fr 35%;
}
.seminardetaiApp_formContainer1 > *:nth-child(3) {
  grid-row: 2/4;
}
.seminardetaiApp_formContainer1 > *:nth-child(5) {
  grid-column: 2/3;
  grid-row: 3/4;
}
.seminardetaiApp_formContainer1 > *:nth-child(7) {
  grid-column: 1/2;
}
.seminardetaiApp_formContainer1 > *:nth-child(8) {
  grid-column: 2/3;
}
.seminardetaiApp_formContainer1 > *:nth-child(2) dt, .seminardetaiApp_formContainer1 > *:nth-child(4) dt, .seminardetaiApp_formContainer1 > *:nth-child(5) dt, .seminardetaiApp_formContainer1 > *:nth-child(8) dt {
  width: 110px;
  min-width: 110px;
}
.seminardetaiApp_payment {
  padding: 10px;
  border: 1px solid #F06;
}
.seminardetaiApp_payment ._day input {
  width: 40px;
  margin-right: 5px;
}
.seminardetaiApp_notes {
  margin-top: 30px;
  color: #f06;
  font-size: 14px;
  font-weight: 700;
}
.seminardetaiApp_notes a {
  text-decoration: underline;
}
.seminardetaiApp_participate {
  width: 100%;
  margin-top: 20px;
  border: 1px solid var(--color-glay);
  background: #fff;
}
.seminardetaiApp_participate th,
.seminardetaiApp_participate td {
  padding: 0 8px;
}
.seminardetaiApp_participate th {
  padding-top: 5px;
  padding-bottom: 10px;
  background-color: #f1f1f1;
  text-align: left;
  vertical-align: top;
}
.seminardetaiApp_participate th .l-form_rec {
  display: block;
  font-size: 11px;
  line-height: 1;
}
.seminardetaiApp_participate th .l-form_rec + .l-form_rec {
  margin-top: 5px;
}
.seminardetaiApp_participate td {
  padding-top: 10px;
  padding-bottom: 10px;
}
.seminardetaiApp_confirm {
  justify-content: center;
  margin-top: 20px;
  color: #f06;
  font-size: 14px;
}
.seminardetaiApp_confirm label {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .seminardetailHead {
    display: block;
    padding-bottom: 16px;
  }
  .seminardetailHead_ttlBox {
    width: 100%;
    padding-bottom: 0;
  }
  .seminardetailHead_documentBox {
    max-width: 400px;
    padding-left: 0;
    margin-top: 16px;
    padding: 0;
    border-left: 0;
  }
  .seminardetailSumally {
    display: block;
  }
  .seminardetailSumally_imgBox {
    margin: 0 auto 16px;
  }
  .seminardetailProgram_list {
    font-size: 14px;
  }
  .seminardetailProgram_list > li {
    width: 100%;
  }
  .seminardetailProgram_list ._part {
    font-size: 12px;
  }
  .seminardetailPlace_overview {
    font-size: 15px;
  }
  .seminardetailPlace_overview th,
  .seminardetailPlace_overview td {
    display: block;
    padding-bottom: 0;
  }
  .seminardetailPlace_overview th:nth-child(2),
  .seminardetailPlace_overview td:nth-child(2) {
      padding-right: 0;
    }
  .seminardetailPlace_overview th:nth-child(3),
  .seminardetailPlace_overview td:nth-child(3) {
    padding-right: 0;
  }
  .seminardetailPlace_overview th:nth-child(4),
  .seminardetailPlace_overview td:nth-child(4) {
    width: 100%;
    padding-top: 0px;
    text-align: right;
  }
  .seminardetailPlace_overview th:nth-child(5),
  .seminardetailPlace_overview td:nth-child(5) {
    width: 100%;
    padding: 25px 0 20px;
    text-align: center;
  }
  .seminardetailPlace_overview ._part {
    font-size: 12px;
  }
  .seminardetailLecture_list {
    font-size: 14px;
  }
  .seminardetailLecture_list > li {
    width: 100%;
  }
  .seminardetailLecture_list h3 {
    margin-bottom: 16px;
  }
  .seminardetaiVoice_list {
    display: block;
  }
  .seminardetaiVoice_list ._place {
    max-width: 100%;
    margin: 0 auto 20px;
  }
  .seminardetaiVoice_list ._gallery {
    gap: 5px 5px;
  }
  .seminardetaiVoice_list ._gallery > li {
    width: calc((100% - 20px) / 5);
  }
  .seminardetaiApp_formContainer1 {
    display: block;
  }
  .seminardetaiApp_payment {
    margin-top: -1px;
  }
  .seminardetaiApp_participate tr {
    display: block;
    margin-top: 5px;
    padding-bottom: 20px;
  }
  .seminardetaiApp_participate tr:nth-child(1) {
    display: none;
  }
  .seminardetaiApp_participate tr:nth-child(odd) {
    background-color: #f1f1f1;
  }
  .seminardetaiApp_participate th:nth-child(2),
  .seminardetaiApp_participate td:nth-child(2) {
    width: 160px;
    min-width: 160px;
  }
  .seminardetaiApp_participate th {
    display: none;
  }
  .seminardetaiApp_participate td {
    display: block;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 0;
  }
  .seminardetaiApp_participate td::before {
    content: attr(data-label);
    display: inline;
  }
  .seminardetaiApp_participate .l-form_checkbox {
    gap: 0 30px;
  }
}



/* ========================================
講師プロフィール profile
======================================== */
.profileList {
  margin-top: 20px;
}
.profileList ._img {
  width: 100%;
  margin-bottom: 16px;
}
.profileList ._link {
  display: inline-block;
  font-size: 11px;
  transform: translateY(-1px);
}



/* ========================================
会社情報 company
======================================== */
.companyOverview dl {
  display: flex;
  padding: 21px 0;
  border-bottom: 1px solid var(--color-glay);
}
.companyOverview dt {
  width: 130px;
  color: #000;
  font-weight: 700;
}
.companyOverview dd {
  flex: 1;
}
.companyOverview_customer {
  margin-top: 20px;
  -moz-column-count: 3;
       column-count: 3;
  color: #888;
  font-size: 13px;
  line-height: 1.2;
}
.companyOverview_customer > Li {
  margin-bottom: 4px;
}

@media screen and (max-width: 767px) {
  .companyOverview dl {
    display: block;
  }
  .companyOverview dt {
    width: 100%;
    margin-bottom: 5px;
  }
  .companyOverview_customer {
    -moz-column-count: 1;
         column-count: 1;
  }
}



/* ========================================
講師募集のお知らせ recruit
======================================== */
.recruitIntro {
  text-align: center;
  line-height: 2.5;
}
.recruitIntro_ttl {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
}
.recruitSuitable {
  margin-top: 32px;
  font-size: 15px;
}
.recruitSuitable h2 {
  margin-bottom: 32px;
}
.recruitSuitable_list li {
  text-indent: -1em;
  padding-left: 1em;
}
.recruitGenre {
  margin-top: 60px;
}
.recruitGenre h2 {
  margin-bottom: 32px;
}

@media screen and (max-width: 767px) {
  .recruitIntro {
    font-size: calc(16 / 375 * 100vw);
    line-height: 2;
  }
  .recruitSuitable {
    margin-top: 40px;
  }
  .recruitSuitable h2 {
    margin-bottom: 16px;
  }
  .recruitGenre h2 {
    margin-bottom: 16px;
  }
}



/* ========================================
お問い合わせ contact
======================================== */
.contactIntro {
  padding: 20px 0;
  border-bottom: 1px dotted var(--color-black);
}



/* ========================================
プライバシーポリシー privacy
======================================== */
.privacyOverview > section {
  padding: 16px 0;
  font-size: 14px;
}
.privacyOverview > section:not(:first-of-type) {
  border-top: 1px dotted var(--color-black);
}
.privacyOverview > section h2 {
  margin-bottom: 10px;
}