
/*====================================================
////id common
====================================================*/
.innerBox{
	max-width: 1000px;
	margin: 0 auto;
	padding: 120px 0;
	position: relative;
	width: 94%;
	z-index: 2;
}
@media screen and (max-width: 769px) {
  .innerBox{
    padding: 60px 0;
  }
}

.pb-0 {
  padding-bottom: 0;
}
.block {display: block;}
.inb {display: inline-block;}
.relative { position: relative; z-index: 1;}
.flexBox {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}
.flexCenter {
	align-items: center;
	justify-content: center;
}
.flexStart {
	justify-content: flex-start;
}
.flexEnd {
	justify-content: flex-end;
}
.flexWrap {
	flex-wrap: wrap;
}
.flexColumn {
	flex-direction: column;
}
.flex-1 {
	flex: 1;
}
#contents section {
  position: relative;
  z-index: 1;
}
.bgBox {
  position: absolute;
  z-index: -1;
}


img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	display: inherit;
}

figure {
	position: relative;
}
figure img {
	position: relative;
}
figure.coverImg {
	overflow: hidden;
	padding-top: 55%;
	width: 100%;
}
figure.coverImg.h100 {
	padding-top: 0;
	height: 100%;
}
figure.coverImg img {
	-o-object-fit: cover;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	max-width: none;
	height: 100%;
	max-height: none;
}

.txt-left {
	text-align: left;
}
.txt-right {
	text-align: right;
}
.txt-center {
	text-align: center;
}

small, .small {
	font-size: .8em;
}
big, .big {
	font-size: 1.2em;
}
.fw-light {
	font-weight: 300;
}
.fw-normal {
	font-weight: normal;
}
.fw-bold {
	font-weight: 700;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
	margin-bottom: .8em;
	line-height: 1.5;
}
p:not(p:last-child) {
  margin-bottom: .8em;
}

.sa {
	opacity: 0;
	transition: all 1.2s ease;
}
.sa.show {
	opacity: 1;
	transform: none;
}
.sa-lr {
	transform: translate(-80px, 0);
}
.sa-rl {
	transform: translate(80px, 0);
}
.sa-up {
	transform: translate(0, 80px);
}
.sa-down {
	transform: translate(0, -80px);
}
.sa-scaleUp {
	transform: scale(.7);
}
.sa-scaleDown {
	transform: scale(1.5);
}
.sa-rotateL {
	transform: rotate(180deg);
}
.sa-rotateR {
	transform: rotate(-180deg);
}

.sa.slideShow {
	opacity: 1;
	position: relative;
	z-index: 1;
}
.sa.slideShow:before {
	background: #d9eef4;
	content: '';
	position: absolute;
		top: 0;
		left: 0;
		right: auto;
	transition: .5s ease-in-out;
	width: 0;
	height: 100%;
	z-index: 10;
}
.sa.slideShow.show:before {
	-webkit-animation: anim-slide 1.4s ease-in-out forwards;
	        animation: anim-slide 1.4s ease-in-out forwards;
	-webkit-animation-delay: .4s;
	        animation-delay: .4s;
}
@-webkit-keyframes anim-slide {
	0%   {}
	45%  { width: 100%; left: 0; right: 0;}
	70% { width: 100%; left: auto; right: 0; }
	100% { width: 0; left: auto; right: 0; }
}
@keyframes anim-slide {
	0%   {}
	45%  { width: 100%; left: 0; right: 0;}
	70% { width: 100%; left: auto; right: 0; }
	100% { width: 0; left: auto; right: 0; }
}

.sa.slideShow img,
.sa.slideShow > .box-inner {
	opacity: 0;
}
.sa.slideShow.show img ,
.sa.slideShow.show > .box-inner {
	opacity: 1;
	transition-delay: 1.1s;
}
.delay-01 {
	transition-delay: .1s;
}
.delay-02 {
	transition-delay: .2s;
}
.delay-03 {
	transition-delay: .3s;
}
.delay-04 {
	transition-delay: .4s;
}

