@charset "utf-8";
:root {
 /*カラーを定義 */ 
 --color-white:#ffffff;
 --color-primary: #efe1df;
 --color-secondary: #fffde5;
 --color-accent-red: #970b31;
 --color-accent-yellow: #f39800;
}
/*--------------------------------
ハンバーガーメニュー
---------------------------------*/
.header{
    background-color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
		z-index: 99;
  }
  .header_inner {
    position: relative;
    padding: 15px;
  }
  .logo{
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 15px
  }
  .main{  
    margin-top: 60px;
  }
  
  @media only screen and (max-width: 767px) {
    .nav {
      position: fixed;
      right: -320px; /* 右から出てくる */
      top: 0;
      width: 300px; /* スマホに収まるサイズ */
      height: 100vh;
      padding-top: 60px;
      background-color: #fff;
      transition: all .6s;
      z-index: 200;
      overflow-y: auto; /* メニューが多くなったらスクロールできるように */
    }
    .hamburger {
      position: absolute;
      right: 15px;
      top: 8px;
      width: 40px; /* クリックしやすい幅 */
      height: 40px; /* クリックしやすい高さ */
      cursor: pointer;
      z-index: 300;
    }
    .nav_list {
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .nav_item {
      text-align: center;
      padding: 0 14px;
    }
    .nav_item a {
      display: block;
      padding: 8px 0;
      border-bottom: 1px solid #333;
      text-decoration: none;
      color: #333;
    }
    .nav_item a:hover {
      background-color: #333;
    }
    .hamburger_border {
      position: absolute;
      left: 11px;
      width: 18px;
      height: 2px;
      background-color: #333;
      transition: all .6s;
    }
    .hamburger_border_top {
      top: 14px;
    }
    .hamburger_border_center {
      top: 20px;
    }
    .hamburger_border_bottom {
      top: 26px;
    }
    .black_bg {
      position: fixed;
      left: 0;
      top: 0;
      width: 100vw;
      height: 100vh;
      z-index: 100;
      background-color: #333;
      opacity: 0;
      visibility: hidden;
      transition: all .6s;
      cursor: pointer;
    }
    .nav-open .nav {
      right: 0;
    }
    .nav-open .black_bg {
      opacity: .8;
      visibility: visible;
    }
    .nav-open .hamburger_border_top {
      transform: rotate(45deg);
      top: 20px;
    }
    .nav-open .hamburger_border_center {
      width: 0;
      left: 50%;
    }
    .nav-open .hamburger_border_bottom {
      transform: rotate(-45deg);
      top: 20px;
    }
    .logo{
      width: 56%;
    }
  }
  	@media screen and (max-width: 1280px) {
		.nav_list li{
			padding-left: 0.5rem;
    	font-size: .75rem;
		}
	}
  @media only screen and (min-width: 768px) {
    .header_inner{
      max-width: 1380px;
      width: 100%;
      padding: 15px 30px;
      margin-left: auto;
      margin-right: auto;
    }
    .logo{
      width: 25%;
    }
    .nav_list{
      text-align: right;
    }
    .nav_list li{
      display: inline-block;
      text-align: right;
      padding-left: 20px;
    }
    .nav_list li a{
      color: #333;
      font-weight: 600;
    }
  }
/*--------------------------------
layout
---------------------------------*/
body{
  /*line-height: 1.6;*/
  scroll-behavior: smooth;
  font-size: 1rem;
  font-weight: 400;
  font-family: 'Noto Sans JP', sans-serif; /* Noto Sans JPを最優先に指定 */
}
img{
    width: 100%;
}
.mgt0{
  margin-top: 0!important;
}
.mgb0{
  margin-bottom: 0;
}
.mgb20{
  margin-bottom: 20px;
}

.text_center{
  text-align: center;
}
.layout_main{
  margin-top: 60px;
}
.layout_inner{
    max-width: 1380px;
    height: 100%;
    margin: auto;
}
.layout_inner_l{
  max-width: 1000px;
  height: 100%;
  margin: auto;
}
.layout_inner_m{
    max-width: 980px;
    height: 100%;
    margin: auto;
}
section + section{
	padding-bottom: 72px;
}
.pc{
  display: block !important;
}
.sp{
  display: none !important;
}
@media screen and (max-width: 1280px) {
	.layout_inner_m{
		padding: 0 2rem;
	}
}
@media screen and (max-width: 767px) {
  .layout_inner{
    max-width: 1380px;
  }
  .layout_inner_l{
    max-width: 1000px;
  }
  .layout_inner_m{
      padding: 0 1.4rem;
  }
  section + section{
    padding-bottom: 56px;
  }
  .sp{
    display: block !important;
  }
  .pc{
    display: none !important;
  }
}
/*--------------------------------
module
---------------------------------*/
.module_section_title{
  background-color: #000;
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  padding: 15px 0;
  margin-bottom: 70px;
}
.module__wrap{
    max-width: 1040px;
    margin: auto;
}
.module_app_btn{
  font-size: 1.75rem;
  width: 73.5%;
  margin: auto;
  padding: 10px 0;
  text-align: center;
}
.module_app_btn a{
  display: block;
  background-color: #B81D21;
  padding: 10px 1rem 10px;
  color: #fff;
  font-weight: bold;
  position: relative;
	border-radius: 3px;
}
.module_app_btn a::after{
  content: '';
  position: absolute;
  top: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  right: 0;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background-image: url(../images/icon_btn_arrow.png);
}
.module__seminar__box{
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.15rem;
  padding-top: 56px;
  padding-bottom: 40px;
  padding-right: 3.5rem;
  padding-left: 3.5rem;
  line-height: 1.6;
  position: relative;
  border: var(--color-accent-red) 6px solid;
}
.btn__box{
    display: flex;
    justify-content: center;
    padding: 32px 0;
}
.module__btn{
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    width: 45%;
    padding: 2rem;
    background-color: var(--color-accent-red);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    color: var(--color-white);
    font-size: 1.75rem;
    font-weight: 700;
    text-decoration: none;
    position: relative;
}
.module__btn::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../images/btn_arrow.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 30px;
    height: 30px;
  }
