@charset "utf-8";
/* CSS Document */
/* # =================================================================
   # body / A / img
   # ================================================================= */
body {
  color: #333;
  line-height: 1.5;
  letter-spacing: .02em;
}
A, A::after {
  text-decoration: none;
  color: #2A80BF;
  transition: 0.3s;
  font-weight: 700;
}
.formatlink A {
  color: #2A80BF;
}
.formatlinkline A {
  color: #2A80BF;
  text-decoration: underline;
}
.outlink A {
  display: block;
  position: relative;
  margin-top: 8px;
  line-height: 100%;
}
.outlink A::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: -3px;
  width: 25px;
  height: 20px;
  background-image: url("../img/icon_link.svg");
  background-size: 20px 20px;
  background-position: right center;
}
A.anchorlink {
  display: inline-block;
  padding-left: 22px;
  position: relative;
  margin-top: 5px;
}
A.anchorlink::before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  position: absolute;
  top: -1px;
  left: 0px;
  background-image: url("../img/icon_anchor.svg");
  background-size: 20px 20px;
  background-position: left center;
}
.lhover A::after {
  content: "";
  display: block;
  width: 1px;
  height: 1px;
  background-color: transparent;
}
.footernav .lhover A::after {
  position: relative;
  bottom: -9px;
}
.valignmiddle {
  vertical-align: middle;
}
.shadow {
  -webkit-filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.08));
  -moz-filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.08));
  -ms-filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.08));
  filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.08));
}
A.shadow:hover {
  -webkit-filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.1));
  -moz-filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.1));
  -ms-filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.1));
}
.boxshadow {
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .5);
}
.txtshadow {
  text-shadow:
    rgba(0, 0, 0, 0.1) 1px 1px 8px, rgba(0, 0, 0, 0.1) -1px 1px 8px, rgba(0, 0, 0, 0.1) 1px -1px 8px, rgba(0, 0, 0, 0.1) -1px -1px 8px;
}
.wtxtshadow {
  text-shadow:
    rgba(255, 255, 255, 0.3) 1px 1px 5px, rgba(255, 255, 255, 0.3) -1px 1px 5px, rgba(255, 255, 255, 0.3) 1px -1px 5px, rgba(255, 255, 255, 0.3) -1px -1px 5px;
}
.brradius {
  border-radius: 10px;
}
.overlay::after, .overlaydark::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.overlay::after {
  background-color: rgba(0, 0, 0, 0.3);
}
.overlaydark::after {
  background-color: rgba(0, 0, 0, 0.5);
}
.slinbox {
  display: inline-block;
  overflow: hidden;
}
.slinbox .slinimage {
  opacity: 0;
}
.slinplay {
  position: relative;
  opacity: 1 !important;
}
.slinplay::before {
  animation-name: maskOut;
  animation-duration: .8s;
  animation-delay: .3s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 1) 11.2%, rgba(255, 255, 255, 1) 91.1%);
}
.sllate::before {
  animation-delay: .5s;
}
@keyframes maskOut {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
.format {
  font-size: 77%;
}
.formatcolor {
  color: #2A80BF;
}
.formatcheck {
  color: #E82970;
}
.formatred {
  color: #FA0F0C;
}
.formatbold {
  font-weight: 700;
}
.formatma {
  margin: 3px 0px;
}
.formatpa {
  padding: 5px 0px;
}
.langen {
  font-family: din-2014, sans-serif;
  word-break: normal;
  font-weight: 400;
}
.langnum {
  font-family: din-2014, sans-serif;
  word-break: normal;
  font-weight: 400;
  letter-spacing: 0;
}
.phonemode {
  display: none;
}
.video {
  position: relative;
  height: 0;
  padding: 0 0 56.25%;
  overflow: hidden;
}
.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
ul.asterisk {
  margin-left: 15px;
}
ul.asterisk li {
  list-style-type: none;
  text-indent: -1em;
  font-size: 93%;
}
ul.asterisk li:before {
  display: inline;
  content: "※";
}
.dispinlineblock {
  display: inline-block;
}
/* # =================================================================
   # Form
   # ================================================================= */
input[type=text], input[type=email], input[type=tel], input[type=url], input[type=number], input[type=password], textarea, select {
  width: 100%;
  border: 3px solid #E0DFE3;
  border-radius: 5px;
  padding: 10px;
  font-size: 14px;
  transition: 0.5s;
}
input[type=text], input[type=email], input[type=tel], input[type=url], input[type=number], input[type=password] {
  height: 50px;
}
input[type=file] {
  max-width: 100%;
}
.select {
  position: relative;
}
.select::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 15px;
  height: 15px;
  border-top: 3px solid #CCC;
  border-right: 3px solid #CCC;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  z-index: -1;
}
input[type=radio], input[type=checkbox] {
  margin-right: 7px;
  cursor: pointer;
}
.global_btn A, input[type=submit], input[type=button], input[type=reset], button {
  border-radius: 5px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  display: inline-block;
  cursor: pointer;
  border: none;
}
input[type="search"]:focus, input[type="text"]:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="url"]:focus, input[type="tel"]:focus, textarea:focus, select:focus {
  border: 3px solid #3588D1;
  background-color: #EEFAFA;
  outline: 0;
  color: #333;
}
input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus, select:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
  box-shadow: none;
}
input[type="button"], input[type="submit"] {
  -webkit-appearance: none;
}
input[type="button"]:disabled, input[type="submit"]:disabled {
  opacity: 0.4;
}
input::placeholder, textarea::placeholder {
  color: #999;
}
/* Edge */
input::-ms-input-placeholder, input::-ms-textarea-placeholder {
  color: #999;
}
.form_step {
  margin-top: 20px;
}
.form_step ul {
  justify-content: center;
}
.form_step .step_data {
  position: relative;
}
.form_step .step_label {
  display: inline-block;
  text-align: center;
  font-weight: 700;
  color: #DEDEDE;
  font-size: 14px;
}
.form_step .step_label::before {
  content: "1";
  display: block;
  width: 40px;
  height: 40px;
  margin-bottom: 5px;
  border-radius: 40px;
  text-align: center;
  line-height: 35px;
  border: 3px solid #DEDEDE;
  color: #DEDEDE;
}
.form_step .active .step_label {
  color: #3588D1;
}
.form_step .active .step_label::before {
  background-color: #3588D1;
  border: 3px solid #3588D1;
  color: #FFF;
  font-family: 'Josefin Sans', sans-serif;
}
.form_step .step2 .step_label::before {
  content: "2";
}
.form_step .step3 .step_label::before {
  content: "3";
}
.form_step .step4 .step_label::before {
  content: "4";
}
.form_step .step5 .step_label::before {
  content: "5";
}
.form_step .step_data::after {
  content: "";
  display: inline-block;
  width: 70px;
  height: 3px;
  background-color: #E0DFE3;
  position: relative;
  top: -60%;
  top: -60%;
}
.form_step .step_data:last-child::after {
  width: 0px;
  height: 0px;
  background-color: transparent;
}
.form_element, .inner_form_element {
  padding: 10px 0px;
}
.form_title {
  font-size: 16px;
  font-weight: 700;
}
.form_title.form_subtitle {
  font-size: 14px;
  font-weight: 500;
}
.form_inner_box {
  padding: 20px 0px 15px;
  border-bottom: 1px solid #E0DFE3;
}
.required {
  color: #DA667A;
}
.from_desc {
  font-size: 10px;
  margin: 10px 0px;
}
.from_desc ul {
  margin-left: 25px;
}
.from_desc li {
  list-style-type: disc;
  margin: 3px 0px;
}
.complete_data {
  display: block;
  padding: 0px 10px;
  font-color: #000;
  font-weight: 500;
}
.checkbox input[type="checkbox"] {
  display: none;
}
.checkbox input[type="checkbox"] + label {
  display: none;
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding-left: 35px;
  padding-right: 10px;
  text-align: left;
}
.checkbox input[type="checkbox"] + label::before {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 25px;
  height: 25px;
  margin-top: -11px;
  left: 0;
  top: 50%;
  border: 2px solid #E0DFE3;
  border-radius: 5px;
  background-color: #FFF;
}
.checkbox input[type="checkbox"]:checked + label::after {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 18px;
  height: 9px;
  margin-top: -5px;
  top: 50%;
  left: 4px;
  transform: rotate(-45deg);
  border-bottom: 3px solid;
  border-left: 3px solid;
  border-color: #3588D1;
}
fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.radio-inline__input {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
}
.radio-inline__label {
  display: block;
  padding: 3px;
  border-radius: 10px;
  transition: all .2s;
  cursor: pointer;
  margin: 6px;
}
.startup .radio-inline__label {
  margin-right: 3px;
}
.basic .radio-inline__label {
  margin-left: 3px;
}
.radio-inline__input:checked + .radio-inline__label {
  background: #3588D1;
}
.basic .radio-inline__input:checked + .radio-inline__label {
  background: #49BE97;
}
.btn_box {
  padding: 15px 0px;
}
.global_btn {
  width: 90%;
  margin: 20px auto 0px;
}
.global_btn A, .global_btn input[type="button"], .global_btn input[type="submit"], .global_btn input[type=reset], .global_btn button {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 15px;
  background-color: #3588D1;
  border-radius: 5px;
  color: #FFF;
  font-weight: 700;
  text-align: center;
  transition: .3s;
  font-size: 16px;
  margin: auto;
}
.global_btn.formatdark {
  margin-top: 20px;
}
.global_btn.btnsmall {
  width: 50%;
}
.global_btn.formatdark A, .global_btn.formatdark input[type="button"], .global_btn.formatdark input[type="submit"], .global_btn.formatdark input[type=reset], .global_btn.formatdark button {
  background-color: #555;
}
.global_btn.btnsmall A, .global_btn.btnsmall input[type="button"], .global_btn.btnsmall input[type="submit"], .global_btn.btnsmall input[type=reset], .global_btn.btnsmall button {
  padding: 8px;
  font-size: 14px;
}
.global_btn A {
  display: block;
}
.btn_top_desc {
  font-size: 14px;
  text-align: center;
}
/* ok/error */
.formok_desc, .formerror_desc {
  display: flex;
  align-items: center;
  padding-top: 8px;
  color: #D24059;
  font-size: 12px;
  font-weight: 700;
  line-height: 120%;
}
.formok_desc {
  color: #3588D1;
}
.formerror_desc {
  color: #D24059;
}
.formok_desc::before, .formerror_desc::before {
  content: "";
  display: block;
  width: 25px;
  min-width: 25px;
  height: 25px;
  background-size: 23px 23px;
}
.formok_desc::before {
  background-image: url("../img/icon_ok.svg");
}
.formerror_desc::before {
  background-image: url("../img/icon_error.svg");
}
.formerror input, .formerror textarea, .formerror .agree {
  border: 3px solid #D24059;
  background-color: #FCF3F4;
}
.error_status {
	color: #D24059;
	margin-top: 15px;
	font-weight: 700;
}