.headBox.jp_en {
	letter-spacing: .08em;
  margin-bottom: 40px;
}
.headBox.jp_en .en {
  color: #575454;
  margin-bottom: 5px;
  padding: 5px;
  position: relative;
}
.headBox.jp_en .en:after {
  border-bottom: solid 1px #d70146;
  content: '';
  margin: auto;
  position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  width: 20px;
  height: 0;
}
.red {
  color: #d70146;
}
ul.attentionMark li {
	position: relative;
	padding-left: 1.2em;
	line-height: 1.5;
	margin: .3em 0;
}
ul.attentionMark li:before {
	content: '\203B';
	display: block;
	position: absolute;
		left: 0;
		top: 0;
}
.linkBtn {
  background: #d70146;
  border: 1px solid #d70146;
  border-radius: 100px;
  color: #fff;
  display: inline-block;
  font-size: 1.2em;
  font-weight: bold;
  line-height: 50px;
  margin: 0;
  padding: 0 1% 0 0;
  position: relative;
  text-align: center;
  width: 100%;
    max-width: 600px;
  height: 50px;
}
.linkBtn:hover {
  background: #d70146;
  filter: brightness(1.2);
}
.linkBtn:after {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
  margin: auto;
  position: absolute;
    top: 0;
    right: 20%;
    bottom: 0;
  transform: rotate(-45deg);
  width: 10px;
  height: 10px;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 1000px) {
  body {
    padding-top: 60px;
  }
  .headBox.jp_en .jp {
    font-size: 2.7rem;
  }
  .headBox.jp_en .en {
    font-size: 1.6rem;
  }
	.hidden-mob {
		display: none;
	}
}

@media screen and (max-width:500px) {
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 1000px) {
  body {
    padding-top: 100px;
  }
}
@media print, screen and (min-width: 769px) {
  .headBox.jp_en .jp {
    font-size: 3.4rem;
  }
  .headBox.jp_en .en {
    font-size: 2.0rem;
  }


}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
}

@media screen and (min-width:1280px) {
}

/*====================================================
////id mv
====================================================*/
#mv .bgBox {
  top: 0;
  right: 0;
}
#mv .bgBox img {
  -o-object-position: left;
     object-position: left;
}
#mv .innerBox {
}
#mv .headBox h1 {
  color: #d70146;
  letter-spacing: .05em;
  line-height: 1.3;
  margin: .6em 0 0;
  text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff;
}
#mv .dateBox {
  background: #d70146;
  border-radius: 20px;
  color: #fff;
  font-size: 2.6rem;
  line-height: 1.2;
  margin: 50px auto 0;
	padding: 10px;
	width: 400px;
}
#mv .dateBox big {
  font-size: 1.4em;
}
#mv .dateBox .week {
  background: rgba(255, 255, 255, .5);
  border-radius: 100%;
	display: inline-block;
  font-size: .8em;
  margin-left: .1em;
  padding: .15em;
  vertical-align: .1em;
	width: 1.4em;
	height: 1.4em;
}
#mv .dateBox .time {
	margin-top: .2em;
}
#mv .imgBox img {
  -o-object-position: top;
     object-position: top;
}

/* ////////// mobile ////////// */
@media screen and (max-width: 1080px) {
  #mv .bgBox {
    width: 90%;
    height: 130vw;
			max-height: 800px;
  }
  #mv .innerBox {
    flex-direction: column;
    justify-content: center;
  }
  #mv .headBox p {
    font-size: 5vw;
  }
  #mv .headBox h1 {
    font-size: 8.5vw;
  }
  #mv .txtBox {
    padding-bottom: 100px;
    position: relative;
    z-index: 10;
  }
  #mv .dateBox {
		border-radius: 10px;
		margin: auto;
    position: absolute;
      top: calc(100% - 30px);
      right: -1vw;
		width: 55%;
  }
	#mv .dateBox::before {
		background: #d70146;
		content: '';
		position: absolute;
			top: 0;
			left: 50%;
		width: 50vw;
		height: 100%;
		z-index: -1;
	}
	#mv .dateBox .box-inner {
		margin: auto;
		max-width: 400px;
		padding: 0 20px;
	}
  #mv .imgBox {
    margin-left: -10vw;
    width: 80%;
    height: 60vw;
      max-height: 400px;
  }
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:1080px) {
	#mv .bgBox {
		/* height: 600px; */
  }
  #mv .innerBox {
    padding-top: 80px;
  }
  #mv .txtBox {
    padding-bottom: 80px;
  }
  #mv .headBox p {
    font-size: 2.8rem;
  }
  #mv .headBox h1 {
    font-size: 5.5rem;
  }
  #mv .dateBox {
    position: absolute;
      /* bottom: -80px; */
      right: -1vw;
  }
}

