@charset "UTF-8";


img {
	width: 100%;
	height: auto;
}
img {
	-webkit-backface-visibility: hidden;
}
.abox {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 5;
}
.brtab, .brsp {
 	display: none;
 }
.nserif {
 	font-family: 'Noto Serif JP', serif;
 }
.fin {
	opacity : 0;
	transform : translate(0,20px);
	transition : all 1s;
}
.fin.sin {
	opacity : 1;
	transform : translate(0,0);
}
.loader {
  align-items: center;
  background: #041A4B;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999999;
}
.loader::after {
  -webkit-animation: loader 0.5s linear infinite;
          animation: loader 0.5s linear infinite;
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 50%;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  content: "";
  height: 70px;
  width: 70px;
}
.tbar:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(243,242,242,0.80);
	z-index: 2;
	top: 0;
	left: 0;
}
.tbar:after {
	content: "";
	position: absolute;
	width: 101%;
	height: 100%;
	background: rgba(87,149,187,0.45);
	z-index: 1;
	top: 0;
	left: 0;
}
.eon.tbar:before {
	animation: reveal 1s ease-in-out 0s forwards;
}
.eon.tbar:after {
	animation: reveal 1s ease-in-out .25s forwards;
}
@keyframes reveal {
  0% {
	transform: translateX(0);
  }
	50% {
	transform: translateX(0);
  }
	99% {
		transform: translateX(100%);
		opacity: 1;
  }
  100% {
		transform: translateX(100%);
		opacity: 0;
  }
}
@-webkit-keyframes loader {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loader {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

.sp-only {
  display: none;
}

/*ヘッダ*/

header {
	position: fixed;
	top: 0;
	height: 60px;
	width: 100%;
	z-index: 6;
  background: #FFF;
  transition: all 1s;
}
.top header {
	top: -60px;
  transition: all 1s;
}
.top header.eon {
  top: 0;
}
.logo {
	width: 168px;
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 1001;
}
.logo-text {
  font-family: 'Noto Serif JP', serif;
  color: #707070;
  font-size: 18px;
  position: absolute;
  left: 200px;
  top: 22px;
  line-height: 1em;
}

/* メニュー */
.menu {
    position: absolute;
		right: 140px;
		top: 0;
    width: 100%;
    height: 60px;
    max-width: 550px;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
}

.menu > li {
		display: inline-block;
    height: 60px;
		position: relative;
    line-height: 60px;
}
.menu > li:before {
  opacity: 0;
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #296EAD;
}
.menu > li:hover:before {
	opacity: 1;
}
.message .menu > li:nth-child(1):before, .company .menu > li:nth-child(2):before, .people .menu > li:nth-child(3):before, .movie .menu > li:nth-child(4):before, .info .menu > li:nth-child(5):before {
  opacity: 1;
}
.menu > li a, .menu > li p {
    display: block;
    color: #22304F;
		font-size: 16px;
		font-weight: 400;
		text-decoration: none;
}
.menu > li p {
	line-height: 60px;
	cursor: pointer;
}
.menu > li a:hover {
    color: #22304F;
}

ul.menu_second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}

.menu > li:hover {
    -webkit-transition: all .5s;
    transition: all .5s;
}

/* floatクリア */
.menu:before,
.menu:after {
    content: " ";
    display: table;
}

.menu:after {
    clear: both;
}

.menu {
    *zoom: 1;
}

li.menu_mega ul.menu_second-level {
    position: absolute;
    top: 50px;
    left: 50%;
		transform: translate(-50%, 0);
    box-sizing: border-box;
    width: 100%;
    padding: 25px 20px 10px 25px;
    background: #041A4B;
    transition: all .2s ease;
}
li.menu_mega ul.menu_second-level a {
	color: #FFF;
	line-height: 1.4em;
	font-size: 14px;
	padding-left: 15px;
	position: relative;
	transition: all .3s;
}
li.menu_mega ul.menu_second-level a:hover {
	color: #3A82F3;
}
li.menu_mega ul.menu_second-level a:before {
	width: 5px;
	height: 1px;
	background: #3A82F3;
	content: "";
	position: absolute;
	left: 0;
	top: .7em;
  }
li.menu_mega ul.menu_second-level.type01 {
	width: 250px;
	display: flex;
	flex-wrap: wrap;
}
li.menu_mega:hover ul.menu_second-level {
    top: 60px;
    visibility: visible;
    opacity: 1;
}
li.menu_mega ul.menu_second-level.type01 > li:nth-child(1) {
	width: 100%;
}
li.menu_mega ul.menu_second-level.type01 > li {
    width: 100%;
		margin-bottom: 15px;
    border: none;
}
li.menu_mega:hover .spmc {
 display: block;
}
.entry-btn {
  width: 140px;
  height: 60px;
  background: linear-gradient(-90deg, #65e7ff 0%, #00509a 100%);
  position: absolute;
  right: 0;
  top: 0;
}
.entry-btn p {
  text-align: center;
  line-height: 60px;
  color: #FFF;
  font-weight: 500;
}
.entry-btn:before {
  width: 10px;
  height: 10px;
  content: "";
  position: absolute;
  right: 12px;
  top: calc(50% - 5px);
  background: url("../img/new-win.png") no-repeat center center;
  background-size: contain;
}


/* ページ下部　共通 */
.btm-block {
  width: 100%;
  padding: 80px 0 0;
  position: relative;
}
.btm-block.imgbox {
  position: relative;
}
.btm-block .textbox {
  position: relative;
  width: 90%;
  left: 5%;
  top: -100px;
  background: #FFF;
  z-index: 2;
  box-sizing: border-box;
  padding: 70px 70px 0;
}
.btm-block h3 {
  font-family: "Noto Serif JP";
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.06em;
  line-height: 44px;
  text-align: center;
  color: #003993;
}
.btm-block .btn02 {
  width: 420px;
  height: 64px;
  margin: 50px auto 0;
  border: solid 1px #313131;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  transition: all .5s;
}
.btm-block .btn02 p {
  color: #313131;
  font-size: 18px;
  line-height: 64px;
  text-align: center;
  position: relative;
  z-index: 2;
  transition: all .3s;
}
.btm-block .btn02 p:before {
  content: "";
  position: absolute;
  right: 10px;
  top: calc(50% - 5px);
  width: 18px;
  height: 10px;
  background: url("../img/arrow-black.png") no-repeat center center;
  background-size: contain;
  z-index: 2;
  transition: all .3s;
}
.btm-block .btn02:after {
	position: absolute;
	content: "";
	top: 0;
  right: 0;
  bottom: 0;
  left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.00);
	z-index: -2;
}
.btm-block .btn02:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: '';
  background: linear-gradient(-90deg, #65e7ff 0%, #00509a 100%);
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.btm-block .btn02:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.btm-block .btn02:hover {
  border: solid 1px rgba(49,49,49,0.00);
}
.btm-block .btn02:hover p {
  color: #FFF;
}
.btm-block .btn02:hover p:before {
  background: url("../img/arrow01.png") no-repeat center center;
  background-size: contain;
}

/* フッター */
footer {
	background: #313131;
	width: 100%;
	box-sizing: border-box;
	padding: 50px 0 0;
}
.footerbox {
	width: 90%;
	max-width: 1000px;
	margin: 0 auto 50px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.footermenu {
	width: calc(100% - 280px);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.footermenu li > p {
	font-size: 16px;
  font-weight: 500;
  color: #FFF;
	position: relative;
}
.footermenu li > p:nth-of-type(1) {
	margin-bottom: 20px;
}
.footermenu li > p a {
	text-decoration: none;
	color: #FFF;
}
.footermenu li > p a:hover {
	text-decoration: underline;
}
.footermenu li > ul {
	margin: 15px 0 0;
}
.footermenu li > ul li {
	font-size: 14px;
  font-weight: 500;
	color: #FFF;
	position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
.footermenu li > ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  background: url("../img/arrow-blue.png") no-repeat center center;
  background-size: contain;
}
.footermenu li > ul li a {
	text-decoration: none;
	color: #FFF;
}
.footermenu li > ul li a:hover {
	text-decoration: underline;
}


.footerentry {
	width: 200px;
}
.footerentry ul {
  margin-bottom: 100px;
}
.footerentry ul li {
	margin-bottom: 10px;
	position: relative;
}
.footerentry ul li:nth-child(1) {
	width: 100%;
  height: 60px;
  background: linear-gradient(-90deg, #65e7ff 0%, #00509a 100%);
}
.footerentry ul li:nth-child(1):before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  right: 5px;
  top: 5px;
  background: url("../img/new-win.png") no-repeat center center;
  background-size: contain;
}
.footerentry ul li:nth-child(1) p {
  text-align: center;
  line-height: 60px;
  color: #FFF;
  font-weight: 500;
}
.footer-logo {
  position: relative;
  width: 80%;
}
.footer-logo p {
  margin: 10px 0 0;
  font-size: 14px;
  color: #FFF;
  text-decoration: none;
  position: relative;
  display: inline-block;
}
.footer-logo p:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  right: -15px;
  top: 5px;
  background: url("../img/new-win.png") no-repeat center center;
  background-size: contain;
}
.cr {
	text-align: center;
	font-size: 13px;
  width: 100%;
  color: #FFF;
  line-height: 37px;
  background: #041A4B;
}










.top #container {
  padding: 0 0 0;
}
#container {
  padding: 60px 0 0;
}

.top-main {
  width: 100%;
  height: 700px;
  background: url("../img/top-main.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
}
.top-main:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #23282F;
  opacity: 1;
  transition: all 2s ease-in-out;
}
.top-main.eon:before {
  opacity: 0;
}
.top-main h1 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 45px;
  letter-spacing: 0.22em;
  text-align: right;
  color: #fff;
  position: absolute;
  right: 13%;
  top: 38%;
  opacity: 0;
  transition: all 1s ease-out;
  transition-delay: 1s;
}
.top-main.eon h1 {
  opacity: 1;
}
.top-main p {
  font-family: "Noto Serif JP";
  font-size: 18px;
  letter-spacing: 0.06em;
  line-height: 40px;
  text-align: right;
  color: #fff;
  position: absolute;
  right: 13%;
  top: calc(38% + 90px);
  opacity: 0;
  transition: all 1s ease-out;
  transition-delay: 1.5s;
}
.top-main.eon p {
  opacity: 1;
}

