@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&family=Noto+Sans+JP:wght@400;500;700&display=swap');


/* base */

html {
	font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
	font-family: 'Noto Sans JP', Osaka, "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", 'Montserrat', sans-serif;
	font-size: 1.4rem;
  line-height: 1.2;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
  color: #323639;
  background-color: #ffffff;
}
a {
	color: inherit;
	text-decoration: none;
}
img {
	max-width: 100%;
	height: auto;
}
figure { line-height: 0.5; }
sup {
	font-size: 1.0rem;
  color: #888;
}
input,
textarea,
select {
	font-family: inherit;
}
* { box-sizing: border-box; }

/* COMMON
-------------------------------*/

.display-block {
	display: block;
}
.hidden {
	display: none !important;
	visibility: hidden;
}
.clearfix:before,
.clearfix:after {
	content: "";
	display: table;
}
.clearfix:after {
	clear: both;
}
.clear {
	clear: both;
}
.sp-only {
	display: none !important;
}
.pc-only {
	display: block !important;
}
.bold {
	font-weight: bold;
}
p.notes {
	font-size: 1.0rem;
  line-height: 1.4;
  color: #888;
}
.img--frame {
  border: solid 1px #d2d2d2;
}

.pt0 {
	padding-top: 0px !important;
}
.pt50 {
	padding-top: 50px !important;
}
.pb0 {
	padding-bottom: 0px !important;
}
.mb0 {
	margin-bottom: 0px !important;
}
.mb20 {
	margin-bottom: 20px !important;
}
.mb25 {
	margin-bottom: 25px !important;
}

.wrap--lightgray {
  background: #f1f2f6;
}
.wrap--white {
  background: #fff;
}

.l-wrapper p,
.box__inner p {
	line-height: 1.85;
}
.l-wrapper p a {
	color: #009df7;
}

/* Layout SP
---------------------------------------------------------------------*/

.l-body {
	width: 100%;
	overflow: hidden;
}
.l-body.is-fixed {
	position: fixed;
}
.l-header {
  position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 6000;
}
.l-header__inner {
	height: auto;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	overflow: hidden;
}
.l-footer {
	color: #FFFFFF;
}
.l-footer__main {
	background: #252f3b;
	padding: 60px 0 42px;
}
.l-footer__sub {
	background: #1a1a1a;
	padding: 57px 0;
}
.l-wrapper {
	width: 88%;
	position: relative;
	margin-left: auto;
	margin-right: auto;
}
.l-main {
	padding: 50px 0 60px;
}

/* Module SP
---------------------------------------------------------------------*/
/* Module - navi */

