@charset "UTF-8";

:root{
  /*  kendepot */
  --base-color: #EB6600;
  --light-color: #FFF2E6;
  --light2-color: #FFE5CD;
  --middle-color: #F29741;
}

/* common */
html {
  position: relative;
  min-height: 100%;
  font-size: 62.5%;
}
body{
  font-family: Hiragino Sans, "ヒラギノ角ゴ Pro W6", "メイリオ", sans-serif;
  letter-spacing: 0em;
  transform-origin: left top;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt" 1;
  overflow-y: scroll;
  background: #fff;
  font-size: 1.6em;
  line-height: 1.5;
}
.din_condensed {
  font-family: "din-condensed", 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', 'メイリオ', sans-serif;
  font-weight: 400;
}
strong{
  font-weight: bold;
}

/* animate */
.fade {
  opacity: 0;
  transition: all 0.6s ease;
}
.fade.show {
  opacity: 1;
}
img{
  max-width: 100%;
}
@media screen and (max-width: 1000px) {
  .is-pc {
    display: none ;
  }
}
.is-sp {
  display: none ;
}
@media screen and (max-width: 1000px) {
  .is-sp {
    display: block ;
  }
}
@media only screen and (max-width: 767px) {
  .is-sp-only{
    display: block ;
  }
}
@media only screen and (min-width: 767.1px) {
  .is-sp-only{
    display: none ;
  }
}
/* ------------------------------------------------------- */
@media only screen and (max-width: 767px) {}
@media only screen and (min-width: 767.1px) {}
/* ------------------------------------------------------- */

/* ---------------------------------------- */
/* header */
.header{
  background: #000;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 64px;
}
.header-logo{
  display: inline-flex;
  align-items: center;
  padding: 14px 0 14px 20px;
  height: 64px;
}
.header-inner{
  flex-grow: 1;
}
.js-header-scroll{
  cursor: pointer;
}

/* ---------------------------------------- */
/* footer */
.footer{
  position: relative;
}
.footer-sub{
  display: flex;
  gap: 20px 60px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 40px;
  background: #222;
}
@media screen and (max-width: 639px) {
  .footer-sub{
    flex-direction: column;
    padding: 24px 16px;
  }
}
.footer-sub-link-group {
  display: flex;
  gap: 12px 32px;
  flex-wrap: wrap;
}
@media screen and (max-width: 639px) {
  .footer-sub-link-group {
    gap: 12px 20px;
  }
}
.footer-sub-link {
  font-size: 1.2rem;
  font-weight: 400;
  text-decoration: underline;
  color: #bbb;
}
.footer-sub-link:hover {
  opacity: .8;
}
.footer-sub-copyright {
  font-size: 1.2rem;
  color: #aaa;
}
.footer-pagetop {
  position: absolute;
  right: 0;
  bottom: 100%;
  display: flex;
  width: 70px;
  height: 70px;
  background: #000;
}
@media screen and (max-width: 639px) {
  .footer-pagetop {
    width: 60px;
    height: 60px;
  }
}
.footer-pagetop:hover {
  opacity: .8;
}
.footer-pagetop-angle {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
}

/* ---------------------------------------- */
/* main */
.seminar-main{
  margin-top: 64px;
  line-height: 1.75;
  letter-spacing: 0.08em;
  font-size: 16px;
  /*overflow-x: hidden;*/
}
@media only screen and (max-width: 767px) {
  .seminar-main{
    font-size: 14px;
    letter-spacing: 0.05em;
  }
}

/* ---------------------------------------- */
/* section */
.seminar-section{
  clear: both;
  padding: 60px 0 80px;
}
@media only screen and (max-width: 767px) {
  .seminar-section{
    padding: 40px 15px;
  }
}
.section_inner{
  max-width: 1100px;
  margin: 0 auto;
}
.bg-white{
  background: #fff;
}
.has-bg{
  color: #fff;
}
.has-bg .section_inner{
  max-width: 1040px;
}

