/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/










/*見出し*/
.border{
	position: relative;
	text-align: center;
	font-size: 42px;
}

.border:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 0;
	border-bottom: solid 1.5px #00326d;
	transform: translateX(-50%);
	animation: border_anim 3s linear forwards;
}

@keyframes border_anim {
	0%{
		width: 0%;
	}
	100%{
		width: 80%;
	}
}

/*セクション区切り*/

.container {
  position: relative;
  background: #d3f0fe;
  height: 30vh;
}

.wave {
  position: absolute;
  height: 58px;
  width: 100%;
  background: #d3f0fe;
  bottom: 0;
}

.wave::before, .wave::after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 100% 50%;
}

.wave::before {
  width: 55%;
  height: 109%;
  background-color: #fff;
  right: -1.5%;
  top: 60%;
}
.wave::after {
  width: 55%;
  height: 100%;
  background-color: #d3f0fe;
  left: -1.5%;
  top: 40%;
}



.container2 {
  position: relative;
  background: #ffffff;
  height: 30vh;
}

.wave2 {
  position: absolute;
  height: 58px;
  width: 100%;
  background: #ffffff;
  bottom: 0;
}

.wave2::before, .wave2::after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 100% 50%;
}

.wave2::before {
  width: 55%;
  height: 109%;
  background-color: #d3f0fe;
  right: -1.5%;
  top: 60%;
}
.wave2::after {
  width: 55%;
  height: 100%;
  background-color: #ffffff;
  left: -1.5%;
  top: 40%;
}






/*フォント*/

body {
font-family: yu-gothic-pr6n, sans-serif;
}


h1 {
font-family:zen-maru-gothic, sans-serif;
  font-size:38px;
}

h2 {
font-family: zen-maru-gothic, sans-serif;
}

h3 {
font-family: zen-maru-gothic, sans-serif;

}

h4 {
font-family:zen-maru-gothic, sans-serif;
  font-size:24px;
}

p {
font-family: yu-gothic-pr6n, sans-serif;
}

rt {
  font-size: 0.3em;
}

ul{
  list-style:none;}

ul li {
  font-family: yu-gothic-pr6n, sans-serif;
  position: relative;
      line-height: 2.5;
  font-size: 20px;
}

a {
  font-family: yu-gothic-pr6n, sans-serif;
  color:102d7b;
}

a {
  font-family: yu-gothic-pr6n, sans-serif;
  color:102d7b;
}

a:hover, a:focus {
  font-family: yu-gothic-pr6n, sans-serif;
  color:ffff;
}

a:active {
  font-family: yu-gothic-pr6n, sans-serif;
  color:102d7b;
}

a.button:disabled {
  background-color: ;
}


.heading07 {
	position: relative;
	padding-top: 50px;
	padding-left: 30px;
	font-size: 26px;
}

.heading07 span {
	position: relative;
	z-index: 2;
}

.heading07::before {
	content: attr(data-en);
	position: absolute;
	transform: rotate(-5deg);
	top: 20px;
	left: 0;
	color: rgba(0,50,109,0.1);
	font-size: 70px;
	font-weight: 400;
	font-family: luxus-brut, cursive;
	font-style: italic;
}


/*アニメーション*/

.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);
  }
}

.fadeUp2{
animation-name:fadeUpAnime;
animation-duration:3s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

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


/*リスト*/

a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
a::after {
  position: absolute;
  bottom: 0.5px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #102d7b;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}
a:hover::after {
  bottom: 0px;
  opacity: 1;
  visibility: visible;
}
}




/*画像*/

.images_item04 {
  position: relative;
}

.images_item04::before {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#999 30%, rgba(0, 0, 0, 0) 31%), radial-gradient(#999 30%, rgba(0, 0, 0, 0) 31%);
  background-size: 6px 6px;
  background-position: 0 0, 3px 3px;
  z-index: -1;
}



/*タイトル背景*/

#home {
  clip-path: url(#cache);
}

#red {
  fill: none;
  opacity: 0.15;
  stroke: #ffffff;
  stroke-width: 12;
  stroke-miterlimit:10;
  animation: show 4s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out; 
}

#blue {
  fill: none;
  opacity: 0.15;
  stroke: #ffffff;
  stroke-width: 12;
  stroke-miterlimit:10;
  animation: show 4s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

#light-blue {
  fill: none;
  opacity: 0.15;
  stroke: #ffffff;
  stroke-width: 6;
  stroke-miterlimit:10;
  stroke-dasharray: 200;
  stroke-dashoffset: 800;
  animation: draw 4s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;    
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
 }
    }

@keyframes show {
  0% {
    opacity: 0.15;
 }
  50% {
    opacity: 0.2;
 }
  100% {
    opacity: 0.15;
 }
    }


/*波うつセクション区切り上向き*/