/* # =================================================================
   # fixcenter
   # ================================================================= */
.fix_center {
  max-width: 1200px;
}
.privacy_page_body .fix_center {
	margin: auto!important;
}
.fix_center_large {
  max-width: 1500px;
}
.fix_center_small {
  max-width: 800px;
}
.fix_center_xsmall {
  max-width: 500px;
}
.max_w95 {
  max-width: 95%;
}
.max_w90 {
  max-width: 90%;
}
.max_w85 {
  max-width: 85%;
}
.max_w80 {
  max-width: 80%;
}
.max_wpx60 {
  max-width: 60px;
}
.max_wpx80 {
  max-width: 80px;
}
.max_wpx100 {
  max-width: 100px;
}
.max_wpx200 {
  max-width: 200px;
}
.max_wpx300 {
  max-width: 300px;
}
.max_wpx400 {
  max-width: 400px;
}
.fix_center, .fix_center_large, .fix_center_small, .fix_center_xsmall, .max_w95, .max_w90, .max_w85, .max_w80 {
  margin: auto;
}
/* # =================================================================
   # flex/display/position
   # ================================================================= */
.flex_layout {
  display: flex;
}
.flex_wrap {
  flex-wrap: wrap;
}
.col_layout {
  flex-direction: column;
}
.row_reverse {
  flex-direction: row-reverse;
}
.flexfull {
  width: 100%;
}
.flexhalf {
  width: 50%;
}
.flex3col {
  width: calc(100% / 3);
}
.flex20 {
  width: 20%;
}
.flex25 {
  width: 25%;
}
.flex80 {
  width: 80%;
}
.flex30 {
  width: 30%;
}
.flex70 {
  width: 70%;
}
.flex40 {
  width: 40%;
}
.flex60 {
  width: 60%;
}
.dispblock {
  display: block;
}
.dispinline {
  display: inline;
}
.dispinlineblock {
  display: inline-block;
}
.posrelative {
  position: relative;
}
.posabsolute {
  position: absolute;
}
.txtalcenter {
  text-align: center;
}
/* # =================================================================
   # container/contents
   # ================================================================= */
