@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%;	
	
}

/*--
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; }
}

.anchor {
  display: block;
    padding-top: 100px;
    margin-top: -100px;
}

.anchorB {
  display: block;
    padding-top: 300px;
    margin-top: -200px;
}


/* -------------------------------------------- Header */
.header-box {
  height: 80px;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color:rgba(35,114,186,0.95);
  z-index: 100;
  display: flex;
  justify-content: space-between;
}

header .logo {
	width: 30%;
	height: 80px;
	display:table-cell;
	text-align: left;
	line-height: 80px;
	font-size: 20px;
	font-weight: 600;
	padding-left:40px;
	transition:.5s;
}

header .logo:hover {
	opacity:.5;
}

header .logo a img {
	height:70%;
	vertical-align: middle;
	float:left;
	margin-right:10px;
	padding-top:20px;
	transition: .5s;
}
header .logo a:hover img {
	opacity:0.4;
}


header .logo h1 {
	display:block;
	margin-left:10px;
	color:#ffffff;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	font-weight:bold;
	font-size:1rem;
}


@media screen and (max-width: 767px){
	.psBanner {
		width:80%;
	}
}



header nav.pc-menu {
  width: 70%;
}

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:#d7e1e8;
	font-weight:bold;
	position:relative;
	border-left:solid 1px #8aa1b7;
	height:80px;
	padding-top:20px;
}

header nav.pc-menu ul li a::after{
	position:absolute;
	left:0;
	content:'';
	width:100%;
	height:4px;
	background:#f9fc03;
	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:#9db2c6;
	font-size:.6rem;
	font-weight:normal;
	line-height:10px;	
}

.sm {
  display: none;
}

/**********************************　
以下、ハンバーガーメニューの設定　
************************************/

@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;
		display:none;
	}

  #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(18, 61, 108, 0.7);
  }
  .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;   
  }
}

/* -------------------------------------------- Layout共通 */
.wrapper {
	width:100%;
	max-width: 100%;
}

.container {
	width:900px;
	margin:0 auto;
}

@media screen and (max-width: 767px){
	.container {
		width:96%;
	}
	.wrapper {
		width:100%;
		max-width: 100%;
	}
}
/* -------------------------------------------- title共通 */
.cmnTitle {
	position:relative;
	height:100px;
	width:100%;
	margin:0 auto 60px;
	padding-top:20px;
	text-align:center;
}

.cmnTitle h2 {
	position:absolute;
	top:25px;
	left:0;
	right:0;
	margin:0 auto;
  position: relative;
  display: inline-block;
	font-family: "Noto Sans JP", sans-serif;
	font-weight:bold;
	font-size:2rem;
	font-size:calc(2vw + .8rem);
	color:#37546f;
	z-index:1;
	line-height:130%;
}
.cmnTitle h2:before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 50px;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #f9fc03;
  border-radius: 2px;
}
.cmnTitle span {
	position:absolute;
	top:0;
	left:0;
	right:0;
	margin:0 auto;
	font-size:calc(6vw + 1.5rem);
	font-family:"Noto JP", serif;
	font-weight:700;
	line-height:100%;
	color:#eff3f6;
	z-index:-1;
}

.cmnTitle span.blBack {
	position:absolute;
	top:0;
	left:0;
	right:0;
	margin:0 auto;
	font-size:calc(6vw + 1.5rem);
	font-family:"Noto JP", serif;
	font-weight:700;
	line-height:100%;
	color:#ffffff;
	z-index:0;
}
.cmnTitle p {
	margin-top:50px;
	text-align:center;
	font-size:1rem;
	font-weight:500;
	color:#555555;

}
.subHeading {	
	width:100%;
	margin:0 auto 60px;
	padding-top:20px;
	text-align:center;
}

.subHeading h3 {
	position: relative;
	display: inline-block;
	padding: 0 55px;
	font-family:"Noto Sans JP", sans-serif;
	font-weight:700;
	font-size:1.5rem;
	color:#37546f;
}

.subHeading h3:before, .subHeading h3:after {
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 35px;
	height: 4px;
	background-color: #37546f;
}

.subHeading h3:before {
	left:0;
}
.subHeading h3:after {
	right: 0;
}

@media screen and (max-width: 767px) {
	.cmnTitle {
		padding:0 10px;
		margin:0 auto 20px;
	}
	.cmnTitle h2 {
		top:25px;
		
	}
	.cmnTitle h2:before {
		width:50px;
	}
	.cmnTitle span.twoLine {
		top:-40px;
	}
}
/* -------------------------------------------- Hero */
.hero {
	position:relative;
	width: 100%;
	height:450px;
	background:#2c3b46 url("../i/hero_pc03.jpg")top center no-repeat;
	background-size:cover;
	z-index: 1;
	margin:0;
	padding:0;
}