.top-block01 {
  width: 100%;
  margin: 0 auto 200px;
  position: relative;
  padding: 80px 0;
}
.top-block01 .boxcontent {
  width: 470px;
  height: 350px;
  position: absolute;
  top: 150px;
  left: 8%;
  box-sizing: border-box;
  padding: 55px 60px 0;
  background: url("../img/top-deco.png") no-repeat center center;
  background-size: 700px auto;
  z-index: 3;
}
.top-block01 .bgcontent {
  width: 80%;
  position: relative;
  left: 20%;
  top: 200px;
  overflow: hidden;
}
.top-block01 .boxcontent h2 {
  font-family: "Noto Serif JP";
  font-weight: 500;
  font-size: 40px;
  letter-spacing: 0.18em;
  color: #fff;
  margin-bottom: 10px;
}
.top-block01 .boxcontent p {
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 32px;
  color: #fff;
}
.btn01 {
  width: 140px;
  height: 30px;
  border: solid 1px #FFF;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  margin: 20px 0 0 0;
}
.top-block01 .btn01 p {
  font-family: "Noto Serif JP";
  color: #FFF;
  font-size: 13px;
  line-height: 30px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.top-block01 .btn01 p:before {
  content: "";
  position: absolute;
  right: 10px;
  top: calc(50% - 5px);
  width: 18px;
  height: 10px;
  background: url("../img/arrow01.png") no-repeat center center;
  background-size: contain;
  z-index: 2;
}
.top-block01 .btn01:after {
	position: absolute;
	content: "";
	top: 0;
  right: 0;
  bottom: 0;
  left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.00);
	z-index: -2;
}
.top-block01 .btn01:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: '';
  background: linear-gradient(-90deg, #65e7ff 0%, #00509a 100%);
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.top-block01 .btn01:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.top-block02 {
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 80px 0;
}
.deco1 {
  position: relative;
}
.deco1:before {
  content: "";
  position: absolute;
  width: 50%;
  height: 600px;
  background: #F4F4F4;
  top: -100px;
  left: 50%;
  z-index: -2;
}
.top-block02 .bgcontent {
  position: absolute;
  top: 80px;
  left: 0;
  width: 60%;
  max-width: 900px;
}
.top-block02 .boxcontent {
  width: 470px;
  position: relative;
  top: 0;
  left: calc(50% + 50px);
  z-index: 2;
}
.top-block02 h2 {
  font-family: "Noto Serif JP";
  font-weight: 500;
  font-size: 53px;
  letter-spacing: 0.28em;
  text-align: right;
  color: #003993;
  margin: 50px 0 0;
  position: relative;
  z-index: 1;
}
.top-block02 .h2sub {
  font-family: "Noto Serif JP";
  font-weight: 300;
  font-size: 148px;
  letter-spacing: 0.06em;
  text-align: right;
  color: #296ead;
  opacity: 0.1;
  position: absolute;
  z-index: 1;
  top: 80px;
  right: 0vw;
}
.top-block02 .btn-list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 120px 0 0;
}
.top-block02 .btn-list ul li {
  width: 100%;
  height: 120px;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
  position: relative;
}
.top-block02 .btn-list ul li p {
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.1em;
  color: #296bad;
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}
.top-block02 .btn-list ul li .arrowbox {
  width: 45px;
  height: 45px;
  position: absolute;
  right: 10px;
  bottom: -20px;
  background: #313131;
  overflow: hidden;
}
.top-block02 .btn-list ul li .arrowbox:after {
  content: "";
  position: absolute;
  left: calc(50% - 9px);
  top: calc(50% - 5px);
  width: 18px;
  height: 10px;
  background: url("../img/arrow01.png") no-repeat center center;
  background-size: contain;
  z-index: 2;
}
.top-block02 .btn-list ul li .arrowbox:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: '';
  background: linear-gradient(-90deg, #65e7ff 0%, #00509a 100%);
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.top-block02 .btn-list ul li:hover .arrowbox:before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.top-block03 {
  position: relative;
  padding: 80px 0;
}
.top-block03:before {
  content: "";
  position: absolute;
  width: 75%;
  height: 800px;
  min-width: 900px;
  background: #041A4B;
  top: -425px;
  left: 0;
  z-index: -2;
}
.top-block03 .boxcontent {
  width: 96%;
  margin: 0 auto;
  max-width: 1200px;
}
.top-block03 .boxcontent h2 {
  font-family: "Noto Serif JP";
  font-weight: 500;
  font-size: 53px;
  letter-spacing: 0.28em;
  color: #fff;
  position: relative;
  top: 1em;
}
.top-block03 .h2sub {
  font-family: "Noto Serif JP";
  font-weight: 300;
  font-size: 148px;
  letter-spacing: 0.06em;
  text-align: right;
  color: #296EAD;
  opacity: 0.1;
  position: absolute;
  z-index: 1;
  top: 80px;
  left: 5%;
}
.top-block03 .boxcontent .btn-list ul {
	margin: 120px 0 0;
  width: 106%;
	position: relative;
	left: -3%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.top-block03 .boxcontent .btn-list ul li {
  width: 25%;
	margin: 0 1.5% 50px;
  position: relative;
}
.top-block03 .boxcontent .btn-list ul li .imgbox {
  box-shadow: -3px 10px 20px -6px rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  position: relative;
}
.top-block03 .boxcontent .btn-list ul li .imgbox img {
  border-radius: 2px;
}
.top-block03 .btn-list ul li .arrowbox {
  width: 45px;
  height: 45px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: #313131;
  overflow: hidden;
}
.top-block03 .btn-list ul li .arrowbox:after {
  content: "";
  position: absolute;
  left: calc(50% - 9px);
  top: calc(50% - 5px);
  width: 18px;
  height: 10px;
  background: url("../img/arrow01.png") no-repeat center center;
  background-size: contain;
  z-index: 2;
}
.top-block03 .btn-list ul li .arrowbox:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: '';
  background: linear-gradient(-90deg, #65e7ff 0%, #00509a 100%);
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.top-block03 .btn-list ul li:hover .arrowbox:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.top-block03 .btn-list ul li .p01 {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: #296bad;
  margin: 20px 0 5px;
}
.top-block03 .btn-list ul li .p02 {
  font-size: 20px;
  letter-spacing: 0.08em;
}


/* 共通　スタイル　*/
.c-style .main {
  width: 100%;
  position: relative;
  margin: 0 auto;
}
.c-style .main .imgbox {
  position: relative;
  overflow: hidden;
}
.c-style .main .textbox {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  z-index: 2;
  transition-delay: 1s;
}
.c-style h1 {
  font-family: "Noto Serif JP";
  font-weight: 500;
  font-size: 35px;
  letter-spacing: 0.28em;
  text-align: center;
  color: #fff;
  text-shadow: 0px 3px 14px #000e24;
  filter: glow(color=#000e24,strength=5px);
  margin-bottom: 20px;
}
.content-box {
  width: 100%;
  padding: 100px 0 0;
}
.company .content-box, .info .content-box {
  padding: 0px 0 0;
}
.content-box .h201 {
  font-family: "Noto Serif JP";
  font-weight: 500;
  font-size: 35px;
  letter-spacing: 0.28em;
  text-align: center;
  color: #003993;
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 50px;
}
.content-box .h201:after {
  content: "";
  width: 34px;
  height: 1px;
  position: absolute;
  background: #003993;
  bottom: 0;
  left: calc(50% - 17px);
}
.content-box .textbox {
  width: 90%;
  max-width: 695px;
  margin: 0 auto 40px;
  position: relative;
}
.content-box .textbox.extra {
  padding-bottom: 80px;
}
.content-box .textbox .p01 {
  font-size: 16px;
  letter-spacing: 0.07em;
  line-height: 30px;
}
.content-box .textbox .p01c {
  font-size: 16px;
  letter-spacing: 0.07em;
  line-height: 30px;
  text-align: center;
}
.innter-link {
  width: 100%;
  height: 200px;
  position: relative;
  padding: 0 0 0;
  box-sizing: border-box;
  z-index: 2;
  margin-top: -40px;
  margin-bottom: -40px;
}
.innter-link:before {
  content: "";
  position: absolute;
  width: 90%;
  height: 100%;
  left: 10%;
  top: -60px;
  background: url("../img/top-deco.png") repeat center center;
  background-size: 700px auto;
  z-index: -1;
}
.innter-link ul {
  width: 90%;
  margin: 0 auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.innter-link ul li {
  width: 25%;
  margin: 0;
  text-align: center;
  height: 70px;
  position: relative;
  cursor: pointer;
}
.innter-link ul li:nth-child(n+2) {
  border-left: solid 1px rgba(255,255,255,0.2);
}
.innter-link ul li p {
  font-family: "Noto Serif JP";
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  position: relative;
  top: 40%;
  width: 100%;
  transform: translateY(-50%);
}
.innter-link ul li:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 5px);
  width: 10px;
  height: 5px;
  background: url("../img/arrow-down.png") no-repeat center center;
  background-size: contain;
}
.cont-block {
  padding: 100px 0 50px;
}
.deco2, .deco3, .deco4, .deco5 {
  position: relative;
}
.deco2:before {
  content: "";
  position: absolute;
  left: 45%;
  top: -100px;
  width: 55%;
  height: 600px;
  background: #F4F4F4;
  z-index: -1;
}
.info .deco2:after {
  content: "";
  position: absolute;
  left: 0;
  top: 30%;
  width: 25%;
  height: 800px;
  background: #F7F9FC;
  z-index: -1;
}
.value .deco3:after {
  content: "";
  position: absolute;
  left: 0;
  top: 30%;
  width: 25%;
  height: 800px;
  background: #F7F9FC;
  z-index: -5;
}
.value .deco4:after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  width: 35%;
  height: 800px;
  background: #F7F9FC;
  z-index: -5;
}
.value .deco5:after {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  width: 35%;
  height: 800px;
  background: #F7F9FC;
  z-index: -5;
}
/* トップメッセージ */
.message .main {
  width: 100%;
  position: relative;
  margin: 0 auto;
}
.message .main .imgbox {
  position: relative;
  overflow: hidden;
}
.message .main .textbox {
  position: absolute;
  bottom: 50%;
  left: 10%;
  transform: translateY(50%);
  z-index: 2;
  transition-delay: 1s;
}
.message h1 {
  display: inline-block;
  padding: 0 20px;
  font-family: "Noto Serif JP";
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.11em;
  color: #fff;
  line-height: 40px;
  background: #003993;
  margin-bottom: 20px;
}
.message h2 {
  font-family: "Noto Serif JP";
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 0.19em;
  color: #fff;
  margin-bottom: 20px;
}
.message .main .p-name {
  position: relative;
  font-size: 14px;
  color: #fff;
  border-left: 1px solid #FFF;
  padding: 0 0 0 10px;
}
.message .main .p-name span {
  font-family: "Noto Serif JP";
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.11em;
  margin: 10px 0 0;
  display: inline-block;
}
.message .insert01 {
  position: relative;
  left: 0;
  margin: 100px 0;
  width: 90%;
  z-index: -1;
}
.message .insert01:before {
  content: "";
  width: 40%;
  height: 580px;
  position: absolute;
  right: calc(0% - 10vw);
  top: -400px;
  background: #F4F4F4;
  z-index: -2;
}
.message .deco-box {
  position: relative;
}
.message .deco-box:before {
  content: "";
  width: 30%;
  height: 120%;
  position: absolute;
  left: 0;
  bottom: -30%;
  background: #F4F4F4;
  z-index: -2;
}
.message .foot-name {
  position: absolute;
  font-size: 14px;
  color: #102546;
  right: 0;
  bottom: 0;
  display: inline-block;
}
.message .foot-name span {
  font-family: "Noto Serif JP";
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.11em;
  margin: 10px 0 0;
  display: block;
}
.msgp01 {
  margin-bottom: 2em;
}
/* 募集要項 */
.outline {
  width: 80%;
  margin: 0 auto;
  max-width: 900px;
}
.outline th, .outline td {
 border-bottom: dotted 1px #C3CAD6;
 padding: 20px 0;
}
.outline th.last-line, .outline td.last-line {
  border-bottom: none;
}
.outline th {
	width: 20%;
	vertical-align: top;
  font-family: "Noto Serif JP";
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 30px;
  color: #003993;
}
.outline td {
	width: 80%;
  font-size: 16px;
  line-height: 1.8em;
}
.outline td .idt01 {
  padding-left: 4em;
  display: inline-block;
}
.formbox {
  width: 80%;
  margin: 50px auto 50px;
  max-width: 650px;
}


/* 価値観と働き方 */

.v-title-wrap1, .v-title-wrap2, .v-title-wrap3 {
  width: 100%;
  position: relative;
}
.v-title {
  width: 100%;
  height: 370px;
  position: relative;
  box-sizing: border-box;
}
.v-title-wrap1 .v-title:before, .v-title-wrap3 .v-title:before {
  content: "";
  position: absolute;
  width: 65%;
  min-width: 800px;
  height: 100%;
  left: 0;
  top: 0;
  background: url("../img/top-deco.png") repeat center center;
  background-size: 700px auto;
  z-index: -1;
}
.v-title-wrap2 .v-title:before {
  content: "";
  position: absolute;
  width: 65%;
  min-width: 950px;
  height: 100%;
  right: 0;
  top: 0;
  background: url("../img/top-deco.png") repeat center center;
  background-size: 700px auto;
  z-index: -1;
}
.title-text {
  width: 90%;
  margin: 0 auto;
  max-width: 1000px;
  height: 370px;
  position: relative;
  box-sizing: border-box;
  padding: 55px 0 0;
}
.title-text h3 {
  font-family: "Noto Serif JP";
  font-weight: 500;
  font-size: 53px;
  letter-spacing: 0.15em;
  color: #fff;
  margin-bottom: 30px;
}
.v-title p {
  font-family: "Noto Serif JP";
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.11em;
  line-height: 2em;
  color: #fff;
}
.v-title-wrap2 .title-text h3, .v-title-wrap2 .title-text p {
  text-align: right;
}
.title-text .h3sub {
  font-family: "Noto Serif JP";
  font-weight: 300;
  letter-spacing: 0.06em;
  color: #296ead;
  opacity: 0.12;
}
.v-title-wrap1 .h3sub {
  font-size: 140px;
  position: absolute;
  top: -40px;
}
.v-title-wrap2 .h3sub {
  font-size: 130px;
  position: absolute;
  top: -40px;
  right: -6vw;
}
.v-title-wrap3 .h3sub {
  font-size: 100px;
  letter-spacing: 0em;
  position: absolute;
  top: -40px;
  left: -6vw;
}
.v-title-wrap1 .imgbox {
  width: 80%;
  position: relative;
  margin: -100px 0 100px;
  z-index: -2;
  left: 20%;
}
.v-title-wrap2 .imgbox {
  width: 45%;
  position: relative;
  margin: -200px 0 100px;
  z-index: -2;
  left: 0;
}
.v-title-wrap3 .imgbox {
  width: 50%;
  position: relative;
  margin: -150px 0 100px;
  z-index: -2;
  left: 50%;
}
.list-blue {
  width: 100%;
  box-sizing: border-box;
  padding-left: 1em;
  margin: 1em 0 2em;
}
.list-blue li {
  list-style: outside;
  font-size: 16px;
  color: #003993;
  line-height: 2em;
}


/* 事業内容と強み */
.business .content-box h3 {
  display: inline-block;
  padding: 0 20px;
  font-family: "Noto Serif JP";
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.11em;
  color: #fff;
  line-height: 40px;
  background: #003993;
  margin: 20px 0 20px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  transition: all .5s;
  opacity: 0;
}
.business .content-box h3.eon {
  opacity: 1;
  margin: 0 0 20px;
}
.business h4 {
  font-family: "Noto Serif JP";
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.11em;
  text-align: center;
  margin-bottom: 30px;
}
.business .fig01 {
  width: 96%;
  margin: 100px auto 0;
  max-width: 1000px;
}
.business .fig02 {
  margin-bottom: 30px;
}
.business .fig04 {
  margin-top: 30px;
}
.numbox, .numbox2 {
  width: 100%;
  position: relative;
  margin: 200px 0 0;
}
.numbox:before {
  width: calc(50% + 420px);
  height: 85%;
  content: "";
  position: absolute;
  right: 0;
  top: -30px;
  background: #F4F4F4;
  z-index: -3;
}
.numbox2:before {
  width: calc(50% + 420px);
  height: 85%;
  content: "";
  position: absolute;
  left: 0;
  top: -30px;
  background: #F4F4F4;
  z-index: -3;
}
.num {
  position: absolute;
  left: -140px;
  top: -100px;
  width: 140px;
}
.numtitle {
  font-family: "Noto Serif JP";
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.11em;
  color: #003993;
  margin-bottom: 20px;
}
.fig-title {
  font-family: "Noto Serif JP";
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.11em;
  color: #003993;
  margin: 30px 0 20px;
  padding-left: 20px;
}
.fig-title:before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  left: 0;
  top: 9px;
  transform: rotate(45deg);
  background: #003993;
}
.t-small {
  font-size: 90%;
}
.business .deco3:after {
  content: "";
  position: absolute;
  left: 0;
  top: -100px;
  width: 55%;
  height: 600px;
  background: #F7F9FC;
  z-index: -5;
}
.business .deco4:after {
  content: "";
  position: absolute;
  left: 0;
  top: -500px;
  width: 55%;
  height: 500px;
  background: #F7F9FC;
  z-index: -5;
}
.business .deco5:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -300px;
  width: 55%;
  height: 500px;
  background: #F7F9FC;
  z-index: -5;
}