#container {
  width: 100%;
}
.inner_contents_box {
  padding: 50px 0px;
  margin: 0px 15px;
}
.people_page_body #contents {
	margin-top: 100px;
}
#people .inner_contents_box, #recruit .inner_contents_box {
  padding-bottom: 40px;
}
.more_btn A, .back_btn A {
  display: inline-block;
  padding: 10px 50px 10px 0px;
  margin-top: 20px;
  border-bottom: 3px solid #000;
  position: relative;
  font-size: 14px;
}
.back_btn A {
  margin-top: 20px;
  padding: 10px 10px 10px 40px;
}
.more_btn A::after, .back_btn A::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 24px;
  background-image: url("../img/icon_more.svg");
  background-size: 30px 24px;
  position: absolute;
  right: 0px;
  top: 10px;
}
.back_btn A::before {
  transform: scale(-1, 1);
  transition: .3s;
  right: auto;
  left: 0px;
}
/* # =================================================================
   # header
   # ================================================================= */
#header_area {
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 9998;
  min-height: 60px;
  transition: .5s;
}
#inner_header_nav {
  justify-content: flex-end;
}
.inner_header_area {
  justify-content: space-between;
}
.headerci {
  width: 200px;
  margin: 15px 0px 6px 10px;
}
.rakuraci img {
  width: 100%;
  height: auto;
  max-width: 150px;
}
.imgwht {
  -webkit-filter: brightness(0) invert(100%);
  -moz-filter: brightness(0) invert(100%);
  -o-filter: brightness(0) invert(100%);
  -ms-filter: brightness(0) invert(100%);
  filter: brightness(0) invert(100%);
}
.blalph {
  opacity: .3;
}
.headerci A:hover {
  opacity: 0.7;
}
.site_header {
  margin: 0 auto;
}
.breadcrumb {
}
ol.breadcrumb_list {
  width: 100%;
  padding: 5px 10px;
  font-size: 10px;
}
ol.breadcrumb_list li {
  list-style-type: none;
}
ol.breadcrumb_list li A {
  font-weight: 400;
  text-decoration: underline;
}
ol.breadcrumb_list li .active {
  max-width: 180px;
  display: inline-block;
  overflow: hidden;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* # =================================================================
   # hambergar
   # ================================================================= */
.site_header {
  background-color: #FFF;
  align-items: center;
  display: flex;
  width: 100%;
  height: 100vh;
  opacity: 0;
  padding: 0;
  position: fixed;
  z-index: 2;
  top: 0px;
  visibility: hidden;
  overflow: scroll;
  transition: .5s;
}
.site_header.open {
  opacity: 1;
  visibility: visible;
  height: 100vh;
}
.sp_menu {
  display: block;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 25px;
  height: 25px;
  margin: 0 auto;
  cursor: pointer;
  transition: .5s;
  z-index: 9999;
}
.sp_menu .bar {
  display: inline-block;
  width: 25px;
  height: 2px;
  background-color: #FFF;
  position: absolute;
  left: 0;
  transition: .25s ease-in-out;
}
#bar01 {
  top: 0;
}
#bar02 {
  top: 9px;
}
#bar03 {
  top: 18px;
}
.active .bar {
  background-color: #000;
}
.active #bar01 {
  top: 10px;
  transform: rotate(45deg);
}
.active #bar02 {
  width: 0;
}
.active #bar03 {
  top: 10px;
  transform: rotate(135deg);
}
#header_area.transform .rakuraci img,
#header_area.ptransform .rakuraci img {
  -webkit-filter: none;
  -moz-filter: none;
  -o-filter: none;
  -ms-filter: none;
  filter: none;
}
#header_area.transform,
#header_area.ptransform {
  background: rgba(255, 255, 255, 1);
  -webkit-filter: drop-shadow(3px 3px 15px rgba(0, 0, 0, 0.2));
  -moz-filter: drop-shadow(3px 3px 15px rgba(0, 0, 0, 0.2));
  -ms-filter: drop-shadow(3px 3px 15px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(3px 3px 15px rgba(0, 0, 0, 0.2));
}
#header_area.transform .active .bar, #header_area.transform .sp_menu .bar,
#header_area.ptransform .active .bar, #header_area.ptransform .sp_menu .bar {
  background-color: #000;
}
#header_area.transform #globalnav .globalnavbtn A,
#header_area.ptransform #globalnav .globalnavbtn A {
  color: #333;
}
#header_area.transform #globalnav .globalnavbtn A:hover
#header_area.ptransform #globalnav .globalnavbtn A:hover {
  color: #999;
}
/* # =================================================================
   # globalnav
   # ================================================================= */