@media screen and (max-width: 767px){
	.hero {			
        width: 100%;
		height:500px;
		background:url("../i/hero_sp03.jpg")top center no-repeat;
		background-size:contain;
	}
	
}

.hero h1 {
	position:absolute;
	top:250px;
	left:0;
	right:0;
	margin:0 auto;
	width: fit-content;
	color:#ffffff;
	font-family: "Noto Sans JP", sans-serif;
	font-weight:bold;
	font-size:2.2rem;
	text-shadow: 2px 2px 10px #444444 ,
	-2px 2px 10px #444444 ,
	2px -2px 10px #444444 ,
	-2px -2px 10px #444444;
}

.hero h2 {
	position:absolute;
	top:310px;
	left:0;
	right:0;
	margin:0 auto;
	padding:0 30px;
	text-align:center;
	width: fit-content;
	color:#ffffff;
	font-family: "Noto Sans JP", sans-serif;
	font-weight:bold;
	font-size:1.3rem;
	text-shadow: 2px 2px 10px #444444 ,
	-2px 2px 10px #444444 ,
	2px -2px 10px #444444 ,
	-2px -2px 10px #444444;
}

.medal {
	position:absolute;
	top:30px;
	right:5%;
	width:175px;
	height:215px;
	background:url(../i/medal.png)top center no-repeat;
	text-align:center;
	filter: drop-shadow(0px 0px 5px #444444);
}
.medal h4 {
	color:#5d4112;
	font-family:"Noto Serif JP", serif;
	font-weight:900;
	font-size:18px;
	margin-top:15px;
	line-height:100%;
}
.medal h3 {
	font-size:55px;
	color:#5d4112;
	font-family:"Noto Serif JP", serif;
	font-weight:900;
	margin-top:10px;
	line-height:80%;
	text-shadow: -1px -1px 1px #cbbea8, 1px 1px #2a1c04;
}
.medal h3 span {
	font-size:18px;
}

.medal h5 {
	font-size:14px;
	color:#5d4112;
	font-family:"Noto Serif JP", serif;
	font-weight:900;
	line-height:100%;
}
.medal h6 {
	font-size:13px;
	color:#5d4112;
	font-family:"Noto Serif JP", serif;
	font-weight:600;
	margin-top:5px;
	line-height:100%;
}

@media screen and (max-width: 767px){
	.hero h1 {
		top:300px;
	}
	.hero h2 {
		top:360px;
	}
	.medal {
		transform: scale(0.8);   /* 20%縮小 */
		right: -10px;
		top: -20px;
	}
	.hero h2 { 
		font-size:1.1rem;
	}

}
@media screen and (max-width: 480px) {
	.medal {
		transform: scale(0.6);   /* 40%縮小 */
		right: -10px;
		top: -20px;
	}
}


/* -------------------------------------------- CASE */
.slider {	
	width: 100%;
	max-width: 100%;
	padding:40px;
	margin-bottom:40px;
	z-index: 1;
}

.slider-3 .slick-slide {
  margin: 0 60px;
  padding: 60px 0;
  position: relative;
}
.slider-3 .slick-slide .slide-img {
  width: 450px;
  transition: all 0.6s ease 0.4s;
  opacity: 0.8;
  box-shadow: 3px 3px 7px 2px #ccc;
  overflow: hidden;
}
.slider-3 .slick-slide.slick-current .slide-img {
  transform: scale(1.2);
  opacity: 1;
}

.slide-img dl.titleBox {
	display:flex;
	align-items:center;
	width:100%;
	background-color:#2372ba;
}

dl.titleBox dt {
	
	vertical-align:middle;
	width:20px;
	font-size:.5rem;
	font-family:"Noto Sans JP", sans-serif;
	font-weight:900;
	color:#75ade0;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-orientation: upright;
	padding:10px 5px;	
}

dl.titleBox dd {	
	vertical-align:middle;
	font-size:1.2rem;
	font-family:"Noto Sans JP", sans-serif;
	font-weight:300;
	color:#ffffff;
	line-height:110%;
}
dl.titleBox dd.catTag {
	display:flex;
	justify-content:flex-end;
	flex-grow: 2;
	vertical-align:middle;
	font-size:1.2rem;
	font-family:"Noto Sans JP", sans-serif;
	font-weight:300;
	color:#ffffff;
	line-height:110%;
	margin-right:10px;
}

.catLabel {
	display:inline-block;
	padding:2px 4px;
	border:solid 1px #ffffff;
	font-family:"Noto Sans JP", sans-serif;
	font-weight:bold;
	font-size:.8rem;
}

dl.mainInfo {
	margin:10px;
	display:flex;
}
dl.mainInfo dt {
	
}
dl.mainInfo dt figure, dl.mainInfo dt figure img {
	width:150px;
}
dl.mainInfo dt figure figcaption {
	text-align:center;
	background-color:#2372ba;
	font-size:.9rem;
	font-weight:bold;
	color:#ffffff;
	padding:2px;
}


dl.mainInfo dd {
	margin-left:10px;
}

dl.frInfo {
	width:100%;
	height:46px;
}

dl.frInfo dt {
	font-family:"Noto Sans JP", sans-serif;
	line-height:110%;
}

dl.frInfo dt h4 {
	display:inline-block;
	width:50px;
	text-align:center;
	background-color:#2372ba;
	padding:3px 2px;
	margin-bottom:5px;
	font-size:.6rem;
	font-weight:200;
	font-family:"Noto Sans JP", sans-serif;
	line-height:90%;
	color:#ffffff;
}

dl.frInfo dd {
	font-size:1.3em;
	font-family:"Noto Sans JP", sans-serif;
	font-weight:900;
	color:#333333;
	line-height:110%;
}

dl.scInfo {
	width:100%;
	display:table;	
}

dl.scInfo dt,dl.scInfo dd {
	display:table-cell;
	vertical-align: middle;
	font-size:.7rem;
	font-family:"Noto Sans JP", sans-serif;
	font-weight:400;
	color:#333333;
}

dl.scInfo dt {
	width:53%;
}

dl.scInfo h4{
	display:inline-block;
	width:50px;
	text-align:center;
	background-color:#2372ba;
	padding:3px 2px;
	font-size:.6rem;
	font-weight:200;
	font-family:"Noto Sans JP", sans-serif;
	line-height:90%;
	color:#ffffff;
	margin-right:10px;
}
dl.thInfo {
	width:100%;
	display:table;	
}
dl.thInfo dt {
	display:table-cell;
	vertical-align: top;
	width:50px;	
}
dl.thInfo dt h4{
	display:inline-block;
	width:50px;
	text-align:center;
	background-color:#2372ba;
	padding:3px 2px;
	font-size:.6rem;
	font-weight:200;
	font-family:"Noto Sans JP", sans-serif;
	line-height:90%;
	color:#ffffff;
	margin-right:10px;
}

dl.thInfo dd {
	display:table-cell;
	padding-top:3px;
	vertical-align: top;
	font-size:.7rem;
	font-family:"Noto Sans JP", sans-serif;
	font-weight:400;
	color:#333333;
	line-height:120%;
}

dl.voice {
	margin:0 10px 10px 10px;
	padding:5px;
	background-color:#eff3f6;
}
dl.voice dt {
	font-size:.9rem;
	font-weight:900;
	font-family:"Noto Sans JP", sans-serif;
	color:#063b6d;
	
}
dl.voice dd {
	font-size:.8rem;
	font-family:"Noto Sans JP", sans-serif;
	font-weight:300;
	color:#063b6d;
	line-height:120%;
}
.slider-3 .slick-slide .slide-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-3 .slick-arrow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 0;
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
.slider-3 .slick-arrow::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #09000d;
  border-width: 3px 3px 0 0;
  position: absolute;
  top: 24px;
  transform: rotate(45deg);
}
.slider-3 .slick-next {
  right: 0;
}
.slider-3 .slick-prev {
  left: 0;
}
.slider-3 .slick-next::before {
  left: 20px;
}
.slider-3 .slick-prev::before {
  border-width: 0 0 3px 3px;
  right: 22px;
}