@media screen and (max-width: 1280px) {}
@media screen and (max-width: 767px) {
  .module__wrap{
    padding: 0 1rem;
  }
  .module_section_title{
    font-size: 1.5rem;
    padding: 10px 0;
    margin-bottom: 48px;
  }
	.module_app_btn{
		font-size: 1.15rem;
		width: 87%;
	}
	.module_app_btn a::after{
		width: 1.25rem;
		height: 1.25rem;
	}
}
/*--------------------------------
main
---------------------------------*/
.top__day{
  background-color: var(--color-accent-red);
  color: var(--color-white);
  display: flex;
  justify-content: center;
  letter-spacing: 1px;
  padding: 40px 0;
}
.top__day_large{
  font-size: 2.5rem;
  font-weight: 800;
}
.top__day_middle{
  font-size: 1.5rem;
  font-weight: 600;
}
.top__day__dtl{
  text-align: left;
}
.top__day__tag{
    display: inline-block;
    padding: .5rem;
    border: solid 1px #fff;
    margin-right: .5rem;
}
@media screen and (max-width: 767px) {
  .top__day{
    padding: 16px 0;
  }
  .top__day__dtl{
    padding: 32px 1rem;
    text-align: center;
    line-height: 1.4;
  }
  .top__day__dtl > p:first-child{
    margin-bottom: 16px;
  }
  .top__day_sub__box{
    text-align: center;
  }
  .top__day__tag{
    margin-right: 0;
    text-align: center;
  }
  .top__day__tag_sub_sp{
    display: block;
    width: max-content;
    margin: auto;
    border: none;
}
  .top__day_large{
    font-size: 2rem;
  }
  #application,#watch{
    background-color: var(--color-secondary);
  }
}

.top__close{
  background-color: yellow;
  color: black;
  display: flex;
  justify-content: center;
  letter-spacing: 1px;
  padding: 60px 0;
}
.top__close_large{
  font-size: 2.5rem;
  font-weight: 800;
}
.top__close__dtl{
  text-align: center;
}