#header_right #globalnav {
  position: absolute;
  top: 20%;
  padding-bottom: 40px;
	width: 100%;
}
#globalnav .globalnavbtn {
  width: 100%;
  padding: 5px 0px;
  max-width: inherit;
}
#globalnav .globalnavbtn A {
  display: block;
  text-align: center;
  padding: 5px 10px;
  font-size: 18px;
  font-weight: 600;
  font-family: din-2014, sans-serif;
  color: #000;
}
.globalnav_register {
  margin-right: 70px;
}
#globalnav .parentbtn_entry A {
  display: block;
  max-width: 150px;
  margin: 10px auto 0px;
  padding: 6px 20px;
  text-align: center;
  border-radius: 5px;
	font-size:14px;
}
#globalnav .parentbtn_entry A {
	background-color: #2A80BF;
  border: 1px solid #3588D1;
  color: #3588D1;
}

.register_btn A {
  background: linear-gradient(-55deg, #C38ED1 0%, #539AD8 20%, #3AD9D9 50%, #70C1A5 80%, #B690D4 100%);
  color: #FFF;
}
/* # =================================================================
   # register
   # ================================================================= */
#entry {
  background-image: url("../img/entrybg.jpg");
  background-size: cover;
  background-position: center center;
  min-height: 200px;
}
#entry::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #2A80BF;
  opacity: .8;
}
#entry .inner_contents_box {
  z-index: 2;
}
#entry .inner_contents_box img {
  max-width: 40px;
}
#entry .inner_contents_box .entrylink + .entrylink img {
  max-width: 30px;
}
#entry A.entrylink {
  width: 90%;
  max-width: 250px;
  display: block;
  margin: auto;
  padding: 10px 0px 10px;
  background-color: #EEF5FA;
  border-radius: 10px;
  font-size: 12px;
  text-align: center;
}
#entry A.entrylink + A.entrylink {
  max-width: 130px;
	background-color: #FFFFFF;
}
#entry A.entrylink .btntxt {
  display: block;
	line-height: 120%;
}
.tel {
  padding: 10px;
  text-align: center;
  color: #FFF;
  font-size: 30px;
}
.teldesc {
  display: block;
  font-size: 14px;
}
.js-fix {
	padding: 10px;
}
.inner_contents_box .is-fixed {
	width: 100%;
	padding: 10px;
	position: fixed;
	bottom: 0;
	background-color: rgba(42,128,191,.7);
}
.fix-box.is-fixed {
	margin: 0px;
	padding: 0px;
}
#entry .inner_contents_box.is-fixed img {
  max-width: 40px;
}
#entry .inner_contents_box.is-fixed .entrylink + .entrylink img {
  max-width: 30px;
}
#entry .is-fixed A.entrylink {
  width: 200px;
  margin: 0px;
  padding: 8px 0px 10px;
  border-radius: 5px;
  font-size: 12px;
}
/* # =================================================================
   # footer
   # ================================================================= */