.bg-kendepot{
  background: var(--base-color);
  color: #fff;
}
.bg-kendepot a{
  color: #fff;
}
.bg-kendepot-lite{
  background: var(--light-color);
}
.has-bg-split{
  background: var(--Linear, linear-gradient(103deg, var(--middle-color) 50.17%, var(--base-color) 50.17%));
}

/* ---------------------------------------- */
/* title */
.section-title{
  font-size: min(32px , 5vw);
  font-weight: 800;
  line-height: 1.25;
  margin: 0 auto 20px;
  text-align: center;
}

.shoulder-title{
  position: relative;
  z-index: 4;
  background: #000;
  color: #fff;
  display: inline-flex;
  align-items: center;
  align-self: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.shoulder-title b{
  font-size: min(24px,4.2vw);
  font-weight: 700;
}
.shoulder-title::after{
  content: "";
  position: absolute;
  z-index: -1;
  width: calc(100% + 30px);
  height: calc(100% + 10px);
  background: #000;
  left: -15px;
  top: -5px;
  transform: skew(-18deg);
}

/* ---------------------------------------- */
/* hero */
.section-hero{
  padding: 20px 10vw 10px;
  min-height: 470px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
.section-hero::before{
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 480px;
  width :100%;
  background-color: var(--base-color);
  background: url(../img/bg_hero_pc.svg) no-repeat 0 0;
  background-size: cover;
  border-bottom: solid 20px #5E5959;
}
@media only screen and (max-width: 767px) {
  .section-hero{
    align-items: flex-start;
    padding: 0 5vw 10px;
  }
  .section-hero::before{
    height: 500px;
    background-image: url(../img/bg_hero_SP.svg);
  }
}

.hero-inner{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  position: relative;
  z-index: 8;
  text-align: left;
  color: #fff;
  padding-top: min(40px,5vw);
}

.hero-badge{
  position: absolute;
  z-index: 3;
  right: 3vw;
  bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: #FABE00;
  color: #fff;
  font-size: 72px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
  width: 220px;
  height: 220px;
  border-radius: 180px;
  padding-right: 8px;
  box-shadow: 4px 4px 0 0 rgba(0, 0, 0, 0.15);
  transform: rotate(5deg);
}
.hero-badge > span:last-child{
  margin-left: 0.45em;
}
@media only screen and (max-width: 767px) {
  .hero-badge{
    right: 3vw;
    top: 66%;
    font-size: 42px;
    width: 120px;
    height: 120px;
    z-index: 10;
  }
}

/* 人物画像 */
.hero-figure{
  position: absolute;
  max-width: 475px;
  z-index: -1;
  right: 5vw;
  top: 20px;
}
@media only screen and (max-width: 767px) {
  .hero-figure{
    max-width: 264px;
    right: 0;
    top: 32%;
  }
}

/*__ ロゴ __*/
.hero-logo-block{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.25));
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .hero-logo-block{
    gap: 4px;
  }
  .hero-logo-block svg,
  .hero-logo-block img{
    height: 20px;
  }
}

/*__ テキストタイトル __*/
.hero-title{
  font-size: min(6.4vw,80px);
  line-height: 1.12;
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  margin-bottom: 20px;
  color: #fff;
}
.hero-title strong{
  display: block;
  font-weight: 800;
}
.hero-title strong small{
  font-size: 60%;
}
@media only screen and (max-width: 767px) {
  /*.hero-title-block{
    gap: 2px;
    justify-content: space-between;
  }*/
  .hero-title{
    font-size: max(5vw, 58px);
    margin-bottom: 10px;
    margin-top: 10px;
  }
}

/* ポイント */
.hero-points{
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-size: min(16px,4vw);
  font-weight: 700;
  margin-bottom: 10px;
}
.hero-point-item{
  display: inline-flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
  color: #000;
  font-size: min( 36px,6vw );
  font-weight: 700;
  line-height: 1.15;
  background: #fff;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.25);
  color: var(--base-color);
}
.hero-point-item b{
  font-weight: 700;
}
.hero-points > span:last-child{
  position: relative;
  bottom: -8px;
}
@media only screen and (max-width: 767px) {
  .hero-points{
    flex-direction: column;
    gap: 8px;
  }
  .hero-point-item{
    padding: 8px 12px;
  }
  .hero-points > span:last-child{
    bottom: 0;
    top: -8px;
    left: 8px;
  }
}