@media screen and (max-width: 767px) {
  .top__close{
    padding: 16px 0;
  }
  .top__close__dtl{
    padding: 32px 1rem;
    text-align: center;
    line-height: 1.4;
  }
  .top__close__dtl > p:first-child{
    margin-bottom: 16px;
  }
  .top__close_sub__box{
    text-align: center;
  }
  .top__close__tag{
    margin-right: 0;
    text-align: center;
  }
  .top__close__tag_sub_sp{
    display: block;
    width: max-content;
    margin: auto;
    border: none;
}
  .top__close_large{
    font-size: 2rem;
  }
  #application,#watch{
    background-color: var(--color-secondary);
  }
}
/*セミナー内容のご紹介
---------------------------------*/
#seminar{
  background-color: var(--color-primary);
}
.module__seminar__wrap{
  margin-bottom: 80px;
  position: relative;
}
.module__seminar__wrap::before {
  content: "";
  position: absolute;
  top: -35px; /* 上に飛び出させる */
  left: 50%;
  transform: translateX(-50%); /* 中央揃え */
  display: block; /* 画像を表示するため block に変更 */
  width: 70px;
  height: 70px;
  border-radius: 50%; /* 円形にする（画像が正方形の場合） */
  background-size: cover; 
  background-repeat: no-repeat;
  z-index: 10;
}
.item01::before {
    background-image: url('../images/no1.webp');
}
.item02::before {
    background-image: url('../images/no2.webp');
}
.item03::before {
    background-image: url('../images/no3.webp');
}
.item04::before {
    background-image: url('../images/no4.webp');
}
.item05::before {
    background-image: url('../images/no5.webp');
}
.detail__catch{
  color: var(--color-accent-red);
  font-size: 2rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 72px;
}
.detail__catch img{
  width: 8rem;
}
.seminar__box1{
  background-color: var(--color-white);
}
.seminar__box2{
  background-color: var(--color-secondary);
}
.seminar__illust__box{
    position: relative;
}
.seminar__illustration {
    position: absolute;
    top: -8rem;
    right: 0;
    z-index: 10;
    width: 10rem;
  }
.seminar__header{
    border-bottom: #970b31 1px solid;
    padding-bottom: 24px;
    margin-bottom: 24px;
}
.seminar__ttl{
  color: var(--color-accent-red);
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
}
.seminar__ttl span{
  font-size: 1.5rem;
  font-weight: 500;
}
.seminar__meta{
  text-align: center;
}
.seminar__meta__speaker{
  padding: .5rem 0;
}
.seminar__meta__speaker__tag{
  background-color: #cb8598;
  border-radius: 5px;
  color: var(--color-white);
  padding: 2px 1rem;
  margin-right: 1rem;
}
.time-tag{
    background-color: #000;
    color: var(--color-white);
    padding: 4px .5rem;
    margin-left: 1rem;
}
.seminar__body{
  margin-bottom: 24px;
}
.seminar__case__list {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 1rem; 
}
.case__item:nth-child(1) {
    grid-row: 1;
    grid-column: 1;
}
.case__item:nth-child(2) {
    grid-row: 1;
    grid-column: 2;
}
.case__item:nth-child(3) {
    grid-row: 2;
    grid-column: 1 / span 2; 
}
.case__item {
    display: flex;
    align-items: center;
}
.case__img {
  width: 3rem;/* 画像のサイズを調整 */
  height: auto;
  flex-shrink: 0; /* 画像が縮まないように */
}
.case-detail{
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  margin-left: .5rem;
}
.case-detail span{
  font-size: .8rem;
}
.time-tag__sp{
  display: none;
}


@media screen and (max-width: 767px) {
  .detail__catch{
    font-size: 1.5rem;
    margin-bottom: 32px;
  }
  .detail__catch img{
    width: 6rem;
  }
  .module__seminar__wrap {
    margin-bottom: 56px;
  }
  .seminar__illust__box{
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
  }
  .seminar__illustration{
    position: static;
    z-index: initial
  }
  .module__seminar__box{
    padding-right: 1rem;
    padding-left: 1rem;
    font-size: 1rem;
    font-weight: 500;
  }
  .seminar__header{
    padding-bottom: 0;
  }
  .seminar__meta__speaker{
    font-size: .85rem;
    line-height: 2.5;
  }
  .seminar__meta__speaker__tag{
    font-size: 1rem;
  }
  .time-tag{
    margin-left: 0;
    font-size: 1rem;
  }
  .seminar__case__list{
    display: none;
  }
  .case__item:not(:first-child){
    margin-top: 16px;
  }
  .time-tag__sp{
    display: inline;
  }
 .time-tag__pc{
    display: none;
 }
}