#footer {
  width: 100%;
  background-color: #2A80BF;
}
#inner_footer {
  padding: 0px 0px 100px;
  color: #FFF;
}
.footer_contents {
  align-items: center;
  padding: 20px 0px;
}
.footerci, .footernav, .footerbnr {
  width: 100%;
}
.footerci {
  order: 1;
  width: 200px;
  margin: 0px auto;
}
.footernav {
  order: 2;
}
.footerbnr {
  order: 4;
}
.ad_btn {
position: relative;
z-index: 99;
}
.bottom_btn {
width: 100%;
position: fixed;
bottom: 0;
left: 0;
background-color: rgba(255,255,255,.9);
padding: 15px 0;
  display: none;
  transition: all 0.3s;
  z-index: 5;
}
/* sns
   # ================================================================= */
.snsnavlist {
  margin-top: 15px;
  align-items: center;
  justify-content: center;
}
.snsnavbtn {
  margin: 0px 15px;
}
.snsnavbtn A:hover {
  opacity: 0.5;
}
.snsnavlist {
  opacity: 0.7;
}
/* footernav
   # ================================================================= */
.footernav .footernavlist {
  display: block;
  margin: 20px 0px;
}
.footernav .footernavlist .footernavbtn A {
  display: block;
  padding: 15px 0px 9px;
  font-size: 14px;
  font-weight: 700;
  color: #FFF;
  border-top: 1px solid rgba(255, 255, 255, .2);
}
.footernav .footernavlist .footernavbtn:last-child A {
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}
.footernav_wrapper {
  margin-top: 8px;
}
#footer .rakuraci img {
  max-width: 200px;
}
#footer .rakuraci {
  margin: 20px auto 8px;
}
.bcopy {
  font-size: 14px;
  letter-spacing: 2px;
}
/* footerbnr
   # ================================================================= */
.footerbnr {
  text-align: center;
  padding: 20px 0px;
}
.group {
  letter-spacing: 5px;
  font-size: 12px;
  opacity: .7;
  margin-bottom: 15px;
}
.footerbnrlist {
  justify-content: center;
}
.footerbnrbtn A {
  display: block;
  padding: 15px 20px;
  background-color: #FFF;
  margin: 10px;
}
/* copyright/pagetop
   # ================================================================= */
.copyright {
  margin-top: 20px;
  font-size: 10px;
}
#pagetop {
  position: fixed;
  z-index: 9999;
  bottom: 110px;
  right: 15px;
}
#pagetop A {
  text-decoration: none;
  color: #555;
  width: 60px;
  height: 60px;
  border-radius: 80px;
  padding: 10px;
  background-color: #E0DFE3;
  font-size: 11px;
  font-weight: 300;
}
#pagetop A::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  margin: 10px auto 0px;
  border-top: 2px solid #555;
  border-right: 2px solid #555;
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}
.recruit_banner {
	padding: 20px;
	text-align: center;
}
/* # =================================================================
   # table / dl /dt /dd
   # ================================================================= */
.data_table {
  width: 100%;
}
.data_table .cell_header, .data_table .cell_data {
  padding: 15px 10px;
  border: 1px solid #E0DFE3;
  vertical-align: middle;
}
.data_table .cell_border {
  border-top: 3px solid #E0DFE3;
}
.data_table .cell_header {
  background-color: #F1F1F1;
  white-space: nowrap;
}
.data_table .cell_data {
  background-color: #FFF;
}
.table_caption {
  padding: 15px 10px 20px;
  margin-top: 15px;
  text-align: left;
}
.cellbold {
  font-weight: bold;
}
.cellnormal {
  font-size: medium;
}
.cellleft {
  text-align: left;
}
.cellright {
  text-align: right;
}
.cellcenter {
  text-align: center;
}
.nodata {
  padding: 30px 0px;
}