.shapedividers_com-2576{
overflow:hidden;
position:relative;
}
.shapedividers_com-2576::before{
content:'';
font-family:'shape divider from ShapeDividers.com';
position: absolute;
bottom: -1px;
left: -1px;
right: -1px;
top: -1px;
z-index: 3;
pointer-events: none;
background-repeat: no-repeat; 
background-size: 100% 59px;
background-position: 50% 0%;    
background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23d3f0fe"/><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" opacity=".5" fill="%23d3f0fe"/><path d="M0 1.85c2.56-.83 7.68-.3 11.79-.42 4.1-.12 6.86-.61 9.58-.28 2.73.33 5.61 1.17 8.61 1 3-.19 4.73-.82 5.3-.84V.1H0z" opacity=".5" fill="%23d3f0fe"/></svg>'); 
}

@media (min-width:768px){
.shapedividers_com-2576::before{
background-size: 100% 90px;
background-position: 50% 0%;   
}  
}
 
@media (min-width:1025px){
.shapedividers_com-2576::before{ 
bottom: -0.1vw;
left: -0.1vw;
right: -0.1vw;
top: -0.1vw; 
background-size: 115% 90px;
background-position: 50% 0%;  
}
}
@media (min-width:2100px){
.shapedividers_com-2576::before{
background-size: 115% calc(2vw + 90px);
}
}

/*波うつセクション区切り下向き*/

.shapedividers_com-5302{
overflow:hidden;
position:relative;
}
.shapedividers_com-5302::before{
content:'';
font-family:'shape divider from ShapeDividers.com';
position: absolute;
bottom: -1px;
left: -1px;
right: -1px;
top: -1px;
z-index: 3;
pointer-events: none;
background-repeat: no-repeat; 
background-size: 100% 59px;
background-position: 50% 100%;    
background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.67c-3.07-.55-9.27.41-16.15 0-6.87-.4-13.74-.58-19.13.1v.4h35.28z" fill="%23d3f0fe"/><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" opacity=".5" fill="%23d3f0fe"/><path d="M35.28.31c-2.57.84-7.68.3-11.8.43-4.1.12-6.85.61-9.57.28C11.18.69 8.3-.16 5.3.02 2.3.22.57.85 0 .87v1.2h35.28z" opacity=".5" fill="%23d3f0fe"/></svg>'); 
}

@media (min-width:768px){
.shapedividers_com-5302::before{
background-size: 100% 90px;
background-position: 50% 100%;   
}  
}
 
@media (min-width:1025px){
.shapedividers_com-5302::before{ 
bottom: -0.1vw;
left: -0.1vw;
right: -0.1vw;
top: -0.1vw; 
background-size: 115% 90px;
background-position: 50% 100%;  
}
}
@media (min-width:2100px){
.shapedividers_com-5302::before{
background-size: 115% calc(2vw + 90px);
}
}
 


/*タイトル背景画像*/


.bg_test {
    background-image: url(https://9209267.fs1.hubspotusercontent-na1.net/hubfs/9209267/%E3%82%A2%E3%82%BB%E3%83%83%E3%83%88%201-1.png);    /* 背景画像指定 */
  background-size: 50%;
   background-position: right bottom; 

}

.bg_test2 {
    background-image: url(https://9209267.fs1.hubspotusercontent-na1.net/hubfs/9209267/%E3%82%A2%E3%82%BB%E3%83%83%E3%83%88%201-2.png);    /* 背景画像指定 */
  background-size: 90%;
   background-position: left top; 

}


/*リスト*/
ul.title {
  list-style-type: none;
  color: #fff;
    font-size:20px;
  padding:80px;
  font-weight:500;
  
    display: table;
  text-align: left;

  margin-left: auto;
  margin-right: auto;
  list-style: none;
  padding: 0;



}


.inner {
  max-width: 1000px;
  width: 97%;
  margin: 0 auto;
}

/*セミナー内容リスト*/
ul.seminar {
  list-style-type: none;
  line-height: 1;
    color: #fff;
    font-size:12px;
  padding:10px;
  font-weight:500;
  
    display: table;
  text-align: left;

  margin-left: auto;
  margin-right: auto;
  list-style: none;
  padding: 0;
}


li.seminar {
  position: relative;
  line-height: 1;
}
li.seminar::after {
  content: '';
  display: block;
  position: absolute;
  top: .3em;
  left: -1.5em;
  width: 10px;
  height: 5px;
  border-left: 3px solid #9c9c9c;
  border-bottom: 3px solid #9c9c9c;
  transform: rotate(-45deg);
}


/*タイムスケジュール*/
ul.time {
  list-style-type: none;
  line-height: 0.8;
    color: #00326d;
    font-size:10px;
  padding:10px;
  font-weight:500;
  
    display: table;
  text-align: left;

  margin-left: auto;
  margin-right: auto;
  list-style: none;
  padding: 0;
}

li.time{
  font-size:20px;
}

p.time{
font-family: zen-maru-gothic, sans-serif;
  font-size:20px;
}