@media screen and (max-width:769px) {
	#mv .txtBox {
		padding-bottom: 10vw;
	}
	#mv .dateBox {
		font-size: 2.4rem;
		padding-left: 1em;
		top: calc(100% - 5vw);
		width: 11em;
	}
	#mv .dateBox .dot {
		display: none;
	}
	#mv .dateBox .day {
		display: block;
	}
	#mv .imgBox {
    /* width: 75%; */
    /* height: 55vw; */
  }

}

@media screen and (max-width:580px) {
  #mv .dateBox {
		font-size: 4vw;
  }
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 1080px) {
  #mv .bgBox {
    width: 65%;
    height: 550px;
  }
  #mv .innerBox {
    justify-content: flex-end;
		padding-top: 70px;
    position: unset;
		min-height: 750px;
  }
  #mv .txtBox {
		width: 55%;
	}
  #mv .headBox p {
    font-size: 2.8rem;
  }
  #mv .headBox h1 {
    font-size: 5.5rem;
  }
  #mv .imgBox {
    position: absolute;
      bottom: 0;
      left: 0;
    width: 60%;
		height: 550px;
    z-index: -10;
  }
}

@media screen and (min-width:1280px) {
}

/*====================================================
////id leadCopy
====================================================*/
#leadCopy .headBox {
  color: #d70146;
  font-weight: bold;
}
#leadCopy .headBox span {
  /* background: linear-gradient(transparent 70%, #fff071 70%, #fff071 100%); */
  display: inline-block;
  margin: .2em 0;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
  #leadCopy .headBox {
    font-size: 2.0rem;
    text-align: center;
  }
}

@media screen and (max-width:500px) {
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
  #leadCopy .headBox {
    font-size: 3vw;
    text-align: center;
  }
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
}

@media screen and (min-width:1280px) {
  #leadCopy .headBox {
    font-size: 3.0rem;
  }
}

/*====================================================
////id about
====================================================*/
#about {
  background: linear-gradient(to bottom, #dae9f9, #fff6e0);
}
/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
  #about .item {
    display: block;
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
  #about .item .imgBox {
    margin-bottom: 30px;
    width: 100%;
    height: 50vw;
      max-height: 300px;
  }
}

@media screen and (max-width:500px) {
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
  #about .item {
    margin: 30px 0;
  }
  #about .item:nth-child(even) {
    flex-direction: row-reverse;
  }
  #about .item .imgBox {
    width: 40%;
  }
  #about .item .txtBox {
    font-size: 1.7rem;
    line-height: 1.8;
    padding: 20px 0;
  }
  #about .item:nth-child(odd) .txtBox {
    margin-left: 30px;
  }
  #about .item:nth-child(even) .txtBox {
    margin-right: 30px;
  }
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
}

@media screen and (min-width:1280px) {
}

/*====================================================
////id objective
====================================================*/
#objective .imgBox img {
  -o-object-position: top right;
     object-position: top right;
}
#objective .pointBox {
  background: #fff4d5;
  border: solid 10px #ffedbd;
  border-radius: 20px;
  margin-top: 30px;
  padding: 30px;
}
#objective .pointBox h3 {
  color: #3981e0;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
  #objective .itemBox {
    flex-direction: column;
  }
  #objective .imgBox {
    margin: 0 auto 30px;
    width: 80%;
      max-width: 400px;
  }
  #objective .imgBox .coverImg {
    height: auto;
    padding-top: 100%;
  }
  #objective .txtBox {
    font-size: 1.6rem;
  }
  #objective .pointBox {
    border: solid 6px #ffedbd;
    border-radius: 20px;
		font-size: 1.5rem;
    padding: 20px 15px;
  }
}

@media screen and (max-width:500px) {
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
  #objective:before {
    background: url('../img/voice_expression/bg-1.jpg') no-repeat top right / contain;
    content: '';
    margin: auto;
    opacity: .8;
    position: absolute;
      top: 0;
      right: 0;
    width: 70%;
      max-width: 1400px;
    height: 100%;
  }
  #objective .imgBox {
    width: 35%;
  }
  #objective .txtBox {
    font-size: 1.7rem;
    line-height: 1.8;
    margin-left: 30px;
  }
  #objective .pointBox li {
    font-size: 1.7rem;
  }
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
}

@media screen and (min-width:1280px) {
}