/* # =================================================================
   # t_head / t_subhead / t_read
   # ================================================================= */
.t_head, .t_subhead, .t_read {
  line-height: 1.5;
}
.t_head {
  font-size: 14px;
  font-weight: 700;
}
.t_subhead {
  font-size: 16px;
  font-weight: 700;
}
.t_read {
  font-size: 12px;
  font-weight: 400;
  margin-top: 10px;
  line-height: 160%;
}
.t_head_en {
  font-size: 10px;
  font-weight: 700;
  transform: rotate(90deg);
  transform-origin: left top;
  position: absolute;
  top: 5px;
  left: 30px;
}
.t_head_enb {
  font-size: 30px;
  font-weight: 700;
  color: #11507E;
  line-height: 100%;
}
#privacy .t_head_enb {
	color: #000;
}
/* # =================================================================
   # .page_box
   # ================================================================= */
.page_box {
  padding: 60px 0px;
  background-color: #FFF;
}

/* # =================================================================
   # inview
   # ================================================================= */
.inviewfadeIn {
  opacity: 0;
  transition: 0.8s;
}
.fadeIn {
  opacity: 1.0;
}
.inviewUp {
  transform: translate(0, 40px);
  -webkit-transform: translate(0, 40px);
  transition-duration: 0.8s;
}
.Up {
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}
.inviewDown {
  transform: translate(0, -40px);
  -webkit-transform: translate(0, -40px);
  transition-duration: 0.8s
}
.Down {
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}
.inviewLate {
  transition-delay: 0.5s;
}
.inviewLate1 {
  transition-delay: 0.8s;
}
.inviewLate2 {
  transition-delay: 1.0s;
}
.inviewLate3 {
  transition-delay: 1.2s;
}
.inviewLate4 {
  transition-delay: 1.4s;
}
.inviewLate5 {
  transition-delay: 1.6s;
}
/* # =================================================================
   # 404
   # ================================================================= */