/*講師のご紹介
---------------------------------*/
#speaker{
  background-color: var(--color-secondary);
}
.speaker__box{
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.15rem;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-right: 3.5rem;
  padding-left: 3.5rem;
  line-height: 1.6;
  position: relative;
  border: var(--color-accent-yellow) 6px solid;
  background-color: var(--color-white);
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  margin-bottom: 72px;
}
.speaker__photo{
  width:29% ;
}
.speaker__info{
  margin-left: 2.5rem;
}
.speaker__role{
  font-weight: 500;
}
.speaker__name{
  font-size: 1.75rem;
  font-weight: 700;
}
.speaker__name span{
  font-size: 1.25rem;
  margin-left: .5rem;
}
.speaker__qualification{
  font-size: .8rem;
  font-weight: 500;
  margin-bottom: 16px;
}
.speaker__divider{
  color:var(--color-accent-yellow);
  border-top: 3px solid;
}
.speaker__bio{
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .speaker__box{
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 56px;
  }
  .speaker__photo{
    width: 85%;
  }
  .speaker__info{
    margin-left: 0;
    margin-top: 16px;
  }
  .speaker__role,.speaker__name,.speaker__qualification{
    text-align: center;
  }
}
/*申込方法
---------------------------------*/
.application__cont{
  margin-bottom: 64px;
}
.application__cont--step li +li{
  margin-top: 32px;
  padding-top: 80px;
}
.application__cont--step li{
  border-bottom: 1px solid #000;
  padding-bottom: 16px;
  font-size: 2rem;
  font-weight: bold;
  position: relative;
}
.application__cont--step li + li::before{
  /* 基本的に変更しないプロパティ */  
  content: '';
  position: absolute;
  bottom: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  /* アイコンとテキストの間隔を調整するプロパティ */
  left: 50%;
  /* アイコンの上下位置を調整するプロパティ */
  transform: translateY(-50%);
  /* アイコンのサイズを調整するプロパティ */
  width: 2.5rem;
  height: 2.5rem;
  /* 表示させるアイコンのパスを指定 */
  background-image: url(../images/step_icon_arrow.png);
}
.application__cont--step li > span{
  display: block;
  position: relative;
  padding-left: 3rem;
  text-align: center;
}
.application__cont--step li > span::before{
  content: '';
  position: absolute;
  top: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  left: 0rem;
  transform: translateY(-60%);
  width: 2.5rem;
  height: 2.5rem;
  background-image: url(../images/step__number_01.png);
}
.application__cont--step li:nth-of-type(2) > span::before{
  background-image: url(../images/step__number_02.png); 
}
.application__cont--step li:nth-of-type(3) > span::before{
  background-image: url(../images/step__number_03.png); 
}
.application__cont--step li:nth-of-type(4) > span::before{
  background-image: url(../images/step__number_04.png); 
}
.step__btn_icon{
  display: inline-block;
  width: 25rem;
}
.application__cont--note{
  font-size: 1.15rem;
  color: #EB1E79;
	margin-top: 32px;
	text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 1280px) {}
@media screen and (max-width: 767px) {
	.application__cont {
    margin-bottom: 32px;
	}
	.application__cont--step li{
		font-size: 1.15rem;
	}
	.step__btn_icon {
    width: 14rem;
	}
	.application__cont--step li +li{
		padding-top: 32px;
	}
	.application__cont--note {
    font-size: .7rem;
		margin: 10px auto 0;
		width: 94%;
	}
}
/*視聴方法
---------------------------------*/
#watch{
  padding-bottom: 0;
}
.watch__note_lead{
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 32px;
    line-height: 1.6;
}
.watch__note_list__box{
  background-color: #ececec;
  padding: 1.25rem;
}
.watch__note_ttl{
  text-align: center;
  margin-bottom: 16px;
}
.watch__note_list{
  line-height: 1.5;
}
.cta__wrap{
  background-color: #003d6b;
  padding: 56px 0;
  margin-top: 64px;
}
.cta__btn__box{
  display: flex;
  justify-content: center;
  margin-top: 56px;
}
.cta__sp{
  display: none;
}
@media screen and (max-width: 767px) {
  .watch__note_lead{
    font-size:1.25rem ;
  }
  .cta__pc{
    display: none;
  }
  .cta__sp{
    display: block;
  }
}
/*お問い合わせ
---------------------------------*/
.inquiry__box{
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.6;
}
.inquiry__divider{
  color:#666;
  border-top: 1px solid;
}
.tel1{
  margin: 16px 0 32px;
}
.inquiry__tel .tel,.footer_sponsorship .tel {
    display: inline-flex; 
    align-items: center;
    font-size: 18px;
    margin-left: 1rem;
    text-decoration: none;
}
.inquiry__tel .tel::before {
    content: "";
    width: 18px;
    height: 18px;
    background-image: url('../images/tel_icon.webp');
    background-size: contain; 
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 7px; /* アイコンとテキストの間に隙間を作る */
}
.footer_sponsorship span{
  display: block;
}
.footer_sponsorship .tel::before{
      content: "";
    width: 18px;
    height: 18px;
    background-image: url('../images/tel_icon.webp');
    background-size: contain; 
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 7px; /* アイコンとテキストの間に隙間を作る */
}
/*--------------------------------
--------------------------------
視聴ページ
---------------------------------
---------------------------------*/
.sub__watch{
  padding-bottom: 0;
}
.top__day_sub{
  display: flex;
  justify-content: center;
  color: var(--color-white);
}
.top__day_sub__box{
  display: inline-block;
  background-color: var(--color-accent-red);
  padding: 16px 2rem;
  letter-spacing:1px
}