.dots-3 .slick-dots {
  text-align: center;
}
.dots-3 .slick-dots li {
  display: inline-block;
}
.dots-3 .slick-dots button {
  display: block;
  width: 10px;
  height: 10px;
  margin: 6px;
  font-size: 0;
  padding: 0;
  border: 0;
  outline: none;
  cursor: pointer;
  background: #bcbcbc;
  border-radius: 50%;
}
.dots-3 .slick-dots .slick-active button {
  background: #0a467d;
}

@media screen and (max-width: 767px){
	.slider {
		padding:10px;
	}
	.slider-3 .slick-slide {
		margin:0 60px;
	}
	.slider-3 .slick-slide .slide-img {
		width:250px;
	}
	.slide-img dl.titleBox {
		flex-wrap: wrap;
	}
	dl.titleBox dt,	dl.titleBox dd {
		display:block;
	}
	dl.titleBox dt {
		margin-right:8px;
	}
	dl.titleBox dd:not(.catTag) {
		flex: 1;
	}
	dl.titleBox dd.catTag {
		flex-basis: 100%;
		text-align:center;
		margin-left:8px;
		border-top:1px solid #ffffff;
	}
	.catLabel {
		margin:0 auto;
		border:none;
	}
	dl.mainInfo {
		flex-direction:column;
	}	
	dl.frInfo {
	}
	dl.frInfo dt,dl.frInfo dd {
		font-size:.9rem;
	}
	dl.scInfo {
		margin-bottom:5px;
	}
	dl.scInfo h4 {
		width:40px;
		margin-right:5px;
		font-size:.5rem;
	}
	dl.scInfo dt,dl.scInfo dd {
		font-size:.6rem;
	}
	dl.thInfo dt h4 {
		font-size:.6rem;
		width:50px;
	}
	dl.thInfo dd {
		font-size:.7rem;
	}
	dl.voice dt {
		font-size:.8rem;
	}
	dl.voice dd {
		font-size:.7rem;
	}
	dl.mainInfo dt figure, dl.mainInfo dt figure img {
		width:100%;
	}
}
/* -------------------------------------------- Demand */
.demand {
	width: 100%;
	max-width: 100%;
	background:linear-gradient(90deg, #6e8b95 29%, transparent 65%), url("../i/demand_back.jpg");
	background-repeat:no-repeat,no-repeat;
	background-position:top left, right bottom;
	background-size:cover, cover;
	overflow:hidden;
}

.demandCon {
	width:600px;
	margin:60px 0  100px 10%;	
}

.demandCon h2 {
	font-size:2.5rem;
	font-family:"Noto Sans JP", sans-serif;
	font-weight:900;
	color:#132c3a;
	line-height:120%;
	text-shadow: 2px 2px 10px #ffffff ,
	-2px 2px 10px #ffffff ,
	2px -2px 10px #ffffff ,
	-2px -2px 10px #ffffff;
	margin-bottom:20px;
}

.demandCon ul {
	margin:0 0 0 20px;
}
.demandCon ul li {
	position: relative;
	display: inline-block;
	width:400px;
	padding:10px;
	background-color:#ffffff;
	font-size:1rem;
	font-family:"Noto Sans JP", sans-serif;
	font-weight:400;
	color:#000000;
	line-height:140%;
	margin-bottom:40px;
}

.demandCon ul li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 21%;
  border-style: solid;
  border-width: 20px 10px 0 10px;
  border-color: #ffffff transparent transparent;
  translate: -50% 100%;
}