.notfound_wrapper {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.inner_notfound_wrapper {
  max-width: 700px;
}
.notfound_page_header {
  text-align: center;
}
.notfound_page_header .t_head {
  font-size: 70px;
}
.notfound_page_header .s_head {
  font-size: 14px;
}
.notfound_desc {
  padding: 20px;
  margin: 20px;
  border-top: 1px solid #555;
  border-bottom: 1px solid #555;
  font-size: 14px;
}
.notfound_desc ul {
  margin-top: 10px;
  margin-left: 20px;
}
.notfound_desc li {
  list-style-type: disc;
  font-size: 14px;
  padding: 5px;
}
.notfound_wrapper .rakuraci {
  text-align: center;
}
/* # =================================================================
   # RESPONSIVE
   # ================================================================= */
@media only screen and (min-width: 375px) {
  /* header
   # ================================================================= */
  ol.breadcrumb_list li .active {
    max-width: 220px;
  }
  /* grobalnav
   # ================================================================= */
  .globalnav_register .parentbtn_register A {
    padding: 8px 8px;
    margin-top: 13px;
    font-size: 14px;
  }
  /* footer
   # ================================================================= */
  .footercomnav .footernavbtn A {
    font-size: 14px;
  }
	#entry .inner_contents_box.is-fixed img {
    max-width: 40px;
  }
	#entry .inner_contents_box.is-fixed .entrylink + .entrylink img {
		max-width: 30px;
	}
  #entry .is-fixed A.entrylink {
    width: 220px;
  }
  /* form
   # ================================================================= */
  .form_element {
    padding: 15px 0px;
  }
  .from_desc {
    font-size: 12px;
  }
}
@media only screen and (min-width: 400px) {
  /* header
   # ================================================================= */
  ol.breadcrumb_list li .active {
    max-width: 250px;
  }
  /* footer
   # ================================================================= */
  .footernav .footernavlist .subnavbtn {
    width: 50%;
  }
  /* form
   # ================================================================= */
  .global_btn {
    width: 60%;
  }
  .global_btn A, .global_btn input[type="button"], .global_btn input[type="submit"], .global_btn input[type=reset], .global_btn button {
    padding: 20px;
    font-size: 18px;
  }
  .global_btn.btnsmall {
    width: 40%;
  }
  .global_btn.btnsmall A, .global_btn.btnsmall input[type="button"], .global_btn.btnsmall input[type="submit"], .global_btn.btnsmall input[type=reset], .global_btn.btnsmall button {
    padding: 10px;
  }
  .form_title {
    font-size: 18px;
  }
  .form_title.form_subtitle {
    font-size: 16px;
  }
  .form_step .step_label {
    font-size: 16px;
  }
  .from_desc {
    font-size: 14px;
  }
  /* ok/error */
  .formok_desc, .formerror_desc {
    font-size: 14px;
  }
  .formok_desc::before, .formerror_desc::before {
    width: 28px;
    min-width: 28px;
    height: 25px;
    background-size: 25px 25px;
  }
  /* form
   # ================================================================= */
  input[type=text], input[type=email], input[type=tel], input[type=url], input[type=number], input[type=password], textarea, select {
    padding: 15px;
    font-size: 16px;
  }
  input[type=text], input[type=email], input[type=tel], input[type=url], input[type=number], input[type=password], select {
    height: 60px;
  }
  /* t_head / t_subhead / t_read
   # ================================================================= */
  .t_head {
    font-size: 16px;
  }
  #vision .t_head {
    font-size: 20px;
  }
  .t_head_enb {
    font-size: 40px;
  }
	#company .t_head_enb {
		font-size: 35px;
	}
	#company .t_head {
		font-size: 14px;
	}
  .t_subhead {
    font-size: 16px;
  }
  .t_read {
    font-size: 14px;
  }
}
@media only screen and (min-width: 600px) {
  /* contentsb box
   # ================================================================= */
  .inner_contents_box {
    padding: 60px 0px;
  }
  #message .inner_contents_box {
    padding: 120px 0px 60px;
  }
  /* t_head / t_subhead / t_read
   # ================================================================= */
  .t_subhead {
    font-size: 18px;
  }
  .t_read {
    font-size: 14px;
  }
  .t_head_en {
    font-size: 12px;
  }
  /* header
   # ================================================================= */
  ol.breadcrumb_list li .active {
    max-width: none;
    overflow: inherit;
    text-overflow: inherit;
    white-space: normal;
  }
  /* grobalnav
   # ================================================================= */
  .globalnav_register .parentbtn_register A {
    padding: 7px 20px;
  }
  /* entry
   # ================================================================= */
  #entry A.entrylink,
	#entry A.entrylink + A.entrylink {
    max-width: 300px;
    padding: 15px 0px 15px;
    font-size: 18px;
  }
	#entry A.entrylink + A.entrylink {
    font-size: 16px;
  }
  #entry .inner_contents_box img {
    max-width: 65px;
  }
	/* footer
	 # ================================================================= */
	#entry .inner_contents_box.is-fixed img {
    max-width: 65px;
  }
  #entry .is-fixed A.entrylink {
    width: 90%;
    max-width: 300px;
    margin: auto;
    padding: 20px 0px 15px;
    border-radius: 10px;
    font-size: 18px;
  }
	#entry .is-fixed A.entrylink + A.entrylink {
		font-size: 16px;
	}
	.inner_contents_box .is-fixed {
	  padding: 15px 10px;
  }
  /* form
   # ================================================================= */
  .global_btn {
    width: 50%;
  }
  .global_btn.btnsmall {
    width: 20%;
  }
  /* 404
   # ================================================================= */
  .notfound_page_header .t_head {
    font-size: 80px;
  }
  .notfound_page_header .s_head {
    font-size: 16px;
  }
}
@media only screen and (min-width: 900px) {
  /* contents box
   # ================================================================= */
  .inner_contents_box {
    padding: 80px 0px;
    margin: 0px 20px;
  }
  #message .inner_contents_box {
    padding: 150px 0px 80px;
  }
  /* header
   # ================================================================= */
  .headerci {
    width: 250px;
  }
  .rakuraci img {
    max-width: 230px;
    padding-top: 5px;
    padding-left: 20px;
  }
  .sp_menu {
    display: none;
  }
  /* grobalnav
   # ================================================================= */
  .site_header {
    opacity: 1;
    visibility: visible;
    display: block;
    width: calc(100% - 330px);
    height: auto;
    overflow: visible;
    position: inherit;
    background-color: transparent;
  }
  .site_header.open {
    height: auto;
  }
  #header_right #globalnav {
    position: inherit;
    padding-bottom: 0;
  }
  #globalnav .globalnavbtn {
    max-width: 155px;
    width: auto;
  }
  #globalnav .globalnavbtn A {
    font-size: 16px;
    color: #FFF;
  }
  #globalnav .globalnavlist {
    padding: 16px 0px;
  }
  #globalnav .parentbtn_signin {
    order: 7;
  }
  #globalnav .parentbtn_entry A {
    margin: 0px 10px;
		font-size: 14px;
  }
  .globalnav_register {
    margin-right: 20px;
    margin-left: 10px
  }
  .globalnav_register .parentbtn_register A {
    min-width: 100px;
    margin-top: 21px;
  }
  .dropdwn_wrapper li.subnavbtn::after {
    top: 20px;
  }
  /* dropdown
   # ================================================================= */
  .dropdwn_menu {
    display: none;
    width: 100%;
    margin: auto;
    background-color: #F9F9F9;
    border-top: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
    top: 70px;
    left: 0px;
    z-index: 99;
    position: absolute;
  }
  .inner_dropdwn_menu {
    max-width: 1000px;
    margin: auto;
    padding: 40px 0px;
  }
  .dropdwn_wrapper {
    width: 100%;
  }
  .dropdwn_wrapper li.subnavbtn {
    width: 50%;
  }
  #globalnav .dropdwn_wrapper li.subnavbtn A {
    margin: 5px 8px;
    padding: 8px 0px;
    font-size: 16px;
    font-weight: 700;
  }
  /* register
  # ================================================================= */
  #rakuraregister {
    padding: 100px 0px;
  }
  #rakuraregister::after {
    opacity: 0.9;
  }
  #rakuraregister .inner_contents_box .rakuraci img {
    max-width: 200px;
  }
  #rakuraregister .register_btn {
    max-width: 400px;
  }
  #rakuraregister .register_btn A {
    background-image: none;
    padding: 20px 0px;
    font-size: 25px;
  }
  #rakuraregister .register_btn A .btn_subtxt {
    font-size: 16px;
  }
  /* footer
  # ================================================================= */
  #inner_footer {
    padding-top: 40px;
  }
  .footernav .footernavbtn {
    padding: 0px 5px;
    box-sizing: border-box;
  }
  .footernav .footernavlist {
    display: flex;
		justify-content: space-around;
  }
  .footernav .footernavlist .footernavbtn A, .footernav .footernavlist .footernavbtn:last-child A {
    border: none;
  }
		/* footer
	 # ================================================================= */
	#pagetop {
    bottom: 30px;
    right: 30px;
  }
  #pagetop A {
    width: 70px;
    height: 70px;
  }
  #pagetop A::before {
    width: 20px;
    height: 20px;
  }
  /* 404
   # ================================================================= */
  .notfound_page_header .t_head {
    font-size: 100px;
  }
  .notfound_page_header .s_head {
    font-size: 20px;
  }
  .notfound_desc, .notfound_desc li {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1000px) {
  /* footer
   # ================================================================= */
  .footerci {
    order: 1;
    width: 250px;
    text-align: center;
  }
  .footernav {
    order: 2;
    flex: 1;
  }
  .footercomnav {
    flex: none;
  }
  #footer .rakuraci {
    margin-top: 0px;
  }
  .rakuraci img {
    padding-left: 0px;
  }
  .footerbnr {
    margin-top: 30px;
		border-top: 1px solid rgba(255, 255, 255, .2);
    border-bottom: 1px solid rgba(255, 255, 255, .2);
  }
	#entry A.entrylink,
	#entry .is-fixed A.entrylink {
    max-width: 400px;
  }
	#entry A.entrylink + A.entrylink,
	#entry .is-fixed A.entrylink + A.entrylink {
    max-width: 300px;
  }
}
@media only screen and (min-width: 1200px) {
  /* global
   # ================================================================= */
  #message .inner_contents_box {
    padding: 80px 0px;
  }
  /* t_head / t_subhead / t_read
   # ================================================================= */
  .t_head {
    font-size: 18px;
    letter-spacing: .1em;
  }
  .t_subhead {
    font-size: 20px;
  }
  .t_read {
    font-size: 16px;
    line-height: 180%;
  }
  /* hglobalnav
   # ================================================================= */
  #globalnav .parentbtn_signin {
    margin-left: 40px;
  }
  /* table / dl /dt /dd
   # ================================================================= */
  .data_table .cell_header, .data_table .cell_data {
    padding: 10px;
  }
}
@media only screen and (min-width: 1500px) {
  .inner_contents_box {
    margin: auto;
  }
}
/* # =================================================================
   # Hover
   # ================================================================= */