.sub__watch_box{
  text-align: center;
  margin: 40px 0;
}
.sub__watch__ttl{
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 24px;
}
.sub__watch__lead{
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-accent-red);
}
.accordion__list {
    list-style: none;
    padding: 0;
    max-width: 880px;
    margin: auto;
}
.accordion__item {
    margin-bottom: 10px;
    border-radius: 5px;
}
.accordion__header {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    width: 100%;
    background: none; 
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    text-align: left;
    border: #970b31 2px solid;
    min-height: 90px;
}
.accordion__title__box{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    font-size: 1.5rem;
    color: var(--color-accent-red);
    font-weight: 600;
}
.accordion__title__bold{
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 1px;
}
.accordion__title{
  margin-left: 1rem;
}
.bg_yellow{
  background-color: var(--color-secondary);
}
/* アイコン（+ / -）のコンテナ */
.accordion__icon {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    color: #970b31; 
    font-weight: 300;
}

/* 【初期状態: プラス + 】 */
.accordion__icon::before {
    content: '+'; 
}
/* 【開いた状態: マイナス - 】 */
/* JavaScriptで 'is__open' クラスが付与されたら、アイコンを切り替える */
.accordion__header.is__open .accordion__icon::before {
    content: '-';
}
/* コンテンツ（開閉部分）のスタイル */
.accordion__content {
    padding: 0 20px 20px 20px; 
    border-top: 1px solid #ddd; 
}
/* アコーディオン開閉部分のコンテンツの基本余白 */
.accordion__content {
    padding: 0 20px 20px 20px; 
    border-top: 1px solid #ddd; 
}
/* アコーディオン内部のコンテナ（左右の余白調整用） */
.seminar__detail__inner {
    padding: 32px 0; /* 上下の余白 */
}
/* 内部のセミナータイトル（例: 1 本セミナーガイダンス） */
.seminar__detail__title {
    display: flex; /* 数字とテキストを横並びにする */
    align-items: center;
    gap: 10px;
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--color-accent-red); /* 赤系の文字色 */
    font-size: 1.75rem; /* 前回のH2相当の推奨サイズに準ずる */
    font-weight: bold;
}
.seminar__detail__title__bold{
  display: contents;
  font-weight: 900;
  font-size: 2rem;
}

