﻿@charset "shift_jis";
/* CSS Document */


.pc { display: block !important; }
.sp { display: none !important; }


/*========= ローディング画面のためのCSS ===============*/
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 9999999;
	text-align:center;
}

#splash-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#splash-logo img{
  width: 100%;
  margin: 0 auto;
}

/*========= 画面遷移のためのCSS ===============*/

/*画面遷移アニメーション*/
.splashbg{
    display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg{
    display: block;
    content: "";
    position:fixed;
	z-index: 999;
    width: 100%;
    margin: 0 auto;
    height: 100vh;
    top: -200px;
	left: 0;
}

@keyframes PageAnime{
	0% {
		transform-origin:bottom;
		transform:scaleY(0);
	}
	50% {
		transform-origin:bottom;
		transform:scaleY(1);
	}
	50.001% {
		transform-origin:top;
	}
	100% {
		transform-origin:top;
		transform:scaleY(0);
	}
}

/*画面遷移の後現れるコンテンツ設定*/

#container{
	opacity: 0;/*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container{
	animation-name:PageAnimeAppear;
	animation-duration:0.5s;
	animation-delay: 0.2s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}


/*==================================
J-queryエフェクト用CSS
===================================*/

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
   
.fadeUpTrigger,
.fadeDownTrigger,
.zoomInTrigger,
.rotateYTrigger,
.fadeRightTrigger,
.fadeLeftTrigger
{
      opacity: 0;
  }

  /* くるっと　*/

/*==================================================
くるっ
===================================*/


/* X 軸（縦へ） */
.rotateX{
  animation-name:rotateXAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
}

@keyframes rotateXAnime{
  from{
    transform: rotateX(0);
    opacity: 0;
    }
  to{
    transform: rotateX(-360deg);
    opacity: 1;
    }
}

/*　Y軸（横へ） */
.rotateY{
  animation-name:rotateYAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
}

@keyframes rotateYAnime{
  from{
    transform: rotateY(0);
    opacity: 0;
    }
  to{
    transform: rotateY(-360deg);
    opacity: 1;
    }
}

/* Z 軸（左へ） */
.rotateLeftZ{
  animation-name:rotateLeftZAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
}

@keyframes rotateLeftZAnime{
  from{
    transform: rotateZ(0);
    opacity: 0;
    }
  to{
    transform: rotateZ(-720deg);
    opacity: 1;
    }
}

/*　Z 軸（右へ） */
.rotateRightZ{
  animation-name:rotateRightZAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
}

@keyframes rotateRightZAnime{
  from{
    transform: rotateZ(0);
    opacity: 0;
    }
  to{
    transform: rotateZ(360deg);
    opacity: 1;
    }
}

/* ぶわっと浮かぶ　*/

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity: 0;
}
@keyframes fadeUpAnime{
from {
  opacity: 0;
  transform: translateY(100px);
}
to {
  opacity: 1;
  transform: translateY(0);
}
}

/* 上から */