@media (hover: hover) {
  A:hover, input[type=submit]:hover, input[type=button]:hover, input[type=reset]:hover, button:hover {
    opacity: 0.8;
  }
  .formatlink A:hover {
    text-decoration: underline;
    opacity: 1;
  }
  .formatlinkline A:hover {
    text-decoration: none;
    opacity: 1;
  }
  .lhover A:hover::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #FFF;
  }
	.transform .lhover A:hover::after,
	.ptransform .lhover A:hover::after {
    background-color: #333;
  }
  #footer .lhover A:hover::after {
    background-color: #FFF;
  }
  #globalnav .parentbtn_signin A:hover {
    background-color: #3588D1;
    color: #FFF;
  }
  .register_btn A:hover {
    background: linear-gradient(55deg, #C38ED1 0%, #539AD8 50%, #3AD9D9 70%, #70C1A5 90%, #70C1A5 100%);
  }
  #rakuraregister .register_btn A:hover {
    background-color: #FFF;
    border: 2px solid #FFF;
    color: #3588D1;
    opacity: 1;
  }
  #pagetop A:hover {
    background-color: #000;
    color: #E0DFE3;
  }
  #pagetop A:hover::before {
    border-top: 2px solid #E0DFE3;
    border-right: 2px solid #E0DFE3;
  }
  .more_btn A:hover::after {
    right: -5px;
  }
  .back_btn A:hover::before {
    left: -5px;
  }
  .radio-inline__input + .radio-inline__label:hover {
    opacity: 1;
    background: #3588D1;
  }
}