.demandCon ul li:nth-child(even)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 84%;
  border-style: solid;
  border-width: 20px 10px 0 10px;
  border-color: #ffffff transparent transparent;
  translate: -50% 100%;
}

@media screen and (max-width: 767px) {
	.demand {
		background:linear-gradient(#6e8b95 29%, transparent 75%), url("../i/demand_back.jpg");
		background-position:top left, right bottom;
		background-size:cover, 200%;
	}
	.demandCon {
		width:90%;
		text-align:center;
		margin:60px auto 200px;	
	}
	.demandCon h2 {
		font-size:1.5rem;
		margin-bottom:40px;
	}
	.demandCon ul li {
		width:100%;
		text-align:left;
	}
}

/* -------------------------------------------- ADVANTAGE */
.advantage {
	width: 100%;
	max-width: 100%;
	padding-top:70px;	
	overflow:hidden;
}

.advCon {
	width:700px;
	margin:100px auto;
}

dl.threePoint {
	width:100%;
	margin:0 auto 40px;
	display:flex;
	justify-content: space-between;
	background-color:#edf1f4;
	counter-increment: number;
}

dl.threePoint dt {
	width:15%;
	background-color:#2372ba;
	clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
	position:relative;
}
dl.threePoint dt:after {
	content: counter(number);
	color: #edf1f4;
	text-align: center;
	font-size:15vw;
	font-size: clamp(6rem, calc(13vw + 1rem), 10rem);
	font-weight:200;
	position:absolute;
	right:-10%;
	top:50%;
	transform: translate(-5%, -50%);
	line-height:100%;
}

dl.threePoint dd.tpText {
	width:70%;
	padding:10px;
}

dl.threePoint dd.tpText h3 {
	width:100%;
	font-size: clamp(1.1rem, calc(1.25vw + .5rem), 1.3rem);
	font-family:"Noto Sans JP", sans-serif;
	font-weight:700;
	color:#2372ba;
	line-height:130%;
	margin-bottom:10px;
}
dl.threePoint dd.tpText h3 span {
	text-decoration: underline;
	text-decoration-color: #f9fc03;
	text-decoration-thickness: .8rem;
	text-decoration-skip-ink: none;
	text-underline-offset: -0.25em;
}
dl.threePoint dd.tpText p {
	font-size:.85rem;
	font-family:"Noto Sans JP", sans-serif;
	font-weight:400;
	color:#888888;
}

dl.threePoint dd.tpThumb01 {
	width:15%;
	clip-path: polygon(25% 0, 100% 0%, 100% 100%, 0 100%);
	background:url("../i/tp_thumb01.jpg")40% 0 no-repeat;
	background-size:cover;

}
dl.threePoint dd.tpThumb02 {
	width:15%;
	clip-path: polygon(25% 0, 100% 0%, 100% 100%, 0 100%);
	background:url("../i/tp_thumb02.jpg")70% 0 no-repeat;
	background-size:cover;
}
dl.threePoint dd.tpThumb03 {
	width:15%;
	clip-path: polygon(25% 0, 100% 0%, 100% 100%, 0 100%);
	background:url("../i/tp_thumb03.jpg")80% 40% no-repeat;
	background-size:300%;
}
@media screen and (max-width: 767px) {
	.advantage {
		padding-top:40px;
	}
	.advCon {
		width:90%;
		margin:0 auto;
	}
	dl.threePoint {
		display:flex;
		flex-wrap: wrap; 
		flex-direction:row;
	}
	dl.threePoint dd.tpText p {
		font-size:.9rem;
	}
	
	dl.threePoint dt {
		width:20%;
		clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
		height:80px;
	}

	dl.threePoint dd.tpThumb01,
	dl.threePoint dd.tpThumb02,
	dl.threePoint dd.tpThumb03 {
		width:80%;
	 height:80px;
	clip-path: polygon(2.5% 0, 100% 0, 100% 100%, 0 100%);
	 order:1;
	}
	dl.threePoint dd.tpText {
		order:2;
		width:100%;
	}
	dl.threePoint dt:after {
	font-size:6rem; /* SP 用に制限 */
	right:0;
	}
	dl.threePoint dd.tpThumb01 {
		background-position:0 75%;
	}
	dl.threePoint dd.tpThumb02 {
		background-position:100% 40%;
	}
	dl.threePoint dd.tpThumb03 {
		background-size:cover;
		background-position:100% 30%;
	}
	dl.threePoint dt:after {
		font-size:13vw;
		top:50%;
		left:13%;
		
	}
}

/* -------------------------------------------- USAGE */
.usage {
	width: 100%;
	max-width: 100%;
	padding-top:30px;	
	overflow:hidden;
}

ul.usageScene {
	display:flex;
	justify-content: center;
	width:100%;
	margin:0 auto;
}
ul.usageScene li {
	position:relative;
	width:33%;
}

ul.usageScene li img {
	width:100%;
	display:block;
	position:static;
	
}

ul.usageScene li p {
	position:absolute;
	bottom:10px;
	right:10px;
	text-align:right;
		
}

ul.usageScene li p span {
	display: inline;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	font-size:1.8vw;
	font-weight:700;
	line-height:170%;
	color:#2372ba;
	background: linear-gradient(transparent 0%, #ffffff 0%);
}
@media screen and (max-width: 767px) {
	ul.usageScene {
		flex-direction: column;
	}
	ul.usageScene li {
		width:100%;
	}
	ul.usageScene li p span {
		font-size:1.5rem;
	}
}

/* -------------------------------------------- USAGE */
.otUsage {
	width: 800px;
	margin:0 auto 40px;
	display:flex;
	justify-content: space-between;
	flex-wrap:wrap;
}
.otUsage dl {
	display:flex;
	flex-direction:column;
	width:49%;
	padding:10px;
	background-color:#edf1f4;
	margin-bottom:20px;
}

.otUsage dl dt,.otUsage dl dd {
	display:flex;
	align-items:flex-start;
	width:100%;
}

.otUsage dl dt span,.otUsage dl dd span {
	flex:0 0 45px;   /* ラベルの固定幅 */
	height:20px;
	text-align:center;
	background-color:#2372ba;
	padding:3px 2px 2px;
	font-size:.7rem;
	font-weight:200;
	font-family:"Noto Sans JP", sans-serif;
	line-height:1.2;
	color:#ffffff;
	margin-right:10px;
}

.otUsage dl dt {
	margin:0 0 10px 0;
	font-size:.8rem;
	color:#666666;
}
.otUsage dl dd {
	font-size:1rem;
	color:#2372ba;
	font-weight:700;
}
@media screen and (max-width: 767px) {

	.otUsage {
		width:90%;
	}
	.otUsage dl {
		width:100%;
	}
}

/* -------------------------------------------- LECTURE HELD */
.lecHeld {
	width: 100%;
	max-width: 100%;
	padding-top:30px;	
	overflow:hidden;
}

.lecDetail {
	width: 600px;
	margin:0 auto 40px;
}
.lecDetail dl {
	display:flex;
	justify-content:flex-start ;
	width:100%;
	padding:10px;
	border-bottom:solid 1px #999999;
}
.lecDetail dl:first-child {
	border-top:solid 1px #999999;
}
.lecDetail dl dt {
	width:25%;
	font-size:1rem;
	color:#2372ba;
	font-weight:700;
}
.lecDetail dl dd {
	width:74%;
	font-size:1rem;
	color:#666666;
	font-weight:300;
}
.lecDetail p {
	margin-top:10px;
	text-align:center;
	font-size:.8rem;
	color:#666666;
	font-weight:300;
}
@media screen and (max-width: 767px) {
	.lecDetail {
		width:90%;
	}
	.lecDetail p {
		font-size:.7rem;
	}
}

/* -------------------------------------------- TRAINER */
.trainer {
	width: 100%;
	max-width: 100%;
	padding-top:30px;	
	background-color:#edf1f4;
	overflow:hidden;
}
.trFrame {
	width:1000px;
	margin:0 auto;
	max-width: 100%;
	padding-top:30px;	
	background-color:#edf1f4;
	overflow:hidden;
}

.slider-2 .slick-slide {
  width: 250px;
  margin: 0 40px;
  position: relative;
  overflow: hidden;
}
.slider-2 .slick-slide dl {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-2 .slick-arrow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 0;
  position: absolute;
  top: 180px;
  z-index: 1;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
.slider-2 .slick-arrow::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #09000d;
  border-width: 3px 3px 0 0;
  position: absolute;
  top: 24px;
  transform: rotate(45deg);
}
.slider-2 .slick-next {
  right: 0;
}
.slider-2 .slick-prev {
  left: 0;
}
.slider-2 .slick-next::before {
  left: 20px;
}
.slider-2 .slick-prev::before {
  border-width: 0 0 3px 3px;
  right: 22px;
}
.dots-2 .slick-dots {
  text-align: center;
}
.dots-2 .slick-dots li {
  display: inline-block;
}
.dots-2 .slick-dots button {
  display: block;
  width: 10px;
  height: 10px;
  margin: 6px;
  font-size: 0;
  padding: 0;
  border: 0;
  outline: none;
  cursor: pointer;
  background: #bcbcbc;
  border-radius: 50%;
}
.dots-2 .slick-dots .slick-active button {
  background: #0a467d;
}

.slider-2 dl {
	width:100%;
	color:#2372ba;
	display: flex;
    flex-direction: column;
    height: 100%;
}
.slider-2 dl dt {
	width:100%;
	margin-bottom:10px;
}
.slider-2 dl dt img {
	width:100%;
}
.slider-2 dl dd {
	width:100%;
	min-height: 100%;
}

.slider-2 dl dd ul {
	list-style-type: none;
	display:flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin-bottom:10px;
}
.slider-2 dl dd ul li {
	padding:2px 4px;
	margin:0 10px 10px 0;
	border:solid 1px #2372ba;
	font-size:.7rem
}
.slider-2 dl dd h4 {
	font-weight:600;
	font-size:1.2rem;
	margin:10px 0 0 5px;
}

.slider-2 dl dd h5 {
	font-weight:700;
	font-size:.8rem;
	margin-bottom:5px;
}

.slider-2 dl dd h6 {
	font-weight:300;
	margin:0 0 10px 5px;
}

.slider-2 dl dd p {
	display: inline;
    background-color: #ffffff;
    padding: 0.1em 0.5em;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.jumpBtn {
	width: 250px;
	margin:0 auto 40px;

}

.jumpBtn a {
  display: inline-block;
  width: 250px;
  text-align: center;
  text-decoration: none;
  line-height:150%;
  outline: none;
  color: #1B85FB;
  background-color: transparent;
  position: relative;
  border: 1px solid #1B85FB;
  transition: color 0.5s ease;
  padding:5px 10px;
}
.jumpBtn a:hover {
  color: #fff;
}
.jumpBtn a:hover::before {
  transform: scaleY(1);
}
.jumpBtn a::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #1B85FB;
  transform: scaleX(0);
  transition: all 0.5s ease;
  transition-property: transform;
}
.text {
  position: relative;
}

/* -------------------------------------------- FLOW */
.flow {
	width: 100%;
	max-width: 100%;
	padding-top:30px;	
	background-color:#edf1f4;
	overflow:hidden;
}
.flowWrap {
  position: relative;
  width:1000px;
  margin:0 auto 40px;
}
.flowNotice {
	text-align:right;
	font-size:.8rem;
	color:#888888;
}

/* STEPレイヤー */
.flowSteps {
  position:absolute;
  top:-40px;
  left:0;
  width:100%;
  display:flex;
  justify-content: space-around;
  pointer-events:none; /* 操作阻害防止 */
  font-family:"Noto Sans JP", sans-serif;
}

.flowLabel {
  width:18%;
  font-size:3rem;
  font-weight:bold;
  color:#4c8bc0;
  line-height:90%;
}

.flowLabel h6 {
	line-height:90%;
  font-size:.7rem;
}

.flowChart {
	width:1000px;
	display:flex;
  padding:0;
  margin:0 auto 40px;
  overflow:hidden;

}
.flowChart dl {
	display:flex;
	flex-direction:column;
	position:relative;
  background: #504944;
  padding: 1em 0.5em 1em 2em;
  color: #fff;
  width:22%;
	font-family:"Noto Sans JP", sans-serif;
}

.flowChart dl dt {
	position:relative;
	height:100px;
	width:100%;
	margin-bottom:20px;
}
.flowChart dl dt img {	
	position:absolute;
	bottom:0;
	left:0;
	width:40%;
}

.flowChart dl dd {
	width:100%;
	color:#666666;	
}
.flowChart dl dd h4 {
	font-weight:bold;
	font-size:1rem;
	color:#4c8bc0;
	margin-bottom:10px;
	line-height:150%;
}

.flowChart dl:last-child{
  padding-right: 1em;
}
.flowChart dl:last-child:before,
.flowChart dl:last-child:after{
  display:none;
}
.flowChart dl:before,
.flowChart dl:after{
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin: auto;
}
.flowChart dl:before{
  top:-40px;
  right:-1em;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  border-width: 190px 0 280px 1em;
  z-index: 10;
}
.flowChart dl:after{
  top:-40px;
  right:-.8em;
  border-style: solid;
  border-color: transparent transparent transparent #504944;
  border-width: 180px 0 280px 1em;
  z-index: 10;
}
.flowChart dl.is-current{
  background: #9bbb30;
  font-weight: bold;
}
.flowChart dl.is-current:after{
  border-color: transparent transparent transparent #9bbb30;
}

.flowChartImage {
	display:block;
	margin:0 auto 10px;
	width:1000px;
	aspect-ratio: 1000 / 355; /* 画像の実サイズ比 */
	background:url(../i/flow_horizon.png)top center no-repeat;
	background-size:cover;
}
@media screen and (max-width: 767px) {
	.flowChartImage {
		width:96%;
		aspect-ratio: 320 / 700; /* 画像の実サイズ比 */
		background:url(../i/flow_vertical.png)top center no-repeat;
		background-size:contain;
	}
	.flowWrap {
		width:96%;
	}
	.flowNotice {
		text-align:left;
	}
}
/* -------------------------------------------- FLOATING*/
.floating {
	position: fixed;
	bottom: 10px;
	right: 10px;
	background-color: rgba(249, 252, 3, 0.8);
	z-index:99999;
	padding:20px 25px;
	border-radius:60px;
	text-align:center;
	
	line-height:100%;
}
.floating a {
	font-size:.7rem;
	color:#2372ba;
	transition:.5s;	
}
.floating a:hover {
	opacity:.5;
}
.floating .fa-envelope {
	font-size:3rem;
}

/*
.floating {
	position: sticky;
	right: 8px;
	bottom: 8px;
	display: none;
}
.floating a {
	display: block;
	color: #fff;
	background: #000;
	padding: 8px;
	text-decoration: none;
	opacity: 0.6;
}
.floating a:hover {
	opacity: 1;
}
*/





/* ------------------------------  */
.contact {
	width: 100%;
	max-width: 100%;
	margin:0 auto 40px;
}



.contact a{
}
.contact a {
	width:300px;
    display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	margin: auto;
	padding: 1rem 4rem;
	border-radius: 10px;
	color: #fff;
	background: #2bb9a4;
}
.contact a:hover {
	background-position: right center;
	background-size: 200% auto;
	-webkit-animation: pulse 2s infinite;
	animation: shad26 1.5s infinite;
	color: #fff;
}
@keyframes shad26 {
	0% {box-shadow: 0 0 0 0 #27acd9;}
	70% {box-shadow: 0 0 0 10px rgb(39 172 217 / 0%);}
	100% {box-shadow: 0 0 0 0 rgb(39 172 217 / 0%);}
}

/* -------------------------------------------- Inqury*/
.inqury {
	width: 100%;
	max-width: 100%;
}
.formCon {
	width:850px;
	margin:0 auto 40px;
}
.formCon dl {
	display:flex;
	justify-content: space-between;
	margin:0 auto;
	padding:30px 0;
	border-top:solid 1px #cccccc;
}
.formCon dl:last-child {
	border-bottom:solid 1px #cccccc;	
}

.formCon dl dt {
	width:23%;
	padding-left:10px;
	font-weight:bold;
	font-size:.9rem;
	color:#333333;
}

.formCon dl dt span {
	display:inline-block;
	padding:2px 8px;
	font-size:.7rem;
	color:#ffffff;
	background:#e85398;
	margin-left:10px;	
}

.formCon dl dd {
	width:72%;
	padding-left:10px;
	font-size:.9rem;
	color:#333333;
}

.formCon dl dd label {
	margin-right:20px;
}


.formCon dl dd ul {
	display:flex;
	justify-content: space-between;
	flex-wrap:wrap;
	margin:0 auto;
	width:100%;
}

.formCon dl dd ul li {
	width:47%;
	margin-bottom:15px;
}
.formCon dl dd ul li input {
	margin-right:5px;
}

.formCon .privacyRemind {
	margin:0 auto;
	padding:20px 0 0;
	width:100%;
	text-align:center;
}
.formCon .privacyRemind input {
	margin-right:10px;
}

.formCon .privacyRemind a {
	text-decoration:underline;
	transition: .5s;
}
.formCon .privacyRemind a:hover {
	opacity:.5;
}

@media screen and (max-width: 767px) {
	.formCon {
		width:80%;
	}
	.formCon dl {
		flex-direction: column;
	}
	.formCon dl dt,
	.formCon dl dd {
		width:100%;
	}
	.formCon dl dt {
		margin-bottom:10px;
	}
	.formCon dl dd ul li {
		width:100%;
	}
}


input[type="text"] {
  width: 100%;
  outline: none;
  padding: 8px;
  box-sizing: border-box;
  transition: 0.3s;
	border-radius:4px;
	border:solid 1px #999999;
	background-color:#f9f9f9;
}

input[type="text"]:focus {
}
input.applyBtn {
  display       : inline-block;
border:none;
  font-size     : 10pt;        /* 文字サイズ */
  text-align    : center;      /* 文字位置   */
  cursor        : pointer;     /* カーソル   */
  padding       : 15px 47px;   /* 余白       */
  background    : #7d0000;     /* 背景色     */
  color         : #ffffff;     /* 文字色     */
  line-height   : 1em;         /* 1行の高さ  */
  opacity       : 1;           /* 透明度     */
  transition    : .3s;         /* なめらか変化 */
}
 
input.applyBtn:hover {
  box-shadow    : none;        /* カーソル時の影消去 */
  opacity       : 0.8;         /* カーソル時透明度 */
}

input.halfSize {
	width:200px;
}
input.oneThird {
	width:120px;
}
input.longSize {
	width:280px;
}

@media screen and (max-width: 767px) {
	input.halfSize,
	input.oneThird,
	input.longSize {
		width:100%;
	}
}

textarea {
  display: block;
  resize: horizontal;
  outline: none;
  padding: 8px;
  box-sizing: border-box;
  transition: 0.3s;
	border-radius:4px;
	border:solid 1px #999999;
	background-color:#f9f9f9;
	width:280px;
	height:200px;
}
@media screen and (max-width: 767px) {
	textarea {
		width:100%;
	}
}

.sendBtn {
	cursor: pointer;
	margin:20px auto;
	width:400px;
	padding:20px 20px;
	background-color:#2bb9a4;
	color:#ffffff;
	font-weight:bold;
	font-size:1.1rem;
	transition:.5s;
	border-radius:10px;
	 position: relative;
}
.sendBtn:hover {
	opacity:.7;
	background-position: right center;
	background-size: 200% auto;
	-webkit-animation: pulse 2s infinite;
	animation: shad26 1.5s infinite;
	color: #fff;
}
.sendBtn::after{
    /* 擬似要素で矢印アイコンをつくる */
    content: '';
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    display: inline-block;
    width: 10px;
    height: 10px;
    /* 矢印アイコンの位置を設定 */
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg); /* rotate(45deg)で矢印を回転（向きを変更）させる */
}

.autobizBtn {
	margin:20px auto;
	width:400px;
	padding:20px 20px;
	background-color:#2bb9a4;
	color:#ffffff;
	font-weight:bold;
	font-size:1.1rem;
	transition:.5s;
	border-radius:10px;
	 position: relative;
}
.autobizBtn:hover {
	box-shadow    : none; 
	opacity       : 1;
}

@keyframes shad26 {
	0% {box-shadow: 0 0 0 0 #27acd9;}
	70% {box-shadow: 0 0 0 10px rgb(39 172 217 / 0%);}
	100% {box-shadow: 0 0 0 0 rgb(39 172 217 / 0%);}
}
@media screen and (max-width: 767px){
	.sendBtn {
		width:80%;
	}
	.autobizBtn {
		width:80%;
	}
}


/* -------------------------------------------- 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;
}