/* 内部セミナータイトルの数字部分（例: 1） */
.seminar__detail__number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3rem; /* 数字の背景の幅 */
    height: 3rem; /* 数字の背景の高さ */
    background-color: var(--color-accent-red); /* 赤系の背景色 */
    color: #ffffff;
    border-radius: 30%; /* 円形にする */
    font-size: 2rem;
    font-weight: bold;
    flex-shrink: 0; /* 縮まないように */
}
.seminar__detail__meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: flex-end;
}
.lecturer__tag {
    background-color: #f7e6e8; /* ピンク系の背景色 */
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 14px;
    color: #333;
}
.time__tag {
    color: #b32b35;
    font-weight: bold;
    font-size: 16px;
}
.youtube__embed {
    position: relative;
    width: 100%;
    /* 16:9のアスペクト比を維持するための高さ */
    padding-top: 56.25%; /* (9 / 16) * 100% */
    margin-bottom: 10px;
    background-color: #333; /* 動画読み込み中のプレースホルダー */
}
.youtube__embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.youtube__note {
    font-size: 13px;
    color: #666;
    display: flex; /* アイコンとテキストを横並びにする */
    align-items: center;
    gap: 5px;
}
.fullscreen__icon {
    width: 18px; /* アイコンのサイズ */
    height: 18px;
    vertical-align: middle;
}
.sub_seminar__dtl__meta{
    display: flex;
    justify-content: flex-end;
    flex-wrap: nowrap;
    align-items: center;
    height: fit-content;
    margin-bottom: 16px;
}
.sub_time-tag_sp_box{
  display: none;
}
.questionnaire{
  margin-top: 56px;
}
.questionnaire_lead{
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .sub_module_section_title{
    margin-bottom: 0;
  }
  .top__day_sub,.top__day_sub__box{
    display: block;
  }
  #inquiry{
    padding-bottom: 0;
  }
  .sub__watch__lead{
    font-size: 1.25rem;
  }

  .accordion__title__box{
    font-size: 1rem;
  }
  .accordion__title {
    margin-left: .25rem;
  }
  .accordion__title__bold{
    font-size: 1.25rem;
  }
  .accordion__content{
    padding: 0 .5rem 20px;
  }
  .youtube__note{
    font-size: .65rem;
  }
  .questionnaire_lead{
    font-size: initial;
  }
  .module__btn {
    font-size: 1.25rem;
    width: 95%;
    padding: 20px 1rem;
  }

  .seminar__detail__number{
    width: 2rem;
    height: 2rem;
    font-size: 1.25rem;
  }
  .seminar__detail__title__bold{
    font-size: 1.35rem;
  }
  .sub_speaker__tag{
    padding: 2px .5rem;
    margin-right: .5rem;
  }
  .sub_seminar__dtl__meta{
    display: block;
  }
  .sub_time-tag_sp_box{
    display: block;
    text-align: center;
    margin-bottom: 16px; 
  }
  .sub_time-tag_pc{
    display: none;
  }
  .seminar__detail__title{
    font-size: 1rem;
  }
}

/*--------------------------------
--------------------------------
footer
---------------------------------
---------------------------------*/
#inquiry{
  padding-bottom:40px ;
}
.layout_footer{
    border-top: solid 1px #000;
}
.footer_wrap{
  display: flex;
  padding: 50px 0;
  width: 90%;
  margin: auto;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
}
.footer_logo{
  width: 15%;
}
.footer_sponsorship{
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.6;
}
@media screen and (max-width: 1280px) {

	.footer_sponsorship {
    font-size: 1rem;
	}
}
@media screen and (max-width: 767px) {
	.layout_footer{
		margin-top: 0;
	}
  .footer_wrap{
    width: initial;
    flex-wrap: wrap;
    padding: 24px 0;

  }
  .footer_logo{
    width: 30%;
    margin: auto;
    justify-content: space-evenly;
  }
  .footer_logo--logo01{
    margin-right: 1.25rem;
    width: 19rem;
  }
  .footer_sponsorship{
    font-size: .85rem;
    text-align: center;
    margin-top: 16px;
  }
}
/*
 * ---------------------------------
 * 固定CTAボタンエリアのスタイル
 * ---------------------------------
 */

/* 既存のスタイル */
.fixed__cta__box{
    background-color: var(--color-accent-red);
    display: flex;
    justify-content: center;
    padding: 32px 0;
}
.fixed__cta__cont {
    position: fixed; /* 画面に固定 */
    bottom: 0; /* 画面下端に配置 */
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 1000; /* 他の要素より手前に表示する */
    opacity: 0; /* 透明にしておく */
    visibility: hidden; /* 要素を非表示にする */
    transform: translateY(100%); /* 画面下端から自身の高さ分だけ下に移動させる */
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out, transform 0.3s ease-out; /* アニメーションを追加 */
}
.fixed__cta__cont.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* 通常の位置 (bottom: 0) に戻す */
}
body {
    padding-bottom: 100px; 
}
.cta__button {
    display: inline-flex;
    justify-content: center; 
    align-items: center;
    width: 60%; 
    padding: 15px 20px; 
    background-color: #ffef00; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    cursor: pointer;
    color: #b32b35; 
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none; 
    position: relative;
}
.cta__button::after {
    content: "";
    position: absolute;
    right: 15px; 
    top: 50%;
    transform: translateY(-50%); 
    background-image: url('../images/right_arrow.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 30px; 
    height: 30px;
}
.cta__button:hover {
    opacity: 0.9;
}
@media screen and (max-width: 767px) {
    .fixed__cta__box {
        padding: 24px 0;
    }
    .cta__button {
        font-size: 1.25rem;
        width: 75%;
    }
    .cta__button::after{
        width: 20px;
        height: 20px;
    }
}