.cont-block2 {
  width: 100%;
  padding: 80px 0;
  background: #F7F9FC;
}
.number .btm-block {
  padding-top: 0;
}
.number .deco2:before {
  top: -100px;
}
.numbers {
  width: 90%;
  margin: 0 auto;
  max-width: 1000px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.numbers li {
  width: 32.33%;
  box-sizing: border-box;
  position: relative;
  background: #fff;
  border: 5px solid #e2e8f0;
  margin-bottom: 30px;
}
.num-title {
  position: absolute;
  width: 80%;
  height: 65px;
  background: #003993;
  text-align: center;
  color: #FFFFFF;
  z-index: 3;
  font-family: "Noto Serif JP";
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.11em;
  top: -20px;
  left: 10%;
        align-items: center;
        display: flex;
        justify-content: center;
}
.num-title:after{
    border: solid transparent;
    content: '';
    height: 0;
    width: 0;
    pointer-events: none;
    position: absolute;
    border-color: rgba(182, 3, 85, 0);
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 10px;
    border-right-width: 10px;
    margin-left: -10px;
    border-top-color: #003993;
    top: 100%;
    left: 50%;
}
.num-text {
  width: 100%;
  height: 220px;
  background-repeat: no-repeat;
  background-size: auto 130px;
  background-position: center 70%;
}
.numbers li:nth-child(1) .num-text {
  background-image: url("../img/num-icon01.png");
}
.numbers li:nth-child(2) .num-text {
  background-image: url("../img/num-icon02.png");
}
.numbers li:nth-child(3) .num-text {
  background-image: url("../img/num-icon03.png");
}
.numbers li:nth-child(4) .num-text {
  background-image: url("../img/num-icon04.png");
}
.numbers li:nth-child(5) .num-text {
  background-image: url("../img/num-icon05.png");
}
.numbers li:nth-child(6) .num-text {
  background-image: url("../img/num-icon06.png");
}
.numbers li:nth-child(7) .num-text {
  background-image: url("../img/num-icon07.png");
}
.numbers li:nth-child(8) .num-text {
  background-image: url("../img/num-icon08.png");
}
.numbers li:nth-child(9) .num-text {
  background-image: url("../img/num-icon09.png");
}
.numbers li:nth-child(10) .num-text {
  background-image: url("../img/num-icon10.png");
}
.numbers li:nth-child(11) .num-text {
  background-image: url("../img/num-icon11.png");
}
.numbers li:nth-child(12) .num-text {
  background-image: url("../img/num-icon12.png");
}


.numbers li:nth-child(7) .num-title {
  line-height: 30px;

}
.num-text p {
  display: inline-block;
  position: absolute;
  width: 100%;
  top: 40%;
  transform: translateY(-50%);
  text-align: center;
  font-family: "Noto Serif JP";
  font-weight: 500;
  font-size: 33px;
  color: #003993;
}
.num-text p span {
  font-size: 70px;
}
.num-text p span.mini {
  font-size: 40px;
}
.num-text p.vc {
	line-height: 1em;
	top: 43%;
}
.num-text p span.small {
	font-size: 14px;
}
.num-detail {
  height: 110px;
  border-top: dotted 2px #C3CAD6;
  box-sizing: border-box;
  padding: 10px;
}
.num-detail p {
  font-size: 14px;
  line-height: 24px;
}
.number .fnote {
  width: 90%;
  margin: 0 auto 80px;
  max-width: 1000px;
}
.office-wrap {
  width: 90%;
  margin: 0 auto 0;
  max-width: 1000px;
}
.cont-block2 h2 {
  font-family: "Noto Serif JP";
  font-weight: 500;
  font-size: 19px;
  letter-spacing: 0.11em;
  color: #003993;
  margin: 30px 0 20px;
  padding-left: 20px;
  position: relative;
}
.cont-block2 h2:before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  left: 0;
  top: 11px;
  transform: rotate(45deg);
  background: #003993;
}
.office {
  width: 100%;
  margin-bottom: 60px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.office .imgbox {
  width: 50%;
  position: relative;
}
.office.flip .imgbox {
  width: 50%;
  left: 50%;
}
.office .text {
  width: calc(50% + 50px);
  background: #FFF;
  left: calc(50% - 50px);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
  padding: 20px;
}
.office.flip .text {
  left: 0;
}
.office .text h3 {
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.07em;
  line-height: 25px;
  color: #003993;
  margin-bottom: 10px;
}
.office .text p {
  font-size: 16px;
}





.people .main {
  position: relative;
  margin-bottom: 80px;
}
.people .main .imgbox {
  position: relative;
  overflow: hidden;
}
.people .main .textbox {
  position: absolute;
  width: 230px;
  height: 160px;
  left: 65%;
  bottom: 5%;
  background: url("../img/top-deco.png") repeat left center;
  background-size: 700px auto;
  box-sizing: border-box;
  padding: 30px 0 0 35px;
}
.people .main .textbox p {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.11em;
  line-height: 24px;
  color: #fff;
}
.people .main .textbox p span {
  font-family: "Noto Serif JP";
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.11em;
  padding: 15px 0 0;
  display: block;
}
.people .insert-full {
  position: relative;
  overflow: hidden;
}
.poepole-block01 {
  padding: 100px 0 20px;
  background: #F7F9FC;
}
.people .main h1 {
  position: absolute;
  width: 90%;
  max-width: 1000px;
  text-align: center;
  background: #FFF;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  font-family: "Noto Serif JP";
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 0.1em;
  line-height: 1.6em;
  color: #003993;
  padding: 30px 0 30px;
}
.people .insert01 {
  width: 90%;
  max-width: 695px;
  margin: 0 auto 100px;
  position: relative;
}
.people .textbox {
  margin-bottom: 100px;
}
.people h2 span {
  display: inline-block;
  font-size: 20px;
  color: #FFF;
  font-family: "Noto Serif JP";
  position: relative;
  line-height: 2em;
  padding: 0 .8em;
  background: #003993;
  margin-bottom: 5px;
  z-index: -1;
}
.people h3 {
  font-family: "Noto Serif JP";
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0.12em;
  color: #003993;
  padding: 20px 0;
  line-height: 1.6em;
}
.people-link {
  padding: 80px 0 40px;
}
.people-link ul {
  width: 90%;
  margin: 0 auto;
  max-width: 800px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
gap: 20px;
}
.people-link ul li {
  position: relative;
  width: 30.33%;
	margin-bottom: 40px;
}
.people-link ul li .imgbox {
  position: relative;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
}
.people-link ul li .imgbox img {
  border-radius: 2px;
}
.people-link ul li .arrowbox {
  width: 45px;
  height: 45px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: #313131;
  overflow: hidden;
}
.people-link ul li .arrowbox:after {
  content: "";
  position: absolute;
  left: calc(50% - 9px);
  top: calc(50% - 5px);
  width: 18px;
  height: 10px;
  background: url("../img/arrow01.png") no-repeat center center;
  background-size: contain;
  z-index: 2;
}
.people-link ul li .arrowbox:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: '';
  background: linear-gradient(-90deg, #65e7ff 0%, #00509a 100%);
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.people-link ul li:hover .arrowbox:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.people-link ul li .p01 {
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 25px;
  color: #313131;
  padding: 10px 0 0;
}
.people-link ul li .p02 {
  font-family: "Noto Serif JP";
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.11em;
  color: #313131;
}





/* 動画ギャラリー 2023.12.05 追記　*/
.movie .cont-block {
	padding: 50px 0 0;
}
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.movie-holder.size-large {
	width: 90%;
	margin: 0 auto;
	max-width: 700px;
}
.movie .sub-ttl {
	font-size: 22px;
	text-align: center;
	font-family: "Noto Serif JP";
  font-weight: 500;
}
.movie .sub-ttl span {
	display: inline-block;
	color: #FFF;
	background: #003993;
	padding: 0 20px;
	line-height: 1.8em;
	margin-bottom: 15px;
	letter-spacing: 0.11em;
}
.movie .sub-ttl + p  {
	font-size: 24px;
	text-align: center;
	font-family: "Noto Serif JP";
  font-weight: 500;
	letter-spacing: 0.11em;
}
.movie-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin: 50px auto 0;
	width: 90%;
	max-width: 1000px;
}
.movie-list.center {
	justify-content: center;
}
.movie-list li {
	width: 48%;
	margin: 0 1% 80px;
}

.movie-list li > p {
	font-size: 14px;
	padding: 10px 0 0;
}
.movie-list li > .name {
	color: #102546;
	padding: 15px 0 0;
	font-size: 15px;
}
.movie-list li > .name span {
	font-family: "Noto Serif JP";
	font-size: 24px;
	display: block;
	line-height: 1.6em;
}
.movie .deco2:before {
	display: none;
}
.movie .deco2:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 35%;
  height: 500px;
  background: #F7F9FC;
  z-index: -5;
}
.movie .deco3:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0%;
  width: 35%;
  height: 500px;
  background: #F7F9FC;
  z-index: -5;
}