@charset "utf-8";
@import "https://use.fontawesome.com/releases/v5.13.0/css/all.css";
/* CSS Document */
/* -------------------------------------------- Basic Setting */	
html { scroll-behavior: smooth;}

body{
	font: 14px/1.6 "Hiragino Kaku Gothic Pro",Osaka,"メイリオ","ＭＳ Ｐゴシック","MS PGothic",Verdana,Arial,sans-serif;
	margin:0;
	color:#313131;
	width: 100%;
	max-width: 100%;
	background-color:#ffffff;
}
/*--
a{
    color:blue;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
a:visited{
    color:blue;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
a:hover {
    color: #F5A862;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
--*/

@media screen and (min-width: 768px){	
  .br-pc { display:block; }
  .br-sp { display:none; }
}
@media screen and (max-width: 767px){	
  .br-pc { display:none; }
  .br-sp { display:block; }
}



/* -------------------------------------------- Layout共通 */
.container {
	width:900px;
	margin:0 auto;
}

@media screen and (max-width: 767px){
	.container {
		width:96%;
	}
}



/* -------------------------------------------- Header */
.header-box {
  height: 80px;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color:rgba(255,255,255,0.7);
  z-index: 100;
  display: flex;
  justify-content: space-between;
}

header .logo {
	width: 40%;
	height: 80px;
	display:table-cell;
	text-align: left;
	line-height: 80px;
	font-size: 20px;
	font-weight: 600;
	padding-left:40px;
	background: #ffffff;
}
header .logo img {
	height:90%;
	vertical-align: middle;
	float:left;
	margin-right:10px;
	padding-top:10px;
}
header .logo h1 {
	display:block;
	margin-left:10px;
	color:#999999;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	font-weight:bold;
	font-size:1rem;
}
header nav.pc-menu {
  width: 60%;
}

header nav.pc-menu ul {
  width: 100%;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

header nav.pc-menu ul li {
  width: 33%;
}

header nav.pc-menu ul li a {
  display: block;
  width: 100%;
  text-align: center;
	transition:.5s;
	color:#444444;
	font-weight:bold;
	position:relative;
	border-left:solid 1px #eeeeee;
	height:80px;
	padding-top:20px;
}

header nav.pc-menu ul li a::after{
	position:absolute;
	left:0;
	content:'';
	width:100%;
	height:4px;
	background:#e74543;
	bottom:-1px;
	transform:scale(0,1);
	transform-origin:left top;
	transition:transform 0.3s;
}

header nav.pc-menu ul li a:hover::after {
	transform:scale(1,1);
}

header nav.pc-menu ul li a span {
	display:block;
	color:#999999;
	font-size:.6rem;
	font-weight:normal;
	line-height:10px;	
}

.sm {
  display: none;
}

a.anchor{
    display: block;
    padding-top: 100px;
    margin-top: -100px;
}

/**********************************　
以下、ハンバーガーメニューの設定　
************************************/

@media screen and (max-width: 767px){
  header nav.pc-menu {
    display: none;
  }
	header .logo {
		width: 80%;	
		padding-left:20px;
	}
	header .logo h1 {
		font-size:.8rem;
	}

  #hamburger {
    background-color: transparent;
    position: relative;
    cursor: pointer;
    margin: 10px 0 0 auto;
    height: 60px;
    width: 60px;
	  z-index:2000;
  }

  #hamburger .icon span {
    position: absolute;
    left: 15px;
    width: 30px;
    height: 4px;
    background-color: #eeeeee;
    border-radius: 8px;
    transition: ease 0.75s;
  }

  .icon span:nth-of-type(1) {
    top: 16px;
  }
  .icon span:nth-of-type(2) {
    top: 28px;
  }
  .icon span:nth-of-type(3) {
    bottom: 16px;
  }

  .close span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 28px;
  }

  .close span:nth-of-type(2) {
    opacity: 0;
  }

  .close span:nth-of-type(3) {
      transform: rotate(-45deg);
      top: 28px;
  }

  .sm {
      top: 80px;
      left: 0px;
      position: absolute;
      z-index: 10;
      width: 100%;
      background-color: rgba(34, 49, 52, 0.5);
  }
  .sm ul {
	  width:100%;
	  display:flex;
    flex-direction: column;
  }
	.sm ul li {
		width:100%;
		text-align: center; 
		 border-top: solid 0.5px rgba(255, 255, 255, 0.2);
		padding-top:30px;
		padding-bottom:30px;
	}

  .sm ul a {    
	  color:#ffffff;   
  }
}
/* -------------------------------------------- Hero */
.hero {
	width: 100%;
	background-image:url("../i/hero_pc02.jpg"); 
	background-repeat:no-repeat;
	background-position:top center;
	background-size:cover;
	height:500px;
	padding-top: 56.3%;
}
.hero::before {
	content: '';
	display: block;
	padding-top:30%;
}