.fadeDown{
  animation-name:fadeDownAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  
  @keyframes fadeDownAnime{
    from {
      opacity: 0;
    transform: translateY(-100px);
    }
  
    to {
      opacity: 1;
    transform: translateY(0);
    }
  }

/* 左から */

.fadeLeft{
  animation-name:fadeLeftAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  
  @keyframes fadeLeftAnime{
    from {
      opacity: 0;
    transform: translateX(-500px);
    }
  
    to {
      opacity: 1;
    transform: translateX(0);
    }
  }
  
/* 右からぶわっと　*/

.fadeRight{
  animation-name:fadeRightAnime;
  animation-duration:1.5s;
  animation-fill-mode:forwards;
  opacity:0;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
  transform: translateX(500px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

  
/* 右からぶわっと　*/

.fadeRight_1{
  animation-name:fadeRightAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity:0;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
  transform: translateX(500px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/* 文字が流れる　*/

.eachTextAnime span{opacity: 0;}
.eachTextAnime.appeartext span{ animation:text_anime_on 1s ease-out forwards; }
@keyframes text_anime_on {
	0% {opacity:0;}
	100% {opacity:1;}
}



/* 拡大 */
.zoomIn{
  animation-name:zoomInAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
}

@keyframes zoomInAnime{
  from {
  transform: scale(0.6);
  opacity: 0;
  }

  to {
    transform: scale(1);
  opacity: 1;}
}






/*==================================
top pageへ
===================================*/

/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:#2e228c;
	border-radius: 5px;
	width: 80px;
	height: 80px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:1.8em;
	transition:all 0.3s;
}

#page-top a:hover{
	background: #777;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}


  /*1130px幅*/

.contents{
  max-width: 1130px;
  margin: 0 auto;
}

.contents img{
  width: 100%;
  margin: 0 auto;
}

  /*820px幅*/

  .under_contents{
    max-width: 820px;
    margin: 0 auto;
  }
  
  .under_contents img{
    width: 100%;
    margin: 0 auto;
  }

    /*1920px幅*/

    .under_contents_full{
      max-width: 1920px;
      margin: 0 auto;
    }
    
    .under_contents_full img{
      width: 100%;
      margin: 0 auto;
      padding: 0px 0 0 0;
    }




.header_area {
  width: 100%;
  margin: 0 auto;
  background-color: #FFF;
}

.header {
  display: flex;
  align-items: center;
}

.header_left {
  margin-right: auto;
}


.header_left img{
  max-width: 220px;
}

.header_center {
  padding-right: 20px;
}

.header_center img{
  max-width: 348px;
  transition-duration: 0.5s;
}

.header_center img:hover{
  transform: scale(1.1);
  transition-duration: 0.5s;
}

.header_right{
  padding-right: 20px;
}

.header_right img{
  max-width: 300px;
  transition-duration: 0.5s;
}

.header_right img:hover{
  transform: scale(1.1);
  transition-duration: 0.5s;
}

.header_menu{
  display: flex;
  margin-bottom: 15px;
}


/*========= 上部固定させるためのCSS ===============*/

#header_menu_bg{
	width:100%;
  background-image: url(https://www.cranehill.net/img/header_menu_bg.png);
  background-repeat: repeat-x;

  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

/*JSを使いfixedクラスが付与された際の設定*/

#header_menu_bg.fixed{
	position: fixed;
  z-index: 999;
  top:0;
  left:0;
}

/*========= ナビゲーションドロップダウンのためのCSS ===============*/

/*==ナビゲーション全体の設定*/
nav{
	text-align: center;
}
/*ナビゲーションを横並びに*/
nav ul{
	list-style: none;
	display: flex;
	justify-content: center;
}
/*2階層目以降は横並びにしない*/
nav ul ul{
	display: block;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li{
	position: relative;
}

/*ナビゲーションのリンク設定*/
nav ul li a{
	display: block;
	text-decoration: none;
	color: #999;
	transition:all .3s;
}

nav ul li li a{
	padding:10px 35px;
}

nav ul li a:hover{
	color:#fff;	
}

/*==矢印の設定*/

/*2階層目を持つliの矢印の設定*/
nav ul li.has-child::before{
	content:'';
	position: absolute;
	left:15px;
	top:25px;
	width:6px;
	height:6px;
	border-top: 2px solid #999;
    border-right:2px solid #999;
    transform: rotate(135deg);
}

/*3階層目を持つliの矢印の設定*/
nav ul ul li.has-child::before{
	content:'';
	position: absolute;
	left:6px;
	top:17px;
	width:6px;
	height:6px;
    border-top: 2px solid #fff;
    border-right:2px solid #fff;
    transform: rotate(45deg);
}

/*== 2・3階層目の共通設定 */

/*下の階層を持っているulの指定*/
nav li.has-child ul{
    /*絶対配置で位置を指定*/
	position: absolute;
	left:0;
	top:62px;
	z-index: 4;
    /*形状を指定*/
	background:#1eaaff;
	width:226px;
    /*はじめは非表示*/
	visibility: hidden;
	opacity: 0;
    /*アニメーション設定*/
	transition: all .3s;
}

/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li a{
	color: #fff;
	border-bottom:solid 1px rgba(255,255,255,0.6);
}

nav li.has-child ul li:last-child a{
	border-bottom:none;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
	background:#3577CA;
}


/*==3階層目*/

/*3階層目の位置*/
nav li.has-child ul ul{
	top:0;
	left:182px;
	background:#66ADF5;
}

nav li.has-child ul ul li a:hover,
nav li.has-child ul ul li a:active{
	background:#448ED3;
}



.seminar_bg{
  width: 100%;
  margin: 0 auto;
}

.seminar_bg_1024{
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
}

.seminar_bg_1024 img{
  width: 100%;
  margin: 0 auto;
}

.seminar_bg_1024_sc01{
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
  background-image: url(../img/sc001_bg_002.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.seminar_bg_1024_sc01 img{
  width: 100%;
  margin: 0 auto;
}

.seminar_bg_1024_sc02{
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
  background-image: url(../img/sc001_bg_004.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.seminar_bg_1024_sc02 img{
  width: 100%;
  margin: 0 auto;
}

.seminar_bg_1024_sc03{
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
  background-image: url(../img/sc001_bg_005.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.seminar_bg_1024_sc03 img{
  width: 100%;
  margin: 0 auto;
}


.seminar_bg_1024_sc04{
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
  background-image: url(../img/sc001_bg_006.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.seminar_bg_1024_sc04 img{
  width: 100%;
  margin: 0 auto;
}

.seminar_bg_1024_sc05{
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
  background-image: url(../img/sc001_bg_007.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.seminar_bg_1024_sc05 img{
  width: 100%;
  margin: 0 auto;
}

.seminar_bg_1024_sc06{
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
  background-image: url(../img/sc001_bg_008.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.seminar_bg_1024_sc07 img{
  width: 100%;
  margin: 0 auto;
}

.seminar_bg_1024_sc07{
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
  background-image: url(../img/sc001_bg_013.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.seminar_bg_1024_sc06 img{
  width: 100%;
  margin: 0 auto;
}




.seminar_bg_max{
  width: 100%;
  height: auto;
  margin: 0 auto;
  text-align: center;
}

.seminar_bg_max img{
  width: 100%;
}

.seminar_bg_sc001_1{
  width: 100%;
  background-image: url(../img/sc001_bg_001.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.seminar_bg_sc001_2{
  width: 100%;
  background-color: #e5faf9;
}

.seminar_bg_sc001_3{
  width: 100%;
  background-image: url(../img/sc001_bg_003.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.seminar_bg_sc001_4{
  width: 100%;
  background-color: #e5faf9;
  margin-bottom: -400px;
}


.seminar_bg_sc001_5{
  width: 100%;
  background-image: url(../img/sc001_bg_009.webp);
}

.seminar_bg_sc001_6{
  width: 100%;
  background-image: url(../img/sc001_bg_010.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}


.seminar_bg_sc001_7{
  width: 100%;
  background-image: url(../img/sc001_bg_011.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.seminar_bg_sc001_8{
  width: 100%;
  background-image: url(../img/sc001_bg_014.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.seminar_bg_sc001_9{
  width: 100%;
  background-image: url(../img/sc001_bg_009.webp);
  background-repeat: repeat;
}

.seminar_bg_sc001_10{
  width: 100%;
  background-image: url(../img/sc001_bg_010.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.seminar_bg_sc001_11{
  width: 100%;
  background-image: url(../img/sc001_bg_011.webp);
  background-repeat: repeat;
  background-size: cover;
}

.seminar_bg_sc001_12{
  width: 100%;
  background:linear-gradient(#fffccd, #fff); 
}

.seminar_bg_sc001_13{
  width: 100%;
  background-color: #fff000;
}


.seminar_bg_sc002_1{
  width: 100%;
  background-color: #fff5e5;
}

.seminar_bg_sc002_2{
  width: 100%;
  background-color: #ffe600;
}

.seminar_bg_sc002_3{
  width: 100%;
  background-image: url(../img/sc002_bg_003.webp);
  background-repeat: repeat;
  background-position: top center;
}
.seminar_bg_sc002_4{
  width: 100%;
  background-image: url(../img/sc002_bg_004.webp);
  background-repeat: repeat;
  background-position: top center;
}

.seminar_bg_sc002_5{
  width: 100%;
  background-color: #fff;
}

.seminar_bg_sc002_6{
  width: 100%;
  background-color: #ffeff9;
}


.seminar_bg_sc002_8{
  background-image: url(../img/sc002_bg_005.webp);
  background-repeat: repeat;
  background-position: top center;
}

.seminar_bg_sc002_10{
  width: 100%;
  background-color: #ff8700;
}

.seminar_bg_sc002_10 img{
  transition-duration: 0.5s;
}

.seminar_bg_sc002_10 img:hover{
  transform: scale(1.1);
  transition-duration: 0.5s;
}



.seminar_bg_sc003_1{
  width: 100%;
  background-image: url(../img/sc003_bg_001.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.seminar_bg_sc003_2{
  width: 100%;
  background-image: url(../img/sc003_bg_002.webp);
  background-repeat: repeat;
}




.seminar_bg_sc004_1{
  width: 100%;
  background-image: url(../img/sc004_bg_001.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.seminar_bg_sc004_2{
  width: 100%;
  background-image: url(../img/sc004_bg_002.webp);
}



.sc004_3{
  padding-top: 80px;
}

.seminar_bg_sc005_1{
  width: 100%;
  background-image: url(../img/sc005_bg_001.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

.seminar_bg_sc005_2{
  width: 100%;
  background-image: url(../img/sc005_bg_002.webp);
  background-repeat: repeat;
}

.seminar_bg_sc006_1{
  width: 100%;
  background-image: url(../img/sc006_bg_001.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

.seminar_bg_sc006_2{
  background-color: #0032c8;
}

.seminar_bg_sc006_3{
  background-color: #fffaf4;
}

.seminar_bg_sc006_4{
  width: 100%;
  background-image: linear-gradient(to bottom, #00aeff, #00156a);
}


.seminar_bg_help_1{
  width: 100%;
  background-color: #78dcdc;
}

.seminar_bg_help_2{
  width: 100%;
  background-image: url(../img/help_bg_001.webp);
  background-size: contain;
  background-repeat: repeat;
  background-position: center;
}

.seminar_bg_instructor_1{
  width: 100%;
  background-image: url(../img/instructor_header_bg.webp);
  background-size: contain;
  background-repeat: repeat;
  background-position: center;
}

.seminar_bg_faq_1{
  width: 100%;
  background-color: #78a096;
}

.seminar_bg_faq_2{
  width: 100%;
  background-color: #e5f9ed;
}


.btnPosiden{
    position: absolute;
    top: 57%;
    margin-right: 20%;
    margin-left: -1.5%;
}

.seminar_button_bg{
  background-color: #fff;
  width: 100%;
  padding: 50px 0 50px 0;
}

.seminar_button_bg img{
  transition-duration: 0.5s;
}

.seminar_button_bg img:hover{
  transform: scale(1.1);
  transition-duration: 0.5s;
}

.seminar_button_bg2{
  width: 100%;
  padding: 50px 0 50px 0;
  text-align: center;
}

.seminar_button_bg2 img{
  transition-duration: 0.5s;
  width: 100%;
}

.seminar_button_bg2 img:hover{
  transform: scale(1.1);
  transition-duration: 0.5s;
}

.seminar_bg_sc001_2 img{
  margin: 0px 0 0 0;
  vertical-align:top;
}

.seminar_bg_1024 img{
  vertical-align:top;
}

.seminar_bg_max img{
  vertical-align:top;
}

.seminar_foam_bg{
  width: 100%;
  background: linear-gradient(135deg,#3cc8c8, #29abe2);
  padding: 50px 0 50px 0;
}

.foam_header{
  max-width: 1024px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.foam_header_left img{
  max-width: 220px;
  width: 100%;
}

.foam_header_center img{
  width: 100%;
  max-width: 240px;
  padding: 0 30px 0 30px;
}

.foam_header_right img{
  width: 100%;
  max-width:300px;
}

.seminar_foam{
	background:#FFF;
	width:100%;
	max-width:1024px;
	margin:0 auto;
	border-radius:18px;
}

.seminar_foam_title{
	width:100%;
  margin: 0 auto;
  margin-bottom: 0px;
}
.seminar_foam_title p{
    padding: 1rem 2rem;
    color: #fff;
    font-size: 2.0em;
    font-weight: bold;
    text-shadow: 1px 2px 3px #808080;
    text-align: center;
    background-image: -webkit-linear-gradient(315deg, #704308 0%, #ffce08 40%, #e1ce08 60%, #704308 100%);
    background-image: linear-gradient(135deg, #704308 0%, #ffce08 40%, #e1ce08 60%, #704308 100%);
}
.seminar_foam_title a{
  text-decoration: none; 
}

.seminar_foam_contents{
  padding: 30px;
  margin-bottom: 50px;
}

.seminar_foam_contents h4{
    padding: 1rem 2rem;
    border: 6px double #000;
    font-size: 1.8em;
    text-align: center;
    font-weight: 800;
}

.seminar_entry{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px 0 15px 0 ;
  border : solid 1px #333 ;
}


.seminar_entry_left{
  background-color: #1b1464;
  padding: 15px 0 15px 0;
  color:#fff;
  font-size: 1.3em;
  text-align: center;
  width: 35%;
}

.seminar_entry_right{
  padding: 15px 0 15px 0;
  font-size: 1.3em;
  text-align: center;
  width: 65%;
}

.seminar_entry_caution{
  border : solid 1px #999 ;
  border-radius: 12px;
  margin: 15px 0 0 0;
  padding: 30px;
  font-size: 1.1em;
  line-height: 2.0em;
}

.seminar_entry_caution hr{
  margin: 15px 0 15px 0;
  color:#999;
}

.seminar_entry_caution_title{
  padding: 20px 0px 30px 0px;
  font-size: 1.8em;
  text-align: center;
  font-weight: 800;
  color: #ff0000;
}
.seminar_entry_caution_title span{
  background: #fcee21;
  padding: 10px;
}

.seminar_entry_caution_title2{
  padding: 20px 0px 30px 0px;
  font-size: 1.2em;
  font-weight: 800;
}
.seminar_entry_caution_title2 span{
  background: #fcee21;
  padding: 10px;
}

.seminar_entry_caution_inline{
  font-size: 1.2em;
  padding-bottom: 30px;
  line-height: 1.8em
}

.font_red{
  color: #ff0000;
  font-weight: 800;
}

.font_blue{
  color: #0b318f;
  font-weight: 800;
}

.font_red2{
  color: #ff0000;
  font-weight: 400;
}

.font_green{
  color: #009245;
  font-weight: bold;
}

.font_bold{
  font-weight: bold;
}

.seminar_day{
  margin: 30px 0 0px 0;
  width: 100%;
  font-size: 1.0em;
}

.seminar_day a{
  color: #2d3293;
  text-decoration:underline;
  font-weight: bold;
}

.seminar_day th {
  background: #fbf5f5;
  padding: 10px;
  border : solid 1px #999 ;
  text-align: center;
}

.seminar_day td:first-child {
  background-color: #1b1464;
  color:#fff;
  padding: 10px;
  border : solid 1px #999 ;
}

.seminar_day td {
  padding: 10px;
  border : solid 1px #999 ;
}

.seminar_day2{
  margin: 30px 0 0px 0;
  width: 100%;
  font-size: 1.0em;
}

.seminar_day2 a{
  color: #2d3293;
  text-decoration:underline;
  font-weight: bold;
}

.seminar_day2 th {
  background: #fbf5f5;
  padding: 10px;
  border : solid 1px #999 ;
  text-align: center;
}

.seminar_day2 td:first-child {
  background-color: #1b1464;
  color:#fff;
  padding: 10px;
  border : solid 1px #999 ;
}

.seminar_day2 td {
  padding: 10px;
  border : solid 1px #999 ;
}

.seminar_foam_contents p {
  font-size: 1.2em;
  line-height: 2.0em;
  padding: 15px 0 15px 0;
}

.row{
  font-size: 1.1em;
}

.page_top{
  position: fixed;
  right: 0px;
  bottom: 300px;
  opacity: 0.8;
}

.page_top a{
  position: relative;
  display: block;
  text-decoration: none;
}


.page_top img:hover{
  transform: scale(1.1);
  transition-duration: 0.5s;
}



#page_top2{
  width: 120px;
  height:120px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #ef3f98;
  opacity: 0.8;
  border-radius: 50%;
}
#page_top2 a{
  position: relative;
  display: block;
  width: 120px;
  height: 120px;
  text-decoration: none;
}
#page_top2 a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 35px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -45px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/

.box{
	opacity: 0;
}

.box1{
	opacity: 0;
}

.box2{
	opacity: 0;
}

.box3{
	opacity: 0;
}

.flex{
  display:flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0 60px 0 60px;
  padding: 60px 0 60px 0;
}

.box{
  width: 20%;
}

.box1{
  width: 100%;
}

.box2{
  width: 100%;
  margin-top: -150px;
}

.box3{
  width: 100%;
  margin-top: -160px;
}

.top_12{
  position: relative;
  top: 12px;
}

.top_60{
  position: relative;
  top: -60px;
}


.top_100{
  padding-top: 100px;
}

.top_200{
  padding-top: 200px;
}

.top_300{
  padding-top: 300px;
}

.image-overlap {
  position: relative;
  top: -400px;
}

.bottom_100{
  padding-bottom: 100px;
}

.bottom_200{
  padding-bottom: 200px;
}

 /* ■■■■■■■■■■■■■■■■■■■■■■■■■■タブレット■■■■■■■■■■■■■■■■■■■■■ */

@media all and (min-width: 768px) and (max-width: 1024px) {


  .box2{
    width: 100%;
    margin-top: -100px;
  }
  
  .box3{
    width: 100%;
    margin-top: -100px;
  }

  .image-overlap {
    position: relative;
    top: -300px;
    bottom: -300px;
  }

  .seminar_bg_sc001_4{
    width: 100%;
    background-color: #e5faf9;
    margin-bottom: -200px;
  }
  
}

/* ■■■■■■■■■■■■■■■■■■■■■■■■■スマホ■■■■■■■■■■■■■■■■■■■■■■■■■ */


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

    .seminar_foam_contents{
      padding: 30px 0px 30px 0px;
    }

    .seminar_entry{
      display: block;
    }

    .seminar_entry2{
      display: block;
    }

    .seminar_entry_left{
      width: 100%;
      font-size: 1.1em;
    }
    
    .seminar_entry_right{
      width: 100%;
      font-size: 1.1em;
    }

    .seminar_day {
      width: 100%;
    }
    .seminar_day .thead {
      display: none;
    }
    .seminar_day tr {
      width: 100%;
    }
    .seminar_day td {
      display: block;
      text-align: right;
      width: 100%;
    }
    .seminar_day td:first-child {
      background: #1b1464;
      color: #fff;
      font-weight: bold;
      text-align: center;
    }
    .seminar_day td:before {
      content: attr(data-label);
      float: left;
      font-weight: bold;
      margin-right: 10px;
    }

    .seminar_day2 {
      width: 100%;
    }
    .seminar_day2 .thead {
      display: none;
    }
    .seminar_day2 tr {
      width: 100%;
    }
    .seminar_day2 td {
      display: block;
      text-align: right;
      width: 94%;
    }
    .seminar_day2 td:first-child {
      background: #1b1464;
      color: #fff;
      font-weight: bold;
      text-align: center;
    }
    .seminar_day2 td:before {
      content: attr(data-label);
      float: left;
      font-weight: bold;
      margin-right: 10px;
    }

    .foam_header_left img{
      max-width: 310px;
      width: 100%;
    }
    
    .foam_header_center img{
      width: 100%;
      padding: 0 0px 0 0px;
    }

    .seminar_foam_bg{
      width: 100%;
      background: linear-gradient(135deg,#3cc8c8, #29abe2);
    }

    .seminar_foam{
      padding: 10px;
      margin-bottom: 40px;
    }


    .seminar_bg_sc001_5 img{
      margin-bottom: 0px;
    }


    .seminar_bg_1024 img{
      vertical-align:top;
    }

    .seminar_foam_title p{
      padding: 0.5rem 1rem;
      color: #fff;
      font-size: 1.3em;
      font-weight: bold;
      text-shadow: 1px 2px 3px #808080;
      text-align: center;
      background-image: -webkit-linear-gradient(315deg, #704308 0%, #ffce08 40%, #e1ce08 60%, #704308 100%);
      background-image: linear-gradient(135deg, #704308 0%, #ffce08 40%, #e1ce08 60%, #704308 100%);
  }

    .page_top{
      position: fixed;
      right: 0px;
      bottom: 0px;
      text-align: center;
    }
    .page_top img{
      width: 100%;
    }


    #page_top2{
      width: 80px;
      height:80px;
      position: fixed;
      right: 20px;
      bottom: 20px;
      background: #ef3f98;
      opacity: 0.8;
      border-radius: 50%;
    }
    #page_top2 a{
      position: relative;
      display: block;
      width: 80px;
      height: 80px;
      text-decoration: none;
    }
    #page_top2 a::before{
      font-family: 'Font Awesome 5 Free';
      font-weight: 900;
      content: '\f102';
      font-size: 26px;
      color: #fff;
      position: absolute;
      width: 25px;
      height: 25px;
      top: -26px;
      bottom: 0;
      right: 0;
      left: 0;
      margin: auto;
      text-align: center;
    }

    /* ハンバーガーメニュー */

  .menu-btn {
    position: fixed;
    top: 6px;
    right: 8px;
    display: flex;
    height: 35px;
    width: 40px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #2e228c;
    border-radius: 8px;
  }
  .menu-btn span,
  .menu-btn span:before,
  .menu-btn span:after {
      content: '';
      display: block;
      height: 2px;
      width: 22px;
      border-radius: 3px;
      background-color: #ffffff;
      position: absolute;
  }
  .menu-btn span:before {
      bottom: 8px;
  }
  .menu-btn span:after {
      top: 8px;
  }

  #menu-btn-check:checked ~ .menu-btn span {
      background-color: rgba(255, 255, 255, 0);
  }
  #menu-btn-check:checked ~ .menu-btn span::before {
      bottom: 0;
      transform: rotate(45deg);
  }
  #menu-btn-check:checked ~ .menu-btn span::after {
      top: 0;
      transform: rotate(-45deg);
  }
  #menu-btn-check {
      display: none;
  }
  #menu-btn-check:checked ~ .menu-content {
      left: 0;
  }

  .menu-content {
      width: 100%;
      height: 100%;
      position: fixed;
      top: 0;
      left: 100%;
      z-index: 80;
      background-color: #2ea7e0;
      transition: all 0.5s;
  }
  .menu-content ul {
      padding: 50px 20px 0;
  }
  .menu-content ul li {
      border-bottom: solid 1px #ffffff;
      list-style: none;
  }
  .menu-content ul li a {
      display: block;
      width: 100%;
      font-size: 15px;
      box-sizing: border-box;
      color:#ffffff;
      text-decoration: none;
      padding: 10px 15px 10px 0;
      position: relative;
  }
  .menu-content ul li a::before {
      content: "";
      width: 7px;
      height: 7px;
      border-top: solid 2px #ffffff;
      border-right: solid 2px #ffffff;
      transform: rotate(45deg);
      position: absolute;
      right: 11px;
      top: 16px;
  }

  .header_right{
    margin-right: 30px;
    }

    .header_area {
      width: 100%;
      margin: 0 auto;
      background-color: #FFF;
      min-height: 0px;
    }

    .top_menu_button{
      display: block;
      padding: 0px 20px 0 20px;
    }

    .top_menu_button img{
      width: 100%;
      padding-bottom: 20px;
    }

    .top_main_contents{
      display: block;
    }

    #top_main{
      width: 100%;
      text-align: center;
      padding: 0 5px 0 5px;
    }
    
    #side{
      width: 100%;
      margin-left: 0px;
      padding: 0 5px 0 5px;
    }

    .contents_footer{
      width: 100%;
      margin: 0 auto;
      display: block;
      justify-content: space-around;
    }

    .footer_list ul{
      padding: 0px 0 0 0;
    }

    .footer_list p{
      background-color: #2e228c;
      border-radius: 8px;
      color: #fff;
      padding: 10px;
      margin: 0 5px 0 5px;
    }
    
    .footer_list i{
      padding: 0 10px 0 0;
      color:#2e228c;
    }
    
    .footer_list li{
      font-size: 1.0em;
      line-height: 2em;
      background-color: #fff;
      margin: 5px;
      border-radius: 8px;
      padding-left: 10px;
    }

    .footer_bg{
      padding: 10px 0 10px 0;
    }

    .flex{
      margin: 0px 0px 0px 0px;
      padding: 50px 0px 30px 20px;
    }

    .seminar_button_bg{
      text-align: center;
      padding: 30px;
    }

    .seminar_entry_caution_title{
      padding: 20px 0px 40px 0px;
      font-size: 1.4em;
      text-align: center;
      font-weight: 800;
      color: #ff0000;
    }

    .seminar_entry_caution_title2{
      font-size: 1.1em;
    }

    
    .box2{
      width: 100%;
      margin-top: -50px;
    }
    
    .box3{
      width: 100%;
      margin-top: -50px;
    }

    .top_100{
      padding-top: 50px;
    }
    
    .top_200{
      padding-top: 50px;
    }
    
    .top_300{
      padding-top: 0px;
    }
    
    .bottom_100{
      padding-bottom: 50px;
    }
    
    .bottom_200{
      padding-bottom: 0px;
    }

    .image-overlap {
      position: relative;
      top: -150px;
    }

    .seminar_bg_sc001_4{
      width: 100%;
      background-color: #e5faf9;
      margin-bottom: -100px;
    }

    .top_12{
      position: relative;
      top: 6px;
    }

    .top_60{
      position: relative;
      top: -30px;
    }

  }