/*====================================================
////id curriculum
====================================================*/
#curriculum .txtBox li {
  margin: .2em .5em;
  padding-left: 1.3em;
  position: relative;
}
#curriculum .txtBox li:before {
  background: #94c2ff;
  border-radius: 100%;
  content: '';
  margin: auto;
  position: absolute;
    top: .1em;
    left: 0;
  width: 1em;
  height: 1em;
}
#curriculum .attentionBox {
  font-size: 1.2rem;
  margin-top: 1em;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
  #curriculum .itemBox {
    display: block;
  }
  #curriculum .imgBox {
    margin-bottom: 30px;
    width: 100%;
    height: 50vw;
      max-height: 400px;
  }
  #curriculum .txtBox {
    font-size: 1.5rem;
  }
}

@media screen and (max-width:580px) {
	#curriculum .txtBox li {
		width: 100%;
	}
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
  #curriculum .itemBox {
    flex-direction: row-reverse;
  }
  #curriculum .imgBox {
    width: 45%;
  }
  #curriculum .txtBox {
    font-size: 1.8rem;
    padding: 30px 30px 30px 0;
  }
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
  #curriculum .itemBox {
    flex-direction: column;
  }
  #curriculum .imgBox {
    width: 100%;
    height: 400px;
  }
}

@media screen and (min-width:1280px) {
}

/*====================================================
////id instructor
====================================================*/
#instructor {
  background: linear-gradient(to bottom, #dae9f9, #fff6e0);
}
#instructor h3 {
  line-height: 1.2;
}
#instructor h3 .en {
  font-size: .6em;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
  #instructor .itemBox {
    flex-direction: column;
  }
  #instructor .imgBox {
    margin: 0 auto 30px;
    width: 60%;
  }
  #instructor .imgBox .coverImg {
    height: auto;
    padding-top: 100%;
  }
}

@media screen and (max-width:500px) {
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
  #instructor .itemBox {
  }
  #instructor .imgBox {
    width: 40%;
  }
  #instructor .txtBox {
    padding: 20px 0 20px 20px;
  }
  #instructor h3 {
    font-size: 2.8rem;
  }
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
}

@media screen and (min-width:1280px) {
}

/*====================================================
////id detail
====================================================*/
#detail {
  background: #fff6e0;
}
#detail dt {
  background: #f9ab1f;
  color: #fff;
  font-weight: bold;
}
#detail dd {
	padding-top: .2em;
}
#detail dd big {
	display: inline-block;
	font-size: 1.4em;
	line-height: 1.4;
	margin-top: -.2em;
	padding: 0 .1em;
}
#detail #date .week {
	margin-left: -.4em;
}
#detail .linkBox {
  margin: 40px 0;
}
#detail .contact {
	margin-top: 80px;
}
#detail .contact h3 {
  padding: 30px 0 1em;
}
#detail .contact p {
  line-height: 1.2;
}
#detail .contact .tel {
  font-size: 1.3em;
}
#detail .contact .tel img {
  margin-right: .5em;
  vertical-align: text-bottom;
  width: 1.2em;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
  #detail dl {
		flex-direction: column;
    align-items: flex-start;
    font-size: 1.7rem;
    margin: 10px 0;
  }
  #detail dt {
    margin-right: 15px;
    text-align: center;
    padding: .1em;
    width: 5em;
  }
	#detail dd {
		padding: 10px 0 0 15px;
	}
  #detail .contact {
    font-size: 2.0rem;
  }
  #detail .linkBtn {
    font-size: 2.0rem;
    height: 60px;
    padding-top: 5px;
  }
	#detail .linkBox p {
		font-size: 2.0rem;
	}

}

@media screen and (max-width:480px) {
	#detail dl {
		font-size: 4.35vw;
	}
	/* #detail #date .year {
		display: block;
	}
	#detail #date .dot {
		display: none;
	} */
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
  #detail dl {
    align-items: flex-start;
    font-size: 1.9rem;
    margin: 10px 0;
  }
  #detail dt {
    margin-right: 15px;
    text-align: center;
    padding: .1em;
    width: 5em;
  }
  #detail .linkBtn {
    font-size: 2.4rem;
    height: 80px;
    padding-top: 15px;
  }
  #detail .contact {
    font-size: 2.4rem;
  }
	#detail .linkBox p {
		font-size: 2.4rem;
	}
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
}

@media screen and (min-width:1280px) {
}

/*====================================================
////id
====================================================*/

/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
}

@media screen and (max-width:500px) {
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
}

@media screen and (min-width:1280px) {
}
}