/* 黒帯タイトル部分 */
.hero-subtitle-block{
  padding-top: 40px;
  display: flex;
  gap: min(30px,3vw);
  align-items: flex-end;
}
@media only screen and (max-width: 767px) {
  .hero-subtitle-block{
    padding-top: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.hero-shoulder-title{
  position: relative;
  color: #fff;
  z-index: 4;
  display: inline-block;
  line-height: 1.1;
}
.hero-shoulder-title::after{
  content: "";
  position: absolute;
  z-index: -1;
  width: calc(100% + 60px);
  height: calc(100% + 30px);
  left: -30px;
  top: -15px;
  transform: skew(-18deg);
  background: #000;
}
.hero-shoulder-text{
  font-size: min(24px,4vw);
}
.hero-shoulder-text b{
  font-weight: 600;
}
.hero-shoulder-title strong{
  font-size: min(60px,6.5vw);
}
.hero-shoulder-title sup{
  font-size: 70%;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .hero-shoulder-title::after{
    width: calc(100% + 30px);
    height: calc(100% + 10px);
    left: -15px;
    top: -5px;
    text-align: center;
    transform: skew(-10deg);
  }
  .hero-shoulder-text b{
    display: block;
    font-size: 24px;
  }
}


/* 注釈文 */
.hero-coution-text{
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  color: #666;
  position: relative;
  top: 42px;
}
@media only screen and (max-width: 767px) {
  .hero-coution-text{
    top: 0;
    font-size: 11px;
  }
}

/* ---------------------------------------- */
/* lead */
.section-lead{
  padding-bottom: 0;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .section-lead{
    padding-top: 20px;
  }
}
.seminar-lead-title{
  font-size: min(30px , 5.2vw);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1em;
}

.article-lead p{
  font-size: min(20px,4.2vw);
  font-weight: 700;
  line-height: 1.25;
}
.article-lead p small{
  font-size: 14px;
  font-weight: 400;
}

.seminar-nav{
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  align-self: center;
  margin-top: 20px;
}
.seminar-nav-item{
  font-size: 18px;
  line-height: 1;
  color: #000;
  text-decoration: none;
  display: flex;
  padding: 10px 30px;
  border: solid 1px #7C7D7D;
  border-radius: 40px;
  transition: all 0.3s ease;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
}
.seminar-nav-item:hover{
  background: #454545;
  border-color: #454545;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .seminar-nav{
    gap: 10px;
  }
  .seminar-nav-item{
    font-size: 16px;
    padding: 10px 20px;
  }
}


/* ---------------------------------------- */
/* about */
.section-about-title{
  font-size: min(20px,4.2vw);
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
  margin: 10px auto;
}
.section-about-title b{
  color: var(--base-color);
  font-weight: 700;
}
@media only screen and (max-width: 767px){
  .section-about-title{
    text-align: left;
  }
}

.seminar-card-list{
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  padding: 40px 0;
  position: relative;
  z-index: 2;
}
.seminar-card-list::after{
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
  width: 98vw;
  height: 60%;
  background: #efefef;
}

.seminar-card-item{
  display: flex;
  flex-direction: column;
  background: #FFF;
  box-shadow: 5px 5px 0 0 rgba(0, 0, 0, 0.05);
  width: calc( ( 100% - 60px ) / 3 );
}
@media only screen and (max-width: 767px){
  .seminar-card-list{
    flex-direction: column;
    gap: 20px;
    padding: 0 0 20px;
  }
  .seminar-card-item{
    width: 100%;
    flex-direction: row;
  }
}

.card-figure{
  overflow: hidden;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.card-figure img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-figure figcaption{
  position: absolute;
  z-index: 2;
  top: 20px;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  padding: 2px 10px;
  background: #FABE00;
  color: #000;
}
@media only screen and (max-width: 767px){
  .card-figure{
    width: 100px;
    height: 100px;
  }
  .card-figure figcaption{
    top: 0;
    font-size: 12px;
    padding: 4px;
  }
}

.seminar-card-content{
  display: flex;
  flex-direction: column;
}
.card-title{
  margin: 0 12px;
  padding: 12px 0;
  font-size: min( 28px, 4vw );
  line-height: 1.15;
  text-align: center;
}
.card-body{
  margin: 0 12px;
  padding: 12px 0;
  border-top: solid 1px #D9D9D9;
  font-size: 16px;
}
.card-body ul{
  margin-left: 1em;
}
.card-body ul li{
  list-style-type: disc;
}
@media only screen and (max-width: 767px){
  .seminar-card-content{
    flex-grow: 1;
    width: calc( 100% - 110px );
  }
  .card-title{
    text-align: left;
    margin: 0 8px;
    padding: 8px 0;
  }
  .card-body{
    font-size: 14px;
    margin: 0 8px;
    padding: 4px 0;
  }
  .card-body ul{
    margin-left: 1.8em;
  }
}


/* ---------------------------------------- */
/* schedule */
.section-schedule{
  position: relative;
}
.section-schedule::before{
  content: "";
  position: relative;
  top: -60px;
  left: calc( 50% - 150px );
  display: block;
  height: 3px;
  width: 300px;
  background: #D9D9D9;
}

.section-title.has-icon{
  position: relative;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-self: center;
  align-items: center;
  padding-right: 40px;
}
.section-title.has-icon::before{
  content: url(../img/fig_kendepot.svg);
}
@media only screen and (max-width: 767px){
  .section-title.has-icon{
    gap: 10px;
  }
}

.schedule-list{
  margin:0 auto 80px;
  max-width: 940px;
}
.schedule-item{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
  padding-left: 20px;
  position: relative;
}
.schedule-item::before{
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 20px;
  height: calc( 100% - 40px );
  width: 8px;
  background: var(--base-color);
}
.schedule-item + .schedule-item{
  border-top: solid 1px #eee;
}
.schedule-item.is-expired::before{
  background: #ccc;
}
.schedule-item.is-expired{
  display: none;
}

@media only screen and (max-width: 767px){
  .schedule-item{
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    padding-left: 4px;
  }
  .schedule-item::before{
    top: 10px;
    left: -15px;
    height: calc( 100% - 20px );
  }
}


.schedule-headline{
  flex-grow: 1;
}
.schedule-tags{
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.schedule-tags .tag-item{
  display: flex;
  padding: 4px 20px;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  background: #eee;
  border-radius: 4px;
}
.schedule-title{
  font-size: min(30px,5vw);
  font-weight: 800;
  line-height: 1.05;
}
@media only screen and (max-width: 767px){
  .schedule-tags .tag-item{
    padding: 4px 10px;
    font-size: 14px;
  }
}


/* セミナー申込ボタン */
.apply-link-item:not([aria-disabled="true"]){
  display: flex;
  padding: 10px 50px 10px 40px;
  justify-content: center;
  align-items: center;
  gap: 40px;
  border-radius: 10px;
  background: var(--base-color);
  box-shadow: 5px 5px 2px 0 rgba(0, 0, 0, 0.15);
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}
.apply-link-item:not([aria-disabled="true"])::after{
  content: "";
  width: 10px;
  height: 20px;
  aspect-ratio: 2/1;
  position: absolute;
  right: 20px;
  mask-image: url(../img/icon_arw.svg);
  mask-repeat: no-repeat;
  mask-position: 0;
  mask-size: 100%;
  background-color: #fff;
}
.apply-link-item:not([aria-disabled="true"]):hover{
  background: var(--middle-color);
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.15);
}
.apply-link-item.disabled{
  display: flex;
  padding: 10px 40px;
  justify-content: center;
  align-items: center;
  background: #eee;
  border-radius: 10px;
}

@media only screen and (max-width: 767px){
  .schedule-apply-link{
    align-self: flex-end;
  }
  .apply-link-item:not([aria-disabled="true"]){
    padding: 5px 50px 5px 20px;
  }
  .apply-link-item:not([aria-disabled="true"])::after{
    height: 12px;
  }
  .apply-link-item.disabled{
    padding: 5px 10px;
  }
}

/* 開催方法について */
.seminar-column-table{
  background: var(--light2-color);
  border-radius: 8px;
  line-height: 1.25;
  max-width: 940px;
  margin: 0 auto;
}
.seminar-column-table tr + tr{
  border-top: solid 4px #fff;
}
.seminar-column-table td,
.seminar-column-table th{
  text-align: left;
  padding: 20px;
}
.seminar-column-table th{
  font-weight: 700;
  position: relative;
}
.seminar-column-table th::after{
  content: ":";
  position: absolute;
  right: 0;
}
.seminar-column-table td b{
  font-weight: 700;
}
.seminar-column-table td span{
  font-size: 14px;
}
@media only screen and (max-width: 767px){
  .seminar-column-table td,
  .seminar-column-table th{
    display: block;
    padding: 10px;
  }
  .seminar-column-table th{
    padding-bottom: 0;
  }
  .seminar-column-table th::after{
    content: "";
  }
}

/* ---------------------------------------- */
/* kendepot-point */
.section-kendepot-point{
  text-align: center;
  color: #fff;
  padding: 30px 0;
}
.oem-point{
  position: relative;
  z-index: 1;
}
.kendepot-card-figure{
  position: absolute;
  top: -70px;
  left: calc( 40% - 220px );
  z-index: -1;
  max-width: 200px;
}

.kendepot-point-text{
  font-size: 16px;
  line-height: 1;
  margin: 20px 0;
  text-shadow: 4px 4px 2px rgba(0, 0, 0, 0.25);
}
.kendepot-point-text b{
  font-size: min( 48px , 6vw);
}
.kendepot-point-text b small{
  font-size: min(38px,7.5vw);
}
.kendepot-point-text sup{
  font-size: min( 20px, 5vw );
}
.kendepot-point-text strong{
  display: block;
  font-size: min( 74px , 8.8vw);
  font-weight: 900;
}
@media only screen and (max-width: 767px){
  .kendepot-point-text{
    margin: 10px 0;
  }
}

/* ---------------------------------------- */
/* faq */
.section-faq .section_inner{
  max-width: 880px;
}

.seminar-faq-list{
  margin: 0;
  padding: 30px 0;
}
.faq-title{
	padding: 30px 60px 30px 2em;
	display: flex;
	cursor: pointer;
	position: relative;
  border-top: solid 1px #ccc;
}
.faq-title::after{
	display: inline-block;
	content: "";
	width: 20px;
	height: 12px;
	background: url("../img/faq-arrow.svg") no-repeat center center/contain;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 20px;
	margin: auto 0;
}
.faq-title.is_open::after{
	transform: rotate(180deg);
}

.faq-body{
  display: none;
  position: relative;
  padding-left: 2em;
  padding-bottom: 30px;
}
.faq-title::before,
.faq-body::before{
  content:"";
  position: absolute;
  left: 0;
  font-family: "din-condensed", 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', 'メイリオ', sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.25;
}
.faq-title::before{
  content: "Q.";
  top: 24px;
}
.faq-body::before{
  content: "A.";
  top: -4px;
}

.faq-body a{
  text-decoration: underline;
}
.faq-body h5{
  margin-top: 1em;
}
.faq-body ol{
  margin-left: 1.5em;
}
.faq-body ol li{
  list-style-type: decimal;
}

@media only screen and (max-width: 767px){
  .faq-title{
    padding: 12px 36px 20px 2em;
  }
  .faq-title::before{
    top: 6px;
  }
  .faq-title::after{
    width: 16px;
    height: 10px;
    right: 0;
    top: -8px;
  }
  .faq-body{
    padding-bottom: 20px;
  }
}

/* ---------------------------------------- */
/* footnote */
.section-footnote{
  background: #eee;
}
.section-footnote .section_inner{
  max-width: 880px;
}

.footnote-article ul{
  margin-left: 1em;
  font-size: 14px;
}
.footnote-article ul li{
  list-style-type: disc;
}
@media only screen and (max-width: 767px){
  .section-footnote{
    padding-bottom: 80px;
  }
}