.header-logo {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 20px;
	position: relative;
}
.header-logo img {
	width: 115px;
}
.sp-menu-btn {
	width: 60px;
	height: 53px;
	position: relative;
	display: block;
	z-index: 5000;
	border: none;
  background-color: inherit;
}
.sp-menu-btn span {
	display: block;
	overflow: hidden;
	white-space: nowrap;
	text-indent: 100%;
	width: 22px;
	height: 3px;
	background: #FFFFFF;
	position: absolute;
	-webkit-transition: 0.2s;
	transition: 0.2s;
	left: 50%;
	top: 50%;
}
.sp-menu-btn span:nth-child(1) {
	-webkit-transform: translate(-50%, -9px);
	-ms-transform: translate(-50%, -9px);
	transform: translate(-50%, -9px);
}
.sp-menu-btn span:nth-child(2) {
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.sp-menu-btn span:nth-child(3) {
	-webkit-transform: translate(-50%, 6px);
	-ms-transform: translate(-50%, 6px);
	transform: translate(-50%, 6px);
}
.sp-menu-btn.is-opend span {
	width: 25px;
	height: 2px;
}
.sp-menu-btn.is-opend span:nth-child(1) {
	-webkit-transform: translate(-50%, 50%) rotate(45deg);
	-ms-transform: translate(-50%, 50%) rotate(45deg);
	transform: translate(-50%, 50%) rotate(45deg);
}
.sp-menu-btn.is-opend span:nth-child(2) {
	opacity: 0;
	left: 50%;
}
.sp-menu-btn.is-opend span:nth-child(3) {
	-webkit-transform: translate(-50%, 50%) rotate(-45deg);
	-ms-transform: translate(-50%, 50%) rotate(-45deg);
	transform: translate(-50%, 50%) rotate(-45deg);
}
.globalnavi {
	display: none;
	position: fixed;
  position: relative;
	top: -65px;
	left: 0;
	width: 100%;
	background: #182e5a;
	color: #FFFFFF;
	overflow: auto;
}
.globalnavi__inner {
	width: 72.16vw;
  height: 100vh;
	margin-left: auto;
	margin-right: auto;
	padding: 80px 0 0;
}
.globalnavi__item {
	position: relative;
}
.globalnavi__link {
	font-weight: bold;
	font-size: 1.6rem;
	letter-spacing: 0.04em;
	height: 80px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-bottom: 2px;
  border-bottom: solid 1px #4c5e71;
  position: relative;
}
.globalnavi__link--has-child {
	position: relative;
}
.globalnavi__link--has-child:before,
.globalnavi__link--has-child:after {
	content: "";
	display: block;
	width: 12px;
	height: 2px;
	background: #FFFFFF;
	position: absolute;
	top: 50%;
	right: 6px;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.globalnavi__link--has-child:after {
	-webkit-transform: translate(-50%, -50%) rotate(90deg);
	-ms-transform: translate(-50%, -50%) rotate(90deg);
	transform: translate(-50%, -50%) rotate(90deg);
}
.globalnavi__children {
	display: none;
	padding: 0px 0 30px;
}
.globalnavi__child a {
	font-size: 1.4rem;
	display: block;
	padding: 9px 0 8px;
	line-height: 1.3;
}
.globalnavi__child > a {
  margin-bottom: 15px;
	padding: 10px 15px;
  background-color: #4c5e71;
  border-radius: 3px;
}
.globalnavi__child > a:first-child {
  margin-top: -3px;
}
.globalnavi__child > ul {
	padding-bottom: 30px;
}
.globalnavi__child > ul li {
	padding: 4px 0 4px 30px;
  position: relative;
}
.globalnavi__child > ul li::before {
	content: "";
	display: block;
	width: 10px;
	height: 1px;
	background: #FFFFFF;
	position: absolute;
	top: 50%;
	left: 12px;
}

/* Module - pagehead */

.pagehead {
	position: relative;
  height: 25vh;
  color: #fff;
  background: #66a6ff;
	background: -webkit-linear-gradient(33.37deg, #e0c3fc 0%, #66a6ff 50%, #6daaff 64%, #78deee 100%);
	background: linear-gradient(40deg, #e0c3fc 0%, #66a6ff 50%, #6daaff 64%, #78deee 100%);
}
.pagehead__contact {
  background: #66a6ff;
	background: -webkit-linear-gradient(33.37deg, #78d19b 0%, #708fca 50%, #848bcc 64%, #c1a6d8 100%);
	background: linear-gradient(40deg, #78d19b 0%, #708fca 50%, #848bcc 64%, #c1a6d8 100%);
}
.pagehead__contact.hr {
  background: #66a6ff;
	background: -webkit-linear-gradient(33.37deg, #708fca 0%, #44c69f 50%, #67c8a4 64%, #afce81 100%);
	background: linear-gradient(40deg, #708fca 0%, #44c69f 50%, #67c8a4 64%, #afce81 100%);
}
.pagehead__news {
  background: #66a6ff;
	background: -webkit-linear-gradient(33.37deg, #6adcf5 0%, #35a9b4 50%, #40aca5 64%, #8ad696 100%);
	background: linear-gradient(40deg, #6adcf5 0%, #35a9b4 50%, #40aca5 64%, #8ad696 100%);
}
.pagehead__inner {
	position: absolute;
	left: 4%;
	bottom: 0;
	z-index: 3;
	color: #FFFFFF;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.pagehead__image{
  position:relative;
  width:100%;
  height:0;
  padding-bottom:25vh;/* 幅に対する縦のサイズ */
  overflow:hidden;
  background-color:#009df7;
}
.pagehead__image > img{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:auto;
  height:auto;
  max-width:170%;
  max-height:initial;
}
.pagehead__txt {
  min-width: 310px;
  width: 100%;
	font-weight: 500;
	font-size: 4.2vw;
	letter-spacing: 0.09em;
	line-height: 1.2;
  padding-left: 4.6vw;
  padding-bottom: 5vh;
}
.pagehead__en {
	font: 300 10vw "Montserrat", sans-serif;
  margin-left: -0.5vw;
	display: block;
  letter-spacing: -0.04em;
	line-height: 1.2;
  position: relative;
}
.pagehead__en::before {
	content: "";
	display: block;
	width: 10px;
	height: 2px;
	background: #FFFFFF;
	position: absolute;
	top: 50%;
	left: -4.8vw;
}

/* Module - breadcrumb */

.breadcrumb {
	display: none;
}

/* Module - heading */

.heading-1 {
	font-size: 2.7rem;
  letter-spacing: 0.055em;
  margin-bottom: 34px;
}
.heading-2 {
  font-size: 2.4rem;
	font-weight: bold;
	margin-bottom: 20px;
}
.heading-3 {
  font: 300 2.4rem "Montserrat", sans-serif;
	position: absolute;
  top: 70px;
  left: 12%;
  color: #009df7;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  transform-origin:left top;
}
.heading-4 {
  position: relative;
	text-align: center;
	font-size: 1.8rem;
	font-weight: bold;
	margin: 20px 0;
}
p.heading-4 {
  position: relative;
  text-align: left;
  font-size: 1.4rem;
  font-weight: normal;
	margin: 20px 0;
}
.heading-4:before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #d2d2d2;
}
.heading-5 {
	text-align: center;
	font-size: 1.8rem;
	font-weight: bold;
  line-height: 1.5;
	margin: 20px 0 14px;
}
.heading-6 {
	font-size: 1.4rem;
	font-weight: bold;
	padding: 20px;
  color: #182e5a;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  width: 100%;
}
.heading-6::before,
.heading-6::after{
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.heading-6::before{
  right: 20px;
  width: 20px;
  height: 1px;
  background: #009df7;
}
.heading-6::after{
  top: 1px;
  right: 20px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #009df7;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.heading-7 {
  font-size: 2.4rem;
	font-weight: bold;
	margin-bottom: 20px;
  padding-left: 20px;
  position: relative;
}
.heading-7::before{
  content: "";
  position: absolute;
  left: 0px;
  width: 3px;
  height: 100%;
  background: #009df7;
}
.heading-7 span {
  display: block;
  margin-bottom: 5px;
  font-size: 1.3rem;
	font-weight: normal;
	color: #009df7;
}
.heading-8 {
  font-size: 1.8rem;
	font-weight: bold;
  padding: 0 20px;
  display: block;
  position: relative;
}
.heading-8::before{
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  background: #009df7;
  position: absolute;
  top: 50%;
  left: 0;
}
.heading-9 {
  font-size: 1.8rem;
  position: relative;
  margin: 1.0rem 0;
}
.heading-9::before{
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  background: #d2d2d2;
  position: absolute;
  top: 50%;
  left: -20px;
}

/* Module - list */

.list--disc li{
  position: relative;
  margin-top: 1.7rem;
  padding-left: 15px;
}
.list--disc li:before {
  content: "";
  position: absolute;
  top: 0.95rem;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #8391a0;
  border-radius: 50%;
}
.column .list--disc li:before {
  top: 0.5rem;
}
.wrap--intro .list--disc li:before {
  top: 0.5rem;
}
.wrap--intro .list--disc {
  margin: 1.7rem 0.8rem;
}

/* Module - button */

.btn{
  font: 700 1.4rem "Montserrat", sans-serif;
  padding: 10px 5% 10px 5%;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}
.btn--type01 {
  padding-right: 20%;
  border: 1px solid #d2d2d2;
}
.btn--type01:after {
  position: absolute;
  content: " ";
  z-index: 1;
  width: 24%;
  top: 50%;
  right: 9%;
  height: 1px;
  background: #009df7;
  transition: all 0.3s ease;
}
.btn--type01.hr:after {
  background: #00a78d;
}
.btn--type01:hover {
  color: #009df7;
}
.btn--type01:hover:after {
  right: -10%;
}

/* Module - footer */

.footer__heading--en {
	font: 300 2.6rem "Montserrat", sans-serif;
	display: block;
  letter-spacing: -0.02em;
  color: #009df7;
}
.footer__heading {
  margin-bottom: 30px;
	font-weight: 300;
	font-size: 1.6rem;
	letter-spacing: 0.09em;
	line-height: 1.2;
}
.footer__button {
  margin-bottom: 20px;
  padding: 15px 0;
  display: inline-block;
  width: 100%;
  font-size: 1.4rem;
  font-weight: bold;
  background: #4c5e71;
}
.footer__attention {
  margin: 10px 0 0;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
}
.footer__attention--tel {
  margin: 2px 0;
  font: 600 9.0vw "Montserrat", sans-serif;
}
.footer__navi {
	text-align: center;
}
.footer__navi--item li {
  font: 500 1.2rem "Montserrat", sans-serif;
	margin: 12px 18px 12px 0;
  display: inline-block;
  vertical-align: middle;
}
.footer__navi--item li:last-child {
	margin-right: 0;
}
.footer__navi--item .facebook {
	width: 35px;
}
.footer__navi--item .linkdin {
	width: 38px;
}
.footer__navi--item li > a {
	padding: 8px 0;
}
.footer__navi--item li > a:hover {
	color: #009df7;
  transition: .3s;
}
.footer--name {
	padding: 8px 0;
	font-weight: 500;
}
.footer--address {
	padding: 8px 0;
	font-size: 1.2rem;
}
.copyright {
  font: 600 1.1rem "Montserrat", sans-serif;
	padding: 8px 0;
  color: #4c5e71;
}
.pagetop {
	width: 50px;
	height: 50px;
	position: absolute;
	top: 0px;
	right: 0;
	z-index: 10;
	display: block;
	transition: .2s;
	background: #4c5e71;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}
.pagetop a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 2;
}
.pagetop:before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	content: '';
	background: #009df7;
	transform-origin: right top;
	transform: scale(0, 1);
	transition: transform .3s;
}
.pagetop:hover:before {
	transform-origin: left top;
	transform: scale(1, 1);
}
.pagetop a:before,
.pagetop a:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
}
.pagetop a:before {
	height: 22px;
	width: 1px;
	background: #fff;
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
.pagetop a:after {
	width: 8px;
	height: 8px;
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	top: 0;
	-webkit-transform: translate(-50%,14px) rotate(45deg);
  -moz-transform: translate(-50%,14px) rotate(45deg);
  transform: translate(-50%,14px) rotate(45deg);
}

/* Module - box */

.box__inner {
  padding: 12% 9%;
}
.box__inner2 {
  padding: 50px 9% 0;
  position: relative;
}
.box__inner4 {
  padding: 30px 0 0;
  position: relative;
}
.sec__body {
  margin-bottom: 20px;
}
.f-container-center li { /* tb */
	margin: 10px 2%;
}
.column {
  margin: 40px 10px;
  counter-increment: count;
}
.column .icon { /* tb */
  width: 80px;
  margin: 0px auto 20px;
}
.numbering:before {
	content: counter(count, decimal-leading-zero);
  position: relative;
  top: 0;
  font: 700 1.5rem "Montserrat", sans-serif;
  line-height: 2.5;
  color: #fff;
  text-align: center;
	display: block;
	width: 40px;
	height: 40px;
	margin: 0px auto 20px;
  border-radius: 50%;
  background: #009df7;
  z-index: 2;
}
.catetop__list{
  position: relative;
  counter-increment: count;
  margin: 20px 0 0 20px;
  padding: 10px;
  background: #fff;
}
.catetop__list.arrow::before,
.catetop__list.arrow::after{
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: 22px auto 0;
  content: "";
  vertical-align: middle;
}
.catetop__list.arrow::before{
  right: 20px;
  width: 20px;
  height: 1px;
  background: #009df7;
}
.catetop__list.arrow::after{
  top: -3px;
  right: 21px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #009df7;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.catetop__heading--number {
  font: 600 1.7rem "Montserrat", sans-serif;
  color: #009df7;
  text-align: center;
	display: inline-block;
  margin: 2px 10px 0;
}
.catetop__heading--txt1 {
  font-size: 1.6rem;
  font-weight: bold;
  color: #009df7;
  text-align: center;
  margin: 0 10px;
}
.catetop__heading--txt2 {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 10px 10px 5px;
  flex-basis: 90%;
}
.catetop__heading--list li {
  display: inline-block;
  font-size: 1.2rem;
  color: #009df7;
  text-align: center;
  margin: 2px;
  padding: 5px 10px;
  background: #f1f2f6;
}
.service-list {
  margin: 40px 10px;
}
.service-list li  {
  padding-bottom: 20px;
}
.service-list li a {
  display: block;
  background: #fff;
}

/* Module - form */

.submit-area {
  position: relative;
  margin: 50px;
  text-align: center;
}
.form__btn {
  font-size: 1.6rem;
  padding: 20px 10%;
  background: transparent;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  border: 1px solid #d2d2d2;
}
.form__btn:hover {
  color: #009df7;
  border: 1px solid #009df7;
}
.form__input {
  width: 100%; /*親要素いっぱい広げる*/
  padding: 10px 15px; /*ボックスを大きくする*/
  font-size: 16px;
  border-radius: 3px; /*ボックス角の丸み*/
  border: 1px solid #ddd; /*枠線*/
  box-sizing: border-box; /*横幅の解釈をpadding, borderまでとする*/
  background-color: #f1f2f6;
}
textarea.form__input {
  min-height: 200px;
}
.checkbox {
  margin: 5px 10px;
}
.checkbox label{
  display: inline-block;
  vertical-align: top;
  margin: 0 5px;
  padding: 5px 10px 5px 30px;
}
.checkbox-input{
  display: none;
}
.checkbox-parts{
  display: inline-block;
  position:relative;
}
.checkbox-parts::before{
  content: "";
  display: block;
  position: absolute;
  top: -19px;
  left: -34px;
  width: 24px;
  height: 24px;
  margin-right: 30px;
  border: 1px solid #ddd;
  border-radius: 3px;
  background-color: #f1f2f6;
}
.checkbox-input:checked + .checkbox-parts::after{
  content: "";
  display: block;
  position: absolute;
  top: -15px;
  left: -24px;
  width: 6px;
  height: 12px;
  transform: rotate(40deg);
  border-bottom: 1.5px solid #003153;
  border-right: 1.5px solid #003153;
}

/* Module - flexbox */

.f-container-sp {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-left: auto;
	margin-right: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  flex-wrap: wrap;
}
.f-container-rowreverse .features-txt {
  margin-bottom: 20px;
  padding: 10px;
}

/* Module - decoration */

.wrap--intro {
  position: relative;
  background: url(/common/img/bg-intro.png) no-repeat right top;
  background-size: 50%;
}
.catetop__wrap--intro {
  position: relative;
  background: #f1f2f6;
  background: -webkit-linear-gradient(#ebecf1 0%, #f1f2f6 12%, #fff 12%, #fff 100%);
	background: linear-gradient(#e5e6ed 0%, #f1f2f6 12%, #fff 12%, #fff 100%);
}
.hr .catetop__wrap--intro {
  position: relative;
  background: #f1f2f6;
  background: -webkit-linear-gradient(#ebecf1 0%, #f1f2f6 43%, #fff 43%, #fff 100%);
	background: linear-gradient(#e5e6ed 0%, #f1f2f6 10%, #f1f2f6 43%, #fff 43%, #fff 100%);
}
.catetop__wrap--intro::before {
  content: "";
  position: absolute;
  top: -0px;
  left: 50%;
  width: 1px;
  height: 40px;
  background-color: #fff;
}
.sec__decoration {
  position: absolute;
  top: 10px;
  width: 80%;
  z-index: -1;
}

/* Module - slider */

.slider .box__case {
  width: 30%;
  padding: 20px;
}
.slider .box__case img {
  width: 100%;
}
.box__case--txt {
  padding: 8% 10%;
  border: solid 1px #eee;
  background-color: #fff;
}
.box__case--discription {
  font-size: 1.4rem;
  font-weight: bold;
}
.box__case--company {
  margin-top: 20px;
  color: #a5a8ab;
  font-size: 1.3rem;
  font-weight: bold;
}

/* Module - table */

.w20 { width: 20%; }
.w40 { width: 40%; }

.table-1 {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  background-color: #fff;
}
.table-1 th,.table-1 td {
  padding: 10px 5px;
  text-align: center;
  vertical-align: middle;
  border-top: solid 1px #d2d2d2;
  border-bottom: solid 1px #d2d2d2;
}
.table-1 th:nth-child(even),
.table-1 td:nth-child(even){
  background-color: #f3f4f7;
}
.table__heading-1 {
  font-weight: bold;
  color: #8391a0;
}
.table__heading-2 {
  font-weight: bold;
  color: #009df7;
}
.table__txt--bad li,
.table__txt--good li {
  position: relative;
  text-align: left;
  padding: 5px 0 5px 18px;
}
.table__txt--bad li:before,
.table__txt--good li:before {
	position: absolute;
  top: 0.8rem;
	left: 0;
	content: "";
	display: inline-block;
	width: 14px;
	height: 14px;
}
.table__txt--bad li:before{
	background: url(/common/img/ico-bad.svg) no-repeat;
	background-size: contain;
}
.table__txt--good li:before{
	background: url(/common/img/ico-good.svg) no-repeat;
	background-size: contain;
}
.check {
  position: relative;
  left: 45%;
  width: 6px;
  height: 12px;
  transform: rotate(40deg);
  border-bottom: 1.5px solid #003153;
  border-right: 1.5px solid #003153;
}




/* Pages SP
---------------------------------------------------------------------*/
/* Pages - top */

.loading{
  width: 100vw;
  height: 100vh;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.toppage__video-box {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  background: url(/common/img/bg-movie-toppage.jpg) no-repeat center center;
  background-size: cover;
}
.toppage__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.toppage__video-box::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.4);
}
.toppage__text-box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.toppage__copy {
  font: 300 100% Montserrat, monospace;
  font-size: 10vw;
  color:#fff;
  padding-left: 10%;
}
.toppage__animation--subcopy {
  position: absolute;
  top: 34%;
  right: 50%;
  width: 16vw;
}
.on.animation {
  animation: anime 0.5s linear infinite;
  animation-timing-function: ease;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  transition-timing-function: ease-out;
}

@keyframes anime {
    0% {color:rgba(255,255,255,1.0); transform: translateY(-400px);}
    50% {color:#000;}
    100%{
    color:rgba(0,157,247,0.9);
    position: relative;
    transform: translateY(0);
    -moz-transform: translateY(0);
  }
}

.toppage__wrap--intro {
  position: relative;
  padding: 12.0vh 0 0;
  background: url(/common/img/bg-intro-toppage.png) no-repeat 200% 20px;
  background-size: 80%;
}
.toppage__wrap--intro p {
  margin: 1.5rem 5.0vw 3.0rem 10%;
  font-size: 3.7vw;
  line-height: 2.2;
}
.l-top__business{
  width: 88%;
  margin: auto;
}
.toppage__sce-head__txt {
	font-weight: 500;
	font-size: 1.5rem;
	letter-spacing: 0.09em;
	line-height: 1.2;
  color: #182e5a;
  padding-bottom: 30px;
}
.toppage__sce-head__en {
	font: 300 3.0rem/1.2 "Montserrat", sans-serif;
  margin-left: -0.5vw;
	display: block;
  letter-spacing: -0.04em;
  position: relative;
}
.toppage__business--wrap {
	margin-bottom: 40px;
}
.toppage__business--wrap figure {
	margin-bottom: 10px;
}
.toppage__business--head {
	font-weight: 400;
	font-size:  1.5rem;
	letter-spacing: 0.09em;
	line-height: 1.2;
  margin-bottom: 20px;
  padding-left: 4.6vw;
  color: #182e5a;
}
.toppage__business--head__en {
	font: 300 2.4rem "Montserrat", sans-serif;
  margin-left: -0.5vw;
	display: block;
  letter-spacing: -0.04em;
  position: relative;
}
.toppage__business--head__en::before {
	content: "";
	display: block;
	width: 10px;
	height: 2px;
	background: #009df7;
	position: absolute;
	top: 50%;
	left: -4.8vw;
}
 .toppage__business--head__en.hr::before {
	background: #00a78d;
}
.toppage__about--wrap {
  border-bottom: solid 1px #d2d2d2;
}
.toppage__about--wrap .column {
	width: 33.333%;
  margin: 0;
  border-left: solid 1px #d2d2d2;
}
.toppage__about--wrap .column:first-child {
  border-left: none;
}
.toppage__about--head a {
	font-weight: 500;
	font-size:  3.0vw;
	letter-spacing: 0.09em;
	line-height: 1.2;
  padding: 100px 0;
  color: #182e5a;
  display: block;
}
.toppage__about--head__en {
	font: 400 3.8vw "Montserrat", sans-serif;
  margin-left: -0.5vw;
	display: block;
  letter-spacing: -0.04em;
	line-height: 1.2;
  position: relative;
}
.l-top__news {
  background: #f7f7fa url(/common/img/bg-news-toppage.jpg) no-repeat center bottom;
  background-size: 154%;
}
.toppage__news--wrap {
  margin: 20px 0 50px;
  border-top: solid 1px #d2d2d2;
}
.toppage__news--head {
  padding-bottom: 15px;
  border-bottom: solid 1px #d2d2d2;
}
.toppage__news--date {
  font: 400 1.5rem"Montserrat", sans-serif;
  color: #8391a0;
  padding: 15px 0 5px;
}
.toppage__news--head .ico_pdf:after{
	background-image: url(/common/img/ico_pdf.svg);
	display: inline-block;
	background-repeat: no-repeat;
	background-size: contain;
	vertical-align: text-top;
	content: "";
	width: 30px;
	height: 16px;
	margin: 0 5px;
}


/* Pages about */

.overview {
	font-size: 1.5rem;
	line-height: 1.7;
	border-bottom: 1px solid #d2d2d2;
	padding-bottom: 25px;
	margin-bottom: 25px;
  position: relative;
}
.overview:first-child {
	border-top: 1px solid #d2d2d2;
  padding-top: 25px;
}
.overview__heading {
	font-weight: bold;
  color: #8391a0;
}
.overview__text a {
	color: #004098;
}
.overview__text p {
  margin-top: 1.7rem;
}
.overview__text p:first-child {
  margin-top: 0;
}
.googlemap {
	margin: 20px 0 50px;
	width: 100%;
	height: 400px;
}
.googlemap iframe {
	width: 100%;
	height: 100%;
  border: solid 2px #fff;
}

/* Pages - searvice */

.entrance {
  position: relative;
  padding-top: 40px;
}
.entrance::after {
  position: absolute;
  content: " ";
  z-index: -1;
  width: 40%;
  top: 0;
  left: 0;
  height: 100%;
  background: #f1f2f6;
  background: -webkit-linear-gradient(#f1f2f6 0%, #f1f2f6 50%, #fff 100%);
	background: linear-gradient(#f1f2f6 0%, #f1f2f6 50%, #fff 100%);
}
.entrance:nth-child(even)::after {
  left: auto;
  right: 0;
}
.entrance p {
  margin: 1.0rem 0 2.0rem;
}
.wrap--intro + .entrance {
  margin-top: -20px;
}

/* Pages - hr */

.hr .heading-3,
.hr .catetop__heading--number,
.hr .catetop__heading--txt1,
.hr .catetop__heading--list li {
  color: #00a78d;
}
.hr .catetop__list.arrow::before {
  background: #00a78d;
}
.hr__job--wrap {
  margin: 20px 0;
  padding: 20px;
  border: solid 1px #d2d2d2;
  position: relative;
}
.hr__job--type {
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 5px 10px;
  text-align: center;
  color: #fff;
  line-height: 0.8;
  font-weight: 700;
  background: #00a78d;
}
.hr__job--head {
  padding: 5px 0 15px;
  font-weight: 600;
  color: #00a78d;
}
.hr__job--conditions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.hr__job--conditions dt,
.hr__job--conditions dd {
  padding: 10px 5px;
  border-top: dotted 1px #d2d2d2;
}
.hr__job--conditions dt{
  width: 40%;
  padding-left: 30px;
  font-weight: 600;
  position: relative;
}
.hr__job--conditions dd{
  width: 60%;
}
.hr__job--conditions dt:before {
	position: absolute;
  top: 1.2rem;
	left: 5px;
  text-align: center;
	content: "";
	display: inline-block;
	width: 14px;
	height: 14px;
}
.hr__job--conditions dt:nth-of-type(1):before {
	background: url(/common/img/ico-yen.svg) no-repeat;
	background-size: contain;
}
.hr__job--conditions dt:nth-of-type(2):before {
	background: url(/common/img/ico-time.svg) no-repeat;
	background-size: contain;
}
.hr__job--conditions dt:nth-of-type(3):before {
	background: url(/common/img/ico-calendar.svg) no-repeat;
	background-size: contain;
}
.hr__job--conditions dt:nth-of-type(4):before {
	background: url(/common/img/ico-map.svg) no-repeat;
	background-size: contain;
}
.hr__job--conditions dt:nth-of-type(5):before {
	background: url(/common/img/ico-exclamation.svg) no-repeat;
	background-size: contain;
  left: 11px;
}
.l-hr-footer__main{
  padding: 60px 0 42px;
  color: #fff;
  background: #007a68;
}
.l-hr__footer .l-footer__txt {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 1.0rem;
}
.hr .footer__heading--en {
  font: 300 2.6rem "Montserrat", sans-serif;
  display: block;
  letter-spacing: -0.02em;
  color: #00a78d;
}
.l-hr__footer .footer__button {
  margin: 20px 0;
  background: #00a78d;
}
.l-hr__footer .footer__button::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
  background: #015c4e;
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

/* Pages - privacy */

.privacy p {
  margin: 1.0rem 0 2.0rem;
}
.privacy ol {
  margin: 1.0rem 1.0rem 2.0rem;
  list-style: decimal;
}
.privacy ol ol {
  margin: 1.0rem 0 2.0rem 1.0rem;
  list-style: lower-roman;
}
.privacy ol li {
  margin: 1.0rem 0 1.0rem 1.0rem;
  padding: 0 0.5rem;
}

/* Pages - sitemap */

.sitemap .heading-6 {
  font-size: 1.6rem;
  padding: 0px;
}
.sitemap li a:hover {
  opacity: 0.7;
}
.sitemap .sitemap__upper {
  margin-top: 20px;
  padding: 20px 10px;
  font-weight: 700;
	font-size:  1.6rem;
  border-bottom: solid 1px #182e5a;
}
.sitemap .sitemap__lower {
	font-size:  1.5rem;
  margin: 0 -10px 0;
  padding: 20px 2.0rem;
  border-top: dotted 1px #d2d2d2;
  position: relative;
}
.sitemap .sitemap__lower::before {
  width: 12px;
  height: 1px;
  position: absolute;
  top: 30px;
  left: 0;
  margin-left: 12px;
  content: "";
  background: #182e5a;
}
.sitemap .sitemap__upper ul:first-of-type{
  margin-top: 20px;
}
.sitemap .sitemap__lower__block {
  margin-top: 0px;
}
.sitemap .sitemap__lower__block li {
  margin: 10px 0;
  padding: 15px 20px 18px;
  border-radius: 4px;
  background: #f1f2f6;
}
.sitemap .sitemap__lower .heading-6 {
  font-size: 1.5rem;
  line-height: 1.4;
  padding-left: 10px;
}
.sitemap .sitemap__lower__block li .heading-6 {
  font-size: 1.4rem;
  line-height: 1.4;
  padding-left: 0;
}

/* COMMON
-------------------------------*/

.tac {
	text-align: center;
}
.tar {
	text-align: right;
}
.tal {
	text-align: left;
}





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

/* COMMON TB
-------------------------------*/

.inline {
	display: inline-block;
  margin-right: 2.0rem;
}

.mb20 {
	margin-bottom: 20px !important;
}
.catetop__wrap--intro {
  padding-top: 100px;
  background: -webkit-linear-gradient(#ebecf1 0%, #f1f2f6 500px, #fff 500px, #fff 100%);
	background: linear-gradient(#e5e6ed 0%, #f1f2f6 10%, #f1f2f6 500px, #fff 500px, #fff 100%);
}
.catetop__wrap--intro::before {
  width: 1.5px;
  height: 200px;
}
.catetop__wrap--intro p {
  font-size: 1.6rem;
}


/* Layout TB
---------------------------------------------------------------------*/

.l-body { /* tb */
	padding-top: 0;
}
.l-footer { /* tb */
}
.l-footer__main { /* tb */
	padding: 136px 0 95px;
}
.l-footer__main__inner { /* tb */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.l-footer__main__inner > div { /* tb */
  width: 50%;
}
.l-footer__main__inner > div:nth-child(2) { /* tb */
  padding: 0 0 0 5%;
	border-left: solid 1px #ddd;
}
.l-footer__sub { /* tb */
	padding: 50px 0;
	font-size: 1.4rem;
}
.l-wrapper { /* tb */
	max-width: 1350px;
}
.l-main { /* tb */
	padding: 80px 0 160px;
}
.l-pc-wrapper { /* pc */
	width: 88%;
	max-width: 1220px;
	position: relative;
	margin-left: auto;
	margin-right: auto;
}

/* Module TB
---------------------------------------------------------------------*/
/* Module - navi TB */

.globalnavi__link { /* tb */
	font-size: 1.4rem;
  border-bottom: solid 0px #4c5e71;
}
.header-logo { /* tb */
	width: 200px;
  padding: 20px 30px;
}
.header-logo img {
	width: 100%;
}

/* Module - pagehead TB */

.pagehead { /* tb */
	position: relative;
  height: 22vh;
}
.pagehead__inner { /* tb */
	height: calc(100% - 55px);
	padding-bottom: 45px;
  position: absolute;
  left: 10vw;
  bottom: 0;
}
.pagehead__en { /* tb */
	font: 300 5.6vw "Montserrat", sans-serif;
}
.pagehead__en::before { /* tb */
	max-width: 40px;
  width: 2.6vw;
	height: 4px;
}
.pagehead__txt { /* tb */
  min-width: 700px;
	font-weight: 500;
	font-size: 1.4vw;
	letter-spacing: 0.09em;
	line-height: 1.2;
  padding-top: 50px;
  padding-left: 4.6vw;
}
.pagehead__image { /* tb */
	height: 100%;
  height: 22vh;
  padding-bottom: 22vh;
}
.pagehead__image > img{
  width:124%;
}

/* Module - breadcrumb　TB */

.breadcrumb { /* tb */
	display: block;
  border-bottom: solid 1px #ebecf3;
}
.breadcrumb__inner { /* tb */
	max-width: 1350px;
  width: 88%;
  margin: auto;
  padding: 15px 20px 15px 4.6vw;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
  font-size: 1.3rem;
	letter-spacing: 0.05em;
}
.breadcrumb__item:not(:last-child):after {
	content: "/";
	padding: 0 1em 0 0.8em;
  color: #d2d2d2;
}
.breadcrumb__item a {
	color: #8391a0;
	text-decoration: none;
}
.breadcrumb__item a:hover {
	text-decoration: underline;
}

/* Module - heading　TB */
  
.heading-4::before {
  top: -60px;
}
.heading-1 { /* tb */
  font-size: 4.3rem;
  letter-spacing: 0.055em;
  margin-bottom: 84px;
}
.heading-3 {
  font-size: 3.2rem;
  top: 0;
  left: 0;
}
.heading-6 {
  padding: 10% 0 10% 10%;
}
.heading-7 {
  font-size: 3.2rem;
	margin-bottom: 40px;
  padding: 10px 0 0 30px;
}
.heading-7::before{
  width: 5px;
}
.heading-7 span {
  font-size: 1.6rem;
}
.heading-9 {
  font-size: 2.8rem;
  margin-bottom: 2.0rem;
}
.heading-9::before {
  width: 10%;
  left: -12%;
}

/* Module - list TB */

.list--disc li::before {
  top: 1.1rem;
}
.wrap--intro .list--disc li::before,
.column .list--disc li::before {
  top: 0.7rem;
}
.list--disc li:first-child {
  margin-top: 0;
}

/* Module - button TB */

.btn{
  font: 700 1.6rem "Montserrat", sans-serif;
  padding: 12px 20px 12px 20px;
}
.btn--type01 {
  padding-right: 100px;
}

/* Module - box TB */

.box__inner { /* tb */
	padding: 8% 12%;
  position: relative;
  z-index: 2;
}
.box__inner--no-pd { /* tb */
	padding: 0;
}
.box__inner--md { /* tb */
	padding: 80px 60px;
}
.box__inner2 {
  padding: 0px 0 0;
  max-width: 1000px;
  width: 80%;
  margin: 0 auto;
}
.box__inner4 {
  padding: 50px 0 0;
}
.sec__image {
  position: static;
  width: 100%;
  margin-bottom: -100px;
  padding: 0 9.836065% 0 0;
}
.sec__body { /* tb */
  width: 100%;
  margin-top: -8%;
  margin-bottom: 80px;
}
.sec__body.even { /* tb */
  width: 100%;
  margin-top: -8%;
  margin-left: auto;
}
.sec__image.even {
  padding: 0 0 0 9.836065%;
  text-align: right;
}

/* Module - form */



/* Module - flexbox */

.f-container { /* tb */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-left: auto;
	margin-right: auto;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.f-container-wrap { /* tb */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
}
.f-container-rowreverse { /* tb */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.f-container-rowreverse:first-of-type { /* tb */
	margin-top: 80px;
}
.f-container-center { /* tb */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.f-container-center li { /* tb */
	margin: 0 2%;
}
.f-container-left { /* tb */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.column { /* tb */
  display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  /* -webkit-box-pack: center; */
  /* -ms-flex-pack: center; */
  /* justify-content: center; */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  /* -webkit-box-align: start; */
  /* -ms-flex-align: start; */
  /* align-items: flex-start; */
  width: 100%;
  margin: 40px 2%;
}
.column.col-4 { /* tb */
  width:21%;
  margin: 40px 2%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.column.col-5 { /* tb */
  width:16%;
  margin: 40px 2%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.col-6 {
  width: 13.333%;
  margin: 40px 0;
}
.column .icon { /* tb */
  width: 80px;
  margin: 0px auto 20px;
}
.f-container-rowreverse:nth-child(odd) {
  flex-direction: row-reverse;
}
.f-container-rowreverse li {
  width: 50%;
}
.f-container-rowreverse .features-txt {
  padding: 0 5% 0 5%;
}
.column li { /* tb */
  max-width:100%;
  font-size: 1.5rem;
  line-height: 1.5;
}
.column.col-5 dd p + ul {
  margin-top: 20px;
}
.column.col-5 dd li {
  font-size: 1.3rem;
}
.catetop__wrap--intro .column { /* tb */
  margin: 40px 0;
}
.column dt, column dd { /* tb */
	width: 100%;
  display: block;
}
.column dt { /* tb */
	margin: 20px 0 40px;
}
.column.col-5 dt { /* tb */
	min-height: 70px;
  margin: 20px 0 0px;
}
.column dd { /* tb */
  max-width:100%;
}
.service-list li {
  max-width:100%;
  padding: 40px 1% 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.service-list li img {
  width: 230px
}
.service-list li a {
  max-width:100%;
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.catetop__list {
  margin: 20px 0 40px 40px;
  padding: 20px 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.catetop__list div {
  width: 70%;
}
.en .catetop__list div {
  width: 60%;
}
.catetop__list.arrow::before,
.catetop__list.arrow::after {
  margin: 42px auto 0;
}
.service-list li:hover {
  transform: scale(1.08,1.08);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
a .catetop__list:hover {
  transform: scale(1.08,1.08);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.catetop__heading--number {
  font: 600 1.7rem "Montserrat", sans-serif;
  margin: 2px 0 0;
}
.catetop__heading--txt2 {
  margin: 8px 0;
  padding-right: 10%;
  flex-basis: 70%;
}

/* Module - deco TB */

.sec__decoration {
  top: 30px;
  width: 35%;
}

/* Module - slider TB */

.slider .box__case {
  padding: 20px 0.5%;
}
.slider .box__case img {
  width: 100%;
}
.box__case--txt {
  width: 80%;
  margin: -50px auto 0;
  padding: 8% 10%;
  border: solid 1px #eee;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.box__case--discription {
  font-size: 1.4rem;
  font-weight: bold;
}
.box__case--company {
  margin-top: 20px;
  color: #a5a8ab;
  font-size: 1.3rem;
  font-weight: bold;
}

/* Module - table */

/* Module - footer TB */

.hr .footer__heading--en,
.footer__heading--en {
	font: 300 5.0rem "Montserrat", sans-serif;
  margin-left: -3px;
}
.footer__heading {
  margin-left: 10%;
	font-weight: 300;
	font-size: 2.2rem;
}
.footer__button { /* tb */
	font-size: 1.6rem;
	position: relative;
	max-width: 340px;
  padding: 18px;
}
.footer__button span { /* tb */
	position: relative;
}
.footer__button:before { /* tb */
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: '';
	background: #009df7;
	-webkit-transform-origin: right top;
	-ms-transform-origin: right top;
	transform-origin: right top;
	-webkit-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transition: -webkit-transform .3s;
	transition: -webkit-transform .3s;
	transition: transform .3s;
	transition: transform .3s, -webkit-transform .3s;
}
.footer__button.hr:before { /* tb */
	background: #00a78d;
}
a.footer__button:hover:before {
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
	-webkit-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	transform: scale(1, 1);
}
.footer__attention--txt { /* tb */
  margin: 40px 0 5px;
  font-size: 1.6rem;
}
.footer__attention--tel { /* tb */
  margin: 2px 6px 0 0;
  font: 700 3.8rem "Montserrat", sans-serif;
/*  display: inline-block;*/
  vertical-align: middle;
}
.footer__attention--hour { /* tb */
  font-size: 1.2rem;
/*  display: inline-block;*/
  vertical-align: middle;
}
.footer__navi--item { /* tb */
  text-align: right;
  margin-top: 20px;
  padding: 20px 0 0;
	border-top: solid 1px #4c5e71;
}
.copyright { /* tb */
	margin-top: -50px;
}
.pagetop {
	width: 80px;
	height: 80px;
	position: absolute;
	top: 45px;
	right: 0;
	z-index: 10;
	display: block;
	transition: .2s;
	background: #4c5e71;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}
.pagetop a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 2;
}
.pagetop:before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	content: '';
	background: #009df7;
	transform-origin: right top;
	transform: scale(0, 1);
	transition: transform .3s;
}
.pagetop:hover:before {
	transform-origin: left top;
	transform: scale(1, 1);
}
.pagetop a:before,
.pagetop a:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
}
.pagetop a:before {
	height: 32px;
	width: 1px;
	background: #fff;
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
.pagetop a:after {
	width: 12px;
	height: 12px;
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	top: 0;
	-webkit-transform: translate(-50%,25px) rotate(45deg);
  -moz-transform: translate(-50%,25px) rotate(45deg);
  transform: translate(-50%,25px) rotate(45deg);
}


/* Pages TB
---------------------------------------------------------------------*/
/* Pages - top TB */

.pl10 {
  padding-left: 10%;
}
.toppage__copy {
  font: 300 100% Montserrat, monospace;
  font-size: 9vw;
  color:#fff;
  padding-left: 10%;
}
.toppage__animation--subcopy {
  position: absolute;
  top: 34%;
  right: 55%;
  width: 14vw;
}
.toppage__wrap--intro {
  position: relative;
  padding: 12.0vh 0 160px;
  background: url(/common/img/bg-intro-toppage.png) no-repeat 100% 20px;
  background-size: 60%;
}
.toppage__wrap--intro p {
  margin: 0.5rem 5.0vw 3.0rem 10.5%;
  font-size: 1.5rem;;
  line-height: 2.8;
}
.l-top__business{
  width: 100%;
  margin: auto 0 auto 0%;
}
.toppage__sce-head__txt {
	font-weight: 500;
	font-size: 2.0rem;
	letter-spacing: 0.09em;
	line-height: 1.2;
  color: #182e5a;
}
.toppage__sce-head__en {
	font: 300 5.5rem "Montserrat", sans-serif;
}
.toppage__business--wrap {
	margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.toppage__business--txt {
  padding-left: 15%;
}
.toppage__business--wrap figure {
  width: 100%;
  max-width: 1000px;
	margin-bottom: 0px;
  margin-left: auto;
  text-align: right;
}
.toppage__business--wrap img {
  width: 97%;
}
.toppage__business--head {
	font-size:  1.8rem;
  margin-bottom: 40px;
  padding-left: 10px;
}
.toppage__business--head__en {
	font: 300 3vw/1.2 "Montserrat", sans-serif;
}
.toppage__business--head__en::before {
	content: "";
	display: block;
	width: 20px;
	height: 3px;
	background: #009df7;
	position: absolute;
	top: 50%;
	left: -30px;
}
.toppage__about--wrap .column {
	width: 33.333%;
  margin: 0;
  border-left: solid 1px #d2d2d2;
}
.toppage__about--wrap .column li {
  width: 100%;
  padding: 15px;
}
.toppage__about--head a {
	font-size:  1.4rem;
  padding: 220px 0;
  -webkit-transition: all 10.5s ease;
  transition: all  0.5s ease;
  display: block;
  position:relative;
}
  
.toppage__about--head a:hover {
	color: #fff;
}
.toppage__about--head a:before{
  content:"";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  -webkit-transition: all 10.5s ease;
  transition: all  1.2s ease;
  background: #fff;
}
.toppage__about--head a:after{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index:-2;
  top: 0;
  left: 0;
	background: -webkit-linear-gradient(33.37deg, #e0c3fc 0%, #66a6ff 50%, #6daaff 64%, #78deee 100%);
	background: linear-gradient(40deg, #e0c3fc 0%, #66a6ff 50%, #6daaff 64%, #78deee 100%);
}
.toppage__about--head a:hover:before{
  opacity:0;
}
.toppage__about--head__en {
	font: 400 2.3rem "Montserrat", sans-serif;
}
.l-top__news {
  background-size: 100%;
}
.toppage__news--wrap {
  width: 70%;
  margin: 0px 0 150px;
}
.toppage__news--head {
  padding: 0 10px 25px;
}
.toppage__news--date {
  font: 400 1.5rem"Montserrat", sans-serif;
  color: #8391a0;
  padding: 25px 10px 5px;
}

/* Pages about TB */

.overview { /* tb */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
	font-size: 1.6rem;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}
.overview__heading { /* tb */
	width: 32%;
	padding-left: 20px;
	padding-right: 20px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
.overview__text { /* tb */
  width: 68%;
	line-height: 1.8;
}
.overview__text a:hover {
	text-decoration: underline;
}
.overview__text dt {
  display: block;
}

/* Pages - news TB */

.news .overview {
  align-items: start;
}
.news .overview__heading {
  font: 600 1.5rem/1.8 "Montserrat", sans-serif;
  width: 20%;
}
.overview__text {
  width: 80%;
  font-size: 1.5rem;
}

/* Pages - searvice TB */

.entrance {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
  width: 80%;
  padding: 60px 40px 0;
}
.entrance:nth-child(even)::after {
  right: 0;
}
.entrance p {
  margin: 1.5rem 0 3.0rem;
  line-height: 2.2;
}
.wrap--intro + .entrance {
  margin-top: -60px;
}

/* Pages - hr */

.hr__job--wrap {
  width: 45%;
  margin-right: auto;
  margin-left: auto;
}
.tac-pc-only {
	text-align: center;
}
.l-hr__footer {
  position: relative;
  background: #252f3b;
  background: -webkit-linear-gradient(#fff 0%, #fff 50%, #252f3b 50%, #252f3b 100%);
  background: linear-gradient(#fff 0%, #fff 50%, #252f3b 50%, #252f3b 100%);
}
.l-hr-footer__main{
  text-align: center;
  padding: 80px 0 80px;
}
.l-hr__footer .footer__heading,
.l-hr__footer p {
  margin-left: 0;
  width: 100%;
}
.hr .l-hr__footer .l-footer__main__inner > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  flex-grow: 1;
  width: 100%;
}
.hr .l-footer__main__inner > div:nth-child(1) {
  padding: 0 5% 0 0;
}
.l-hr__footer .l-footer__main__inner > div:nth-child(2) {
  border-left: solid 1px #00a78d;
}
.l-hr__footer .l-footer__txt {
  font-size: 1.4rem;
  margin: 0 8% 1.0rem;
}
.hr .footer__navi {
  margin: auto auto 0;
  width: 100%;
}
.hr .footer__navi li {
  margin-top: 30px;
  width: 100%;
}

/* Pages - privacy */

.privacy {
  max-width: 1000px;
  margin: auto;
}

/* Pages - sitemap */

.sitemap {
  max-width: 1000px;
  margin: auto;
}
.sitemap .sitemap__lower__block li {
  width: 14.666%;
  margin: 1%;
  padding: 0 ;
}
.sitemap .sitemap__lower__block li a {
  display: block;
  padding: 10px;
  font-size: 1.4rem;
}
.sitemap .sitemap__lower__block .heading-6::before,
.sitemap .sitemap__lower__block .heading-6::after {
  right: 0;
}
.sitemap .sitemap__lower__block li .heading-6 {
  margin-top: 10px;
}

}






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

/* COMMON
-------------------------------*/
/* Module - font PC */

.wrap--intro p { /* pc */
	font-size: 1.6rem;
  line-height: 2.4;
}
.wrap--intro li { /* pc */
	font-size: 1.6rem;
}
.sec__body p { /* pc */
	font-size: 1.6rem;
  line-height: 2.0;
}
.heading-2 + p { /* pc */
	font-size: 1.6rem;
  line-height: 2.0;
}

/* Layout PC
---------------------------------------------------------------------*/

.l-header { /* 820px */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.l-header--home .l-header__inner:before { /* 820px */
	height: 100vh;
}
.l-header__inner { /* 820px */
	height: 85px;
	width: auto;
	display: block;
}
.l-header__inner:before { /* 820px */
	content: "";
	width: 100%;
	height: 646px;
	position: absolute;
	top: 0;
	left: 0;
}

/* Module PC
---------------------------------------------------------------------*/
/* Module - navi PC */

.sp-menu-btn { /* 820px */
	display: none;
}
.globalnavi { /* 820px */
	top: 0;
	left: auto;
	right: 0;
	background: none;
	width: auto;
	height: auto;
	overflow: visible;
	display: block;
	height: 85px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.globalnavi__inner { /* 820px */
	width: auto;
	height: 100%;
	padding: 0 30px 0 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.globalnavi__item { /* 820px */
	margin: 0 12px;
	position: static;
}
.globalnavi__item:hover .globalnavi__children {
	opacity: 1;
	visibility: visible;
}
.globalnavi__item:after { /* 820px */
	content: none;
}
.globalnavi__item:hover,
.globalnavi__item.is-current { /* 820px莉･荳� */
}
.globalnavi__item:hover .globalnavi__link:before,
.globalnavi__item.is-current .globalnavi__link:before {
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
	-webkit-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	transform: scale(1, 1);
}
.globalnavi__link:before {
	content: "";
	position: absolute;
	top: 70%;
	right: 0;
	width: 100%;
	height: 2px;
	background: #FFFFFF;
	-webkit-transform-origin: right top;
	-ms-transform-origin: right top;
	transform-origin: right top;
	-webkit-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transition: -webkit-transform .3s;
	transition: -webkit-transform .3s;
	transition: transform .3s;
	transition: transform .3s, -webkit-transform .3s;
}
.globalnavi__link--has-child:after { /* 820px */
	content: none;
}
.globalnavi__children { /* 820px */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	position: absolute;
	top: 100%;
	right: 0;
	padding: 34px 20px 35px;
	background: #252f3b;
	width: 100vw;
}
.globalnavi__children:before {
	content: "";
	background: rgba(0, 0, 0, 0.55);
	position: absolute;
	top: 100%;
	height: 100vh;
	width: 100%;
	left: 0;
}
.globalnavi__child { /* 820px */
	margin: 0 20px;
	max-width: 260px;
}

/* Module - pagehead PC */

.pagehead { /* 820px */
  height: 32vh;
}
.pagehead__image { /* 820px */
  height: 32vh;
  padding-bottom: 32vh;
}
.pagehead__news,
.pagehead__contact { /* 820px */
  height: 25vh;
  min-height: 300px;
}

/* Module - breadcrumb */

/* Module - hedding PC */

.heading-2 { /* pc */
	font-size: 3.2rem;
	margin-bottom: 20px;
}
.heading-6 {
  padding: 20px 20px 20px 20px;
}

/* Module - list PC */

/* Module - button PC */

/* Module - box PC */

.box__inner3 {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}

/* Module - form PC */

/* Module - flexbox PC */

.f-container-sp {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.column { /* PC */
  margin: 40px 1.5%;
}

/* Module - decoration */

/* Module - slider */

/* Module - table PC */

.table-1 {
  font-size: 1.5rem;
}
.table-1 th,.table-1 td {
  padding: 20px 30px;
}
.table__heading-2 {
  font-size: 1.8rem;
}
.table__txt--bad li,
.table__txt--good li {
  padding: 5px 0 5px 30px;
}
.table__txt--bad li:before,
.table__txt--good li:before {
  top: 0.3rem;
	width: 22px;
	height: 22px;
}

/* Module - footer PC */

.footer__heading {
  margin-left: 30%;
	font-weight: 300;
	font-size: 2.2rem;
}

}


@media screen and (min-width: 1000px) {
/* Layout SP
---------------------------------------------------------------------*/
.l-main {
  padding: 120px 0 160px;
}
/* Module 1000
---------------------------------------------------------------------*/
/* Module - navi */
.globalnavi__item { /* 1000px */
	margin: 0 22px;
}
.sec__body { /* 1000px */
  width: 70%;
}
.sec__body.even { /* 1000px */
  width: 70%;
}
}

@media screen and (min-width: 1600px) {
.pagehead__en {
font: 300 4.6vw "Montserrat", sans-serif;
}
.sec__body { /* 1600px */
  width: 50%;
}
.sec__body.even { /* 1600px */
  width: 50%;
}
}

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

.sp-only { /* sp */
	display: block !important;
}
.pc-only { /* sp */
	display: none !important;
}

}

@media screen and (min-width: 768px) {
  .globalnavi__item__en {
    position: relative;
  }
  .globalnavi__item__en:after {
    content: "|";
    position: absolute;
    right: -22px;
    top: 30px;
  }
}

.globalnavi__child > a {
  text-align: center;
}

@media screen and (min-width: 821px) {
    .globalnavi__child {
        flex-grow: 1;
    }
}

.footer__navi--item .instagram,
.footer__navi--item .line,
.footer__navi--item .twitter {
    width: 35px;
}


/* Slider */

.slick-prev, .slick-next {
    z-index: 1;
    top: 30%;
}
.slick-next {
  right: 4px;
}
.slick-prev {
  left: -25px;
}
.slick-prev:before, .slick-next:before {
  font-size: 50px;
  color: #009df7;
}

@media screen and (min-width: 821px) {
  .slick-next {
    right: -25px;
  }
  .slick-prev {
    left: -45px;
  }
  .slick-prev, .slick-next {
    top: 28%;
  }
}

.multiple-items-home {
  margin-bottom: 60px;
}

.multiple-items-home .item {
  margin: 0 15px;
}

.multiple-items-home figure {
  border: solid 1px #d2d2d2;
}

.multiple-items-home .item div {
  padding-top: 20px;
  line-height: 1.85;
  font-size: 15px;
}