@media screen and (max-width: 767px){
	.hero {
		background-image:url("../i/hero_sp02.jpg"); 
		height:900px;
	}
	.hero::before {
		padding-top:55%;
	}
}
/* -------------------------------------------- Announce */
.Announce {
	max-width:100%;
	width: 100%;
	margin: 0 auto;
	overflow:hidden;
	text-align:center;
	padding:40px;
}

.preNews {
	text-align:center;
	display:inline-block;
	margin:0 auto;
	padding:10px 60px;
	transform:skewX(-15deg);
	border-left:solid 4px #333333;
	border-right:solid 4px #333333;
}

.preNews h2 {
	color:#333333;
	font-size: 1rem;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 800;
	font-style: normal;	
	transform:skewX(15deg);
	line-height:140%;
}

.preNews h2 span {
	font-size:2.5rem;
}

.soldOut {
	text-align:center;
	display:inline-block;
	margin:0 auto 50px;
	padding:10px 60px;
	border-radius: 10px;
	
	background:linear-gradient(to right,#eeeeee, #999999);
	border: 3px solid #333333;
	box-shadow: 0 5px 0 #333333;
}

.soldOut h2 {
	color:#333333;
	font-size: 2rem;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 800;
	font-style: normal;	
	line-height:140%;
	line-height:100%;
}

.soldOut h2 span {
	font-size:1rem;
}

p.rapidInfo {
	text-align:center;
	margin:0 auto 40px;color:#333333;
	font-size: 1rem;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 800;
	font-style: normal;	
}

.floating {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background-color: rgba(231, 69, 67, 0.8);
	z-index:1000;
	padding:20px;
	border-radius:60px;
	text-align:center;
}
.floating a {
	color:#ffffff;
	transition:.5s;	
}
.floating a:hover {
	opacity:.5;
}

.floating .fa-envelope-open {
	font-size:2.5rem;
}

@media screen and (max-width: 767px){
	.Announce {
		padding:20px;
	}
	.preNews {
		padding:10px 30px;
	}
}

a.applyBtn {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	position: relative;
	width: 600px;
	margin: 0 auto 20px;
	padding: 2rem 4rem;
	font-weight: bold;
	border-radius: 10px;
	color: #ffffff;
	font-size:1.8rem;
	line-height:110%;
	background:linear-gradient(to right,#ec8336, #db6554);
	border: 3px solid #333333;
	box-shadow: 0 5px 0 #333333;
	transition: 0.3s ease-in-out;
}
a.applyBtn span {
	font-size:1rem;
}

a.applyBtn::after {
     content: '';
    display: inline-block;
    border-style: solid;
    border-width: 8px 0 8px 8px;
    border-color: transparent transparent transparent #fff;
    display: inline-block;
    width: 0;
    height: 0;
    /* 矢印アイコンの位置を設定 */
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%); /* translateYのみ */
}


a.applyBtn:hover {
	box-shadow: none;
	margin: 5px auto 15px;
}


/*
a.applyBtn:after {
	position:absolute;
	top:50%;
	left: 3px;
	width: 4px;
	height: 4px;
	border-top: 2px solid #7a0;
	border-right: 2px solid #7a0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);	
}

a.applyBtn:hover {
	box-shadow: none;
	transform: translate(5px, 5px);
	color: #ffffff;
}
*/

@media screen and (max-width: 767px){
	a.applyBtn {
		width:88%;
		padding: 1rem 2.5rem;
	}

}

/* -------------------------------------------- Thesis */
.thesis {
	max-width:100%;
	width: 100%;
	margin: 0 auto;
	overflow:hidden;
	text-align:center;
	background-color:#eae9d3;
}

.thesisTitle {	
	margin:20px auto;		
	padding:0 0 20px;
}
.thesisTitle h2 {
	font-size:2rem;
	color:#000000;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 700;
	font-style: normal;
	margin-bottom:40px;
}

.thesisTitle h2 span {
	color:#fe6e03;
}

.thesisTitle h5 {
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size:1.2rem;
	color:#333333;
}

.thesis h4 {
	font-family: "Zen Maru Gothic", sans-serif;
	font-size:1.4rem;
	font-weight:bold;
}

.thesis p {
	font-family: "Zen Maru Gothic", sans-serif;
	font-size:1.2rem;
	line-height:160%;
	margin-top:10px;
}
.thesis p a {
	display:inline-block;
	font-size:1.2rem;
	transition:.5s;
	color:#3975a0;
	font-weight:900;
	border:solid 2px #3975a0;
	padding:2px 10px;
	border-radius:10px;
}
.thesis p a:hover {
	color:#eeebcc;
	background-color:#3975a0;
}

.miraiBunner {
	margin:10px auto 40px;
	width:468px;
}

.miraiBunner a {
	position:relative;
	display:block;
}

.miraiBunner a img {
	width:100%;
	transition:.5s;
	border:solid 2px #dddddd;
}

.miraiBunner a::after {
	content:"";
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:#f88e04;
	opacity:0;
	transition:.5s;
}
.miraiBunner a:hover::after {
	opacity:.5;
}
@media screen and (max-width: 767px){
	.miraiBunner {
		width:90%;
	}
}

@media screen and (max-width: 767px){
	.thesisTitle {
		width:75%;
		padding:0 10px 20px;
	}
	.thesis p {
		font-size:.9rem;
		width:90%;
		margin:0 auto 20px;
	}
	.thesis p a {
		margin-top:3px;
		font-size:.9rem;
		padding:0 5px;
	}
	.thesis h4 {
		font-size:1rem;
	}
	.thesisTitle h2 {
		font-size:1.2rem;
	}
	.thesisTitle h5 {
		font-size:.8rem;
	}
}
@media screen and (min-width: 1200px){
	.thesisTitle {
	}
	.thesisTitle h2 {
		font-size:2.5rem;
	}
	.thesisTitle h5 {
		font-size:1.5rem;
	}
	.thesis h4 {
		font-size:2vw;
	}
	.thesis p {
		font-size:1.5vw;
	}
}
/* -------------------------------------------- JH */
.jhBack {
	max-width:100%;
	width: 100%;
	margin: 0 auto;
	overflow:hidden;
	text-align:center;
	background-color:#8fd8e4;
}

.jh {
	width:86%;
	padding:40px;
	background:url("../i/jh_back.jpg")top left repeat;
	box-shadow: 7px 10px #6aa0a9;
	margin:40px auto 40px;	
}
@media screen and (max-width: 767px) {
	.jh {
		width:94%;
	}
}

.jhTitle {
	margin:0 auto 40px;
	padding:10px 100px;
	display:inline-block;
	background-color:#6db0bb;
	box-shadow: 7px 10px #8d9ea1;	
	transform:skewX(-15deg);
	position:relative;
}
.jhTitle:before, .jhTitle:after {
  content: '';
  position: absolute;
  top: 0;
  display:block;
  width: 15px;
  height: 110px;
  background-color:#6db0bb;
	box-shadow: 7px 10px #8d9ea1;
}

.jhTitle:before {
  left:-30px;
	
}
.jhTitle:after {
  right: -30px;
}

.jhTitle h2 {
	transform:skewX(15deg);
	font-size:2rem;
	color:#ffffff;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 700;
	font-style: normal;
}

.jhTitle h5 {
	position: relative;
	display: inline-block;
	transform:skewX(15deg);
	font-size:1.5rem;
	color:#ffffff;
	padding: 0 55px;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.jhTitle h5:before, .jhTitle h5:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 2px;
  background-color: #ffffff;
}

.jhTitle h5:before {
  left:0;
}
.jhTitle h5:after {
  right: 0;
}
@media screen and (max-width: 767px) {
	.jhTitle {
		padding:10px 20px;
	}
	.jhTitle:before, .jhTitle:after {
		height:82px;
	}
	.jhTitle h2 {
		font-size:1.5rem;
	}
	.jhTitle h5 {
		font-size:.9rem;
	}
}
@media screen and (min-width: 1200px) {
	.jhTitle h2 {
		font-size:3rem;
	}
	.jhTitle h5 {
		font-size:2rem;
	}
	.jhTitle:before, .jhTitle:after {
		height:150px;
	}
}


dl.jhFirstCo {
	width:100%;
	display:flex;
	margin:0 auto 20px;
	justify-content: space-between;
}
dl.jhFirstCo dt {
	width:38%;
}

dl.jhFirstCo dt img {
	width:100%;
	box-shadow: 7px 10px #8d9ea1;
}
dl.jhFirstCo dd {
	width:58%;
	font-size:1.4vw;
	text-align:left;
	
}
dl.jhFirstCo dd h3 {
    text-decoration: none;
    padding: 0.5rem;
    background: #f7f7f7;
    border-left: solid 6px #6db0bb;
	font-weight:bold;
	font-size:1.8vw;
    color: #33818d;
    box-shadow: 7px 10px #8d9ea1;
	margin-bottom:20px;
}
@media screen and (max-width: 767px) {
	dl.jhFirstCo {
		flex-direction: column;
	}
	dl.jhFirstCo dt {
		width:100%;
		margin-bottom:20px;
	}
	dl.jhFirstCo dd {
		width:100%;
		font-size:1rem;
	}
	dl.jhFirstCo dd h3 {
		font-size:1rem;
		text-align:center;
	}
}
.jhSecondCo {
	display:flex;
	width:100%;
	justify-content: space-between;
	margin:0 auto 40px;
}
.jhSecondCo dl {
	width:30%;
}
.jhSecondCo dl dt {
	margin-bottom:5px;
}

.advTag {
	position: relative;
	display: inline-block;
	margin: 1.5em 0;
	padding: 7px 10px;
	width: 100%;
	color: #ffffff;
	font-size: 1.6vw;
	background: #6db0bb;
	box-shadow: 7px 10px #8d9ea1;
}
.advTag:before {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -15px;
	border: 15px solid transparent;
	border-top: 15px solid #6db0bb;
}

.advTag p {
	margin: 0;
	padding: 0;
}

.jhSecondCo dl dd {
	
}
.jhSecondCo dl dd img {
	width:100%;
	box-shadow: 7px 10px #8d9ea1;
}
@media screen and (max-width: 767px){
	.jhSecondCo {
		flex-direction:column;
	}
	.jhSecondCo dl {
		width:100%;
		margin-bottom:20px;
	}
	.advTag {
		font-size:1.2rem;
	}
}
.jhThirdCo {
	width:100%;
	margin:0 auto 20px;
}
.jhThirdCo p {
	font-size:1.5vw;
	margin:0 auto 20px;
}

.jhMovieTitle {
	margin:0 auto 40px;
	padding:10px 100px;
	display:inline-block;
	background-color:#6db0bb;
	box-shadow: 7px 10px #8d9ea1;	
	transform:skewX(-15deg);
	position:relative;
}
.jhMovieTitle h3 {
	transform:skewX(15deg);
	font-size:2.5vw;
	color:#ffffff;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 700;
	font-style: normal;
}
@media screen and (max-width: 767px) {
	.jhMovieTitle {
		padding:10px 20px;
		margin:0 auto 20px;
	}
	.jhMovieTitle h3 {
		font-size:1.3rem;
	}
	.jhThirdCo p {
		text-align:left;
		font-size:1rem;
	}
}

.pv {
	max-width:100%;
	width: 100%;
	margin: 0 auto 40px;
	padding:10px;
	overflow:hidden;
	text-align:center;
	background:#ffffff;
}

.movieFrame {
	margin:0 auto;
     position: relative;
     padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
	height:466px;
	overflow: hidden;	
} 
.movieFrame iframe {
     position: absolute;
     top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
     width: 830px;
	height:466px;
	box-shadow: 7px 10px #8d9ea1;
	
}
@media screen and (min-width: 1100px){
	.movieFrame {
		 padding-bottom: 31%; /*アスペクト比 16:9の場合の縦幅*/
	}
	.movieFrame iframe {
	}
}

@media screen and (max-width: 767px){
	.movieFrame {
		width:96%;
		height:96%;
	}
	
	.movieFrame iframe {
		width:100%;
		height:100%;
	}
}
/* -------------------------------------------- EL */
.elBack {
	max-width:100%;
	width: 100%;
	margin: 0 auto 40px;
	overflow:hidden;
	text-align:center;
	background-color:#fdfad8;
}

.el {
	width:86%;
	padding:40px;
	background:url("../i/el_back.jpg")top left repeat;
	box-shadow: 7px 10px #b0b093;
	margin:40px auto 40px;	
}
@media screen and (max-width: 767px) {
	.el {
		width:94%;
	}
}


.elTitle {
	margin:0 auto 40px;
	padding:10px 100px;
	display:inline-block;
	background-color:#d0cc6c;
	box-shadow: 7px 10px #b0b093;	
	transform:skewX(-15deg);
	position:relative;
}
.elTitle:before, .elTitle:after {
	content: '';
	position: absolute;
	top: 0;
	display:block;
	width: 15px;
	height: 110px;
	background-color:#d0cc6c;
	box-shadow: 7px 10px #b0b093;
}

.elTitle:before {
  left:-30px;
	
}
.elTitle:after {
  right: -30px;
}

.elTitle h2 {
	transform:skewX(15deg);
	font-size:2rem;
	color:#ffffff;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 700;
	font-style: normal;
}

.elTitle h5 {
	position: relative;
	display: inline-block;
	transform:skewX(15deg);
	font-size:1.5rem;
	color:#ffffff;
	padding: 0 55px;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.elTitle h5:before, .elTitle h5:after {
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 45px;
	height: 2px;
	background-color: #ffffff;
}

.elTitle h5:before {
  left:0;
}
.elTitle h5:after {
  right: 0;
}
@media screen and (max-width: 767px) {
	.elTitle {
		padding:10px 20px;
	}
	.elTitle:before, .elTitle:after {
		height:82px;
	}
	.elTitle h2 {
		font-size:1.3rem;
	}
	.elTitle h5 {
		font-size:.9rem;
	}
}
@media screen and (min-width: 1200px) {
	.elTitle h2 {
		font-size:3rem;
	}
	.elTitle h5 {
		font-size:2rem;
	}
	.elTitle:before, .elTitle:after {
		height:150px;
	}
}

.elTitleSub {
	margin:0 auto 40px;
	padding:10px 100px;
	display:inline-block;
	background-color:#d0cc6c;
	box-shadow: 7px 10px #b0b093;		
	transform:skewX(-15deg);
	position:relative;
}
.elTitleSub:before, .elTitleSub:after {
  content: '';
  position: absolute;
  top: 0;
  display:block;
  width: 15px;
	height:72px;
	background-color:#d0cc6c;
	box-shadow: 7px 10px #b0b093;	
}

.elTitleSub:before {
  left:-30px;
	
}
.elTitleSub:after {
  right: -30px;
}

.elTitleSub h2 {
	transform:skewX(15deg);
	font-size:2rem;
	color:#ffffff;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 700;
	font-style: normal;
}
@media screen and (max-width: 767px) {
	.elTitleSub {
		padding:10px 20px;
	}
	.elTitleSub:before, .elTitleSub:after {
		height:57px;
	}
	.elTitleSub h2 {
		font-size:1.5rem;
	}
}
@media screen and (min-width: 1200px) {
	.elTitleSub h2 {
		font-size:3rem;
	}
	.elTitleSub:before, .elTitleSub:after {
		height:98px;
	}
}

dl.elFirstCo {
	width:100%;
	display:flex;
	margin:0 auto 40px;
	justify-content: space-between;
}
dl.elFirstCo dt {
	width:38%;
}

dl.elFirstCo dt img {
	width:100%;
	box-shadow: 7px 10px #b0b093;
}
dl.elFirstCo dd {
	width:58%;
	font-size:1.4vw;
	text-align:left;
	
}
dl.elFirstCo dd h3 {
    text-decoration: none;
    padding: 0.5rem;
    background: #f7f7f7;
    border-left: solid 6px #e1d902;
	font-weight:bold;
	font-size:1.8vw;
    color: #aea801;
    box-shadow: 7px 10px #b0b093;
	margin-bottom:20px;
}
@media screen and (max-width: 767px){
	dl.elFirstCo {
		flex-direction:column;
		margin:0 auto 20px;
	}
	dl.elFirstCo dt {
		width:100%;
		margin-bottom:20px;
	}
	dl.elFirstCo dd {
		width:100%;
		font-size:1rem;
	}
	dl.elFirstCo dd h3 {
		font-size:1rem;
		text-align:center;
	}
}


.elSecondCo {
	width:100%;
	display:flex;
	flex-wrap:wrap;
	margin:0 auto 20px;
	justify-content: space-around;
}
.elSecondCo dl {
	width:40%;
	margin-bottom:30px;
}

.elSecondCo dl dt {
	text-align:left;
	margin-bottom:12px;
	font-weight:normal;
	font-size:1.2vw;
}

.elSecondCo dl dt h3 {
	font-weight:bold;
	font-size:1.4vw;
	color:#333333;
}

.elSecondCo dl dt h3 span {
	display:inline-block;
	padding:2px 9px;
	margin:0 9px 0 0;
	font-size:1vw;
	color:#ffffff;
	background-color:#aea801;
	border-radius:50%;
	position:relative;
	top:-3px;
}
.elSecondCo dl dt h3 strong {
	color:#aea801;
	font-size:1.6vw;
}

.elSecondCo dl dd img {
	width:100%;
	box-shadow: 7px 10px #b0b093;
}
@media screen and (max-width: 767px){
	.elSecondCo {
		flex-wrap:wrap;
		margin:0 auto;
		flex-direction: column;
	}
	.elSecondCo dl {
		width:80%;
		margin:0 auto 15px;
	}
	.elSecondCo dl dt {
		font-size:4.5vw;
	}

	.elSecondCo dl dt h3 {
		font-size:5vw;
		text-align:left;
	}
	.elSecondCo dl dt h3 strong{
		font-size:6vw;
	}
	.elSecondCo dl dt h3 span {
		font-size:3vw;
	}
}

.elThirdCo {
	width:100%;
	margin:0 auto 20px;
}
.elThirdCo p {
	font-size:1.5vw;
	margin:0 auto 20px;
}

.msgVideo {
	display:flex;
	justify-content: space-between;
	gap: 20px; /* 動画間の隙間 */
    width: 100%;
}

.msgVideo dl {
	display:flex;
	flex-direction:column ;
	flex: 1;
}

.msgVideo dl dt {
	margin-bottom:20px;
}

.msgVideo dl dd {
	margin: 0;
    position: relative;
    width: 100%;
    height: 0; /* 高さを0にする（paddingで高さを出すため） */
    padding-bottom: 56.25%; /* 16:9のアスペクト比を維持 */
    overflow: visible; /* シャドウを見せるためにvisibleに */

}

.msgVideo dl dd iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* 親のddいっぱいに広げる */
    height: 100%; /* 親のddいっぱいに広げる */
    box-shadow: 7px 10px #8d9ea1;
    border: none;
}


/* -------------------------------------------- TRAINER */
.trainer {
	width:1000px;
	margin:40px auto 40px;	
	text-align:center;
}
@media screen and (max-width: 767px) {
	.trainer {
		width:96%;
	}
}
@media screen and (min-width: 1200px) {
	.trainer {
		width:86%;
	}
}

.trTitle {
	margin:0 auto 40px;
	padding:10px 100px;
	display:inline-block;
	background-color:#d26993;
	box-shadow: 7px 10px #b9b7b5;	
	transform:skewX(-15deg);
	position:relative;
}
.trTitle:before, .trTitle:after {
  content: '';
  position: absolute;
  top: 0;
  display:block;
  width: 15px;
	height:72px;
  background-color:#d26993;
	box-shadow: 7px 10px #b9b7b5;
}

.trTitle:before {
  left:-30px;
	
}
.trTitle:after {
  right: -30px;
}

.trTitle h2 {
	transform:skewX(15deg);
	font-size:2rem;
	color:#ffffff;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 700;
	font-style: normal;
}
@media screen and (max-width: 767px) {
	.trTitle {
		padding:10px 20px;
	}
	.trTitle:before, .trTitle:after {
		height:57px;
	}
	.trTitle h2 {
		font-size:1.5rem;
	}
}
@media screen and (min-width: 1200px) {
	.trTitle h2 {
		font-size:3rem;
	}
	.trTitle:before, .trTitle:after {
		height:98px;
	}
}

dl.mainTr {
	width:100%;
	display:flex;
	justify-content: space-between;
	margin:0 auto 40px;
}
dl.mainTr dt {
	width:35%;
}
dl.mainTr dt img {
	width:100%;
	text-align:right;
}
dl.mainTr dd {
	width:60%;
	text-align:left;
	font-size: 1rem;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-style: normal;
	color:#333333;
}

@media screen and (max-width: 767px) {
	dl.mainTr {
		width:85%;
		flex-direction:column;
	}
	dl.mainTr dt {
		width:100%;
		margin-bottom:10px;
	}
	dl.mainTr dd {
		width:100%;
	}
	dl.mainTr dd p {
		display:none;
	}
}
@media screen and (min-width: 1200px) {
	dl.mainTr dd {
		font-size:1.4vw;
	}
}
.trTag {
	padding:5px 20px;
	margin-bottom:10px;
	display:inline-block;
	color:#ffffff;
	background-color:#d26993;
	box-shadow: 7px 10px #b9b7b5;	
	transform:skewX(-15deg);
	position:relative;
	
}
.trTag h4 {
	transform:skewX(15deg);
	font-size:2rem;
	color:#ffffff;
	 font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
	font-style: normal;
}
h3.trName {
	font-size:2rem;
	 font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
	font-style: normal;
	color:#333333;
}
h3.trName span {
	font-size:.8rem;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-style: normal;
	color:#333333;
}
h5.trOcp {
	margin-bottom:10px;
	font-size:1rem;
	 font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
	font-style: normal;
	color:#333333;
}
@media screen and (min-width: 1200px) {
	.trTag {
		font-size:1.7vw;
	}
	h3.trName {
		font-size:3vw;
	}
	h3.trName span {
		font-size:1vw;
	}
	h5.trOcp {
		font-size:1.4vw;
	}
}

.subTr {
	display:flex;
	width:100%;
	margin:0 auto 40px;
	justify-content: center;
}

.subTr dl{
	width:48%;
}

.subTr dl dt{
	width:100%;
	display:flex;
	justify-content: space-between;
	margin-bottom:10px;
}

.subTr dl dt dl {
	display:table;
	width:100%;	
}
.subTr dl dt dl dt {
	display:table-cell;
	width:40%;
	vertical-align:middle;
	margin-right:15px;
}
.subTr dl dt dl dt img {
	height:100%;
}
.subTr dl dt dl dd {
	display:table-cell;
	width:56%;
	vertical-align:middle;
}
.subTr dl dd{
	text-align:left;
	width:100%;
	font-size:.9rem;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-style: normal;
	color:#333333;
}
@media screen and (max-width: 767px) {
	.subTr {
		width:96%;
		justify-content: center;		
	}
	.subTr dl dt dl dt {
		width:100%;
		display: block;
	}
	.subTr dl dt dl dt img {
		width:100%;
		height:220px;
	}
	.subTr dl dt dl dd {
		width:100%;
		display: block;
	}
	.subTr dl dt dl dd h3.trName {
		font-size:1.5rem;
		padding:0;
		width:100%;
		line-height:90%;
		margin-top:10px;
	}
	.subTr dl dt dl dd h3.trName span {
		font-size:.7rem;
	}
	.subTr dl dt dl dd h5.trOcp {
		font-size:.9rem;
	}
	.subTr dl dd {
		display:none;
	}
}
@media screen and (min-width: 1200px) {
	.subTr dl dt dl dt {
		width:50%;
	}
	.subTr dl dt dl dt img {
		width:100%;		
	}
	.subTr dl dt dl dd {
		width:46%;
	}
	.subTr dl dt dl dd .trTag{
		font-size:1vw;
	}
	.subTr dl dt dl dd h3.trName {
		font-size:2vw;
	}
	.subTr dl dt dl dd h3.trName span {
		font-size:.8vw;
	}
	.subTr dl dt dl dd h5.trOcp {
		font-size:1.2vw;
	}
	.subTr dl dd {
		font-size:1.2vw;
	}
}
/* -------------------------------------------- Brief  */
.brief {
	max-width:100%;
	width: 100%;
	margin: 0 auto;
	padding:40px;
	overflow:hidden;
	text-align:center;
}

.dtTitle {
	margin:0 auto 40px;
	padding:10px 100px;
	display:inline-block;
	background-color:#a1a2a2;
	box-shadow: 7px 10px #b9b7b5;	
	transform:skewX(-15deg);
	position:relative;
}
.dtTitle:before, .dtTitle:after {
  content: '';
  position: absolute;
  top: 0;
  display:block;
  width: 15px;
	height:72px;
  background-color:#a1a2a2;
	box-shadow: 7px 10px #b9b7b5;
}

.dtTitle:before {
  left:-30px;
	
}
.dtTitle:after {
  right: -30px;
}

.dtTitle h2 {
	transform:skewX(15deg);
	font-size:2rem;
	color:#ffffff;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 700;
	font-style: normal;
}

@media screen and (max-width: 767px) {
	.dtTitle {
		padding:10px 20px;
	}
	.dtTitle:before, .dtTitle:after {
		height:57px;
	}
	.dtTitle h2 {
		font-size:1.5rem;
	}
}
@media screen and (min-width: 1200px) {
	.drTitle h2 {
		font-size:3rem;
	}
	.drTitle:before, .drTitle:after {
		height:98px;
	}
}

.brief dl {
	text-align:left;
	display:flex;
	flex-flow: row wrap;
	width: 700px;
	margin:0 auto;
	border:solid 2px #333333;
}
.brief dl dt {
	flex-basis: 25%;
	padding:10px;
	background-color:#dddddd;
	border-bottom: 1px solid #ccc;
}
.brief dl dd {
	padding:10px;
	flex-basis: 75%;
	background-color:#ffffff;
	border-bottom: 1px solid #ccc;
}

.brief dl dd strong {
	color:#fe4a04;
}
.brief dl dd a {
	position: relative;
}
.brief dl dd a::after {
	position: absolute;
		bottom: -3px;
		left: 0;
		display: block;
		content: "";
		width: 100%;
		height: 1px;
		background: #222;
		transform: scale(0,1);
		transform-origin: left top;
		transition: transform .3s ease;
}
.brief dl dd a:hover::after {
		transform: scale(1,1);	
}

@media screen and (max-width: 767px){
	.brief dl {
		width:90%;
		flex-direction:column;
	}
	.brief dl dt:nth-child(even) {
		background-color:#ffffff;
	}
	.brief dl dt {
		background-color:#dddddd;
	}
}
/* -------------------------------------------- APPLY  */
.applyBox {
	max-width:100%;
	width: 800px;
	margin: 0 auto;
	overflow:hidden;
	text-align:center;	
}

@media screen and (max-width: 767px) {
	.applyBox {
		width:90%;
	}
}
dl.applyGroup {
	margin:0 auto 20px;
	text-align:center;
	width:100%;
}
dl.applyGroup dt {
	margin:0 auto 10px;
	border:solid 4px #f08220;
	padding:10px auto;
	font-size:1.5rem;
	color:#f08220;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
	font-style: normal;
}
dl.applyGroup dt.tokyoArea {
	border:solid 4px #3572a1;
	color:#3572a1;
}
dl.applyGroup dt.osakaArea {
	border:solid 4px #6dbb4e;
	color:#6dbb4e;
}

dl.applyGroup dd {
	display:flex;
	justify-content: space-between;
}
a.jhApply {
	width:47%;
	color:#ffffff;
	font-size:1.5rem;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
	font-style: normal;
	line-height:80%;
	padding:20px 0;
	background:#6db0bb;
	transition: .5s;	
}
a.jhApply span {
	font-size:.9rem;
}

a.jhApply:hover {
	background:#5dcedb;
}
a.elApply {
	width:47%;
	color:#ffffff;
	font-size:1.5rem;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
	font-style: normal;
	line-height:80%;
	padding:20px 0;
	background:#e1d902;
	transition: .5s;
}
a.elApply span {
	font-size:.9rem;
	margin:0;
	padding:0;
}

a.elApply:hover {
	background:#f8f400;
}

@media screen and (max-width: 767px){
	a.jhApply,a.elApply {
		font-size:1.2rem;
		line-height:110%;
		padding:15px 0;
	}
}

/* -------------------------------------------- Facebook */
.fbWrapper {
	max-width:100%;
	width: 100%;
	margin: 0 auto 40px;
	overflow:hidden;
	text-align:center;
}

/* -------------------------------------------- Footer */	
footer {
	width:100%;
	height:250px;
	background-color:#ffffff; 
	text-align:center;
	overflow:hidden;
	margin-top:40px;
}
ul.fNav {
	display:flex;
	justify-content: center;
	width:300px;
	margin:0 auto;
	padding:0 0 10px 0;
}
ul.fNav li{
	
	margin:0 15px 0 0;
	color:#313131
	
}
ul.fNav li a{
	color:#313131;
		transition:.5s;
}
ul.fNav li a:hover{	
	color:#666666;
	border-bottom:solid 1px #666666;
	opacity:.5;
}
p {
	clear:both;
}

