@charset "UTF-8";
/* ヘッダー調整 */
#header_top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  width: 100%;
  height: 4rem;
  padding-bottom: 0.5rem;
}

@media screen and (min-width: 760px) {
  #header_bottom {
    overflow: hidden;
    width: 100%;
    height: 3rem;
  }
  #header_bottom_inner {
    display: block;
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    height: 3rem;
  }
  #header_bottom_inner nav {
    position: absolute;
    right: 0;
    bottom: 1rem;
  }
  #header_bottom_inner nav ul li {
    display: inline-block;
    height: 1rem;
    margin-left: 1rem;
    font-size: 1rem;
    font-weight: bold;
  }
  #header_bottom_inner nav ul li a {
    padding-bottom: 0.5rem;
  }
  #header_bottom_inner nav ul li .dummylocation {
    border-bottom: solid 6px rgba(255, 255, 255, 0);
  }
}

.navLogo {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  fill: rgba(255, 255, 255, 0);
}

.navlogo_ON {
  fill: white;
}

.nav_contact_icon_ON {
  width: 40px;
  height: 1rem;
}

.nav_contact_icon_OFF {
  width: 0;
  height: 0;
}

.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.nav_unshown {
  display: none;
}

/* 759 under */
@media screen and (max-width: 759px) {
  #header_contact {
    display: none;
  }
  .nav_contact_icon {
    width: 40px;
    height: 1rem;
  }
  .list_mailicon::after {
    content: "お問い合わせ";
  }
  #nav_drawer {
    position: relative;
  }
  #nav_open {
    position: fixed;
    top: 0;
    right: -1px;
    width: 30px;
    height: 22px;
    padding: 10px;
    z-index: 1000;
    background-color: #fff;
    border-radius: 0 0 0 10px;
  }
  #nav_open span,
  #nav_open span:before,
  #nav_open span:after {
    position: absolute;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #555;
    display: block;
    content: "";
    cursor: pointer;
  }
  #nav_open span:before {
    bottom: -8px;
  }
  #nav_open span:after {
    bottom: -16px;
  }
  #nav_close {
    display: none;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  #nav_content {
    overflow: auto;
    position: fixed;
    top: 0;
    right: -1px;
    z-index: 9999;
    width: 15rem;
    max-width: 90%;
    height: 100%;
    background: #fff;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    -webkit-transform: translateX(105%);
    transform: translateX(105%);
  }
  #nav_input:checked ~ #nav_close {
    display: block;
    opacity: 0.5;
  }
  #nav_input:checked ~ #nav_content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
            box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
  }
  nav ul li {
    margin: 1rem;
    padding: 0.5rem;
  }
}

/* トップへ戻るボタン */
.sub_footer {
  position: relative;
  width: 100%;
  margin: 3rem 0 0 0;
}

.pageTop {
  display: none;
  position: fixed;
  bottom: 0.5rem;
  right: 0.5rem;
  width: 51px;
  height: 51px;
  background-color: rgba(255, 255, 255, 0.8);
}

.pageTop_absolute {
  position: absolute;
  bottom: 0;
}

/* footer */
.footer_2box {
  margin-top: 0.5rem;
  background-color: #000033;
  color: #ffffff;
}

@media screen and (min-width: 760px) {
  .footer_2box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-left: auto;
    margin-right: auto;
  }
}

.footer_2box a:link,
.footer_2box a:visited {
  color: #ffffff;
}

#footer_company {
  background-color: #000033;
  line-height: 1.4rem;
}

@media screen and (min-width: 760px) {
  #footer_company {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    width: 45%;
    padding: 2rem 0.5rem 0 5%;
  }
}

@media screen and (max-width: 759px) {
  #footer_company {
    padding: 2rem 1rem;
  }
}

#footer_company div {
  display: block;
  max-width: 469px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 0 auto;
}

#footer_company div,
#footer_company span {
  color: #ffffff;
}

#footer_company .address {
  font-size: 85%;
}

#footer_nav {
  padding: 2rem 0.5rem 2rem 7%;
  background-color: #003366;
  font-size: 85%;
  line-height: 2rem;
}

@media screen and (min-width: 760px) {
  #footer_nav {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    width: 55%;
  }
}

#footer_nav div {
  max-width: 630px;
}

#footer_nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-left: auto;
  margin-right: auto;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

#footer_nav ul li {
  -webkit-flex-basis: 31%;
      -ms-flex-preferred-size: 31%;
          flex-basis: 31%;
  padding: 0.2rem 0;
  list-style: none;
}

/* コピーライト */
#copyright {
  margin: 0.5rem auto 3rem;
  background-color: #ffffff;
  color: gray;
  font-size: 0.8rem;
  text-align: center;
}

/* ロゴ調整 */
.header_top_logo {
  width: 105px;
  height: 38px;
  margin-left: 0.8rem;
}

/* ロゴとキャッチコピー */
#Catchphrase {
  font-size: 0.6rem;
}

#Catchphrase svg {
  fill: #cc0000;
}

#Catchphrase span {
  display: block;
  margin-left: 0.8rem;
  color: #990000;
}

#header_contact {
  margin-right: 0.7rem;
}

/* svgデータは非表示 */
.svgdata {
  position: absolute;
  width: 0;
  height: 0;
}

/* javascriptOFFの時の処理 */
.noscript {
  color: red;
  font-size: 0.8rem;
  font-weight: bold;
  line-height: 1rem;
}

.javascript_on_block,
.javascript_on_inline {
  display: none;
}

/* basic */
img {
  max-width: 100%;
  height: auto;
}

input:not(.check) {
  width: 99%;
  height: 1.5rem;
  padding-left: 0.2rem;
}

textarea {
  width: 100%;
  height: 10rem;
  padding-left: 0.2rem;
}

/* text layout */
#main {
  display: block;
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 2rem;
}

section {
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.box-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-left: auto;
  margin-right: auto;
  margin-right: 1.5rem;
}

.box_inlineblock {
  display: inline-block;
}

.attention {
  color: red;
  font-weight: bold;
}

.textunderline {
  text-decoration: underline;
}

.textindent {
  padding-left: 1rem;
}

.telnumber {
  display: inline-block;
}

.bolder {
  font-weight: bolder;
}

.underline {
  border-bottom: solid 1px gray;
}

.domain::before {
  content: "@";
}

.dot::before {
  content: ".";
}

.contentTitle_index {
  padding: 0 1.5rem 1rem;
}

.contentTitle_index h1 {
  font-size: 1.6rem;
}

.contentTitle {
  display: block;
  max-width: 930px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  padding: 0 1.5rem 1rem;
}

.contentTitle h1 {
  font-size: 1.6rem;
  font-weight: bolder;
}

.contentText {
  display: block;
  max-width: 930px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* 採用ページ用 */
section:not(#member_box) {
  display: block;
  max-width: 930px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

p,
dd {
  margin-bottom: 1rem;
}

th,
td {
  text-align: left;
  padding-left: 1rem;
}

#header_bottom {
  background: #d9e1e1;
}

#header_bottom_inner nav ul li a:hover,
#header_bottom_inner nav ul li .yourlocation {
  border-bottom: solid 6px #84C98B;
  color: #56835a;
}

@media only screen and (max-width: 760px) {
  #header_bottom_inner nav ul li a:hover,
  #header_bottom_inner nav ul li .yourlocation {
    border-bottom: solid 6px #84C98B;
    color: #000;
  }
}

.h1_underline {
  overflow: visible;
  display: block;
  width: 3.5rem;
  height: 0;
  margin-top: 0.3rem;
  padding: 0;
  border-top: solid 6px #a5d6a7;
}

.border_under {
  border-bottom: 1px solid #999999;
}

.side_color {
  position: relative;
}

.side_color::before {
  position: absolute;
  content: "";
  border-radius: 1;
}

.side_color::before {
  left: -1rem;
  top: 0;
  bottom: 0;
  width: 0.3rem;
  height: 60%;
  margin: auto;
}

.entrybtns {
  display: none;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 2rem auto 0;
}

.entrybtns a {
  display: block;
  margin-left: 5%;
  margin-right: 5%;
}

@media screen and (max-width: 759px) {
  .entrybtns a:first-of-type {
    margin-bottom: 3rem;
  }
}

.entrybtns .entrybtn {
  z-index: 1;
  font-weight: bold;
  text-align: center;
  display: block;
  width: 15rem;
  height: 3rem;
  background: #008080;
  border: 1px solid #f0fff0;
  color: #f0fff0;
  line-height: 3rem;
  margin: 0 auto;
}

.entrybtns .entrybtn:hover {
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  opacity: 1;
}

.entrybtns .entrybtn:hover {
  background: #f0fff0;
  border: 1px solid #008080;
  color: #006666;
}

.entrybtns .entrybtn svg {
  fill: none;
  stroke: currentColor;
  padding-bottom: 3px;
}

.entrybtns .entrybtn:hover .entry_icon {
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  stroke: #008080;
}

.entrybtns .entrybtn .entry_icon {
  display: inline-block;
  width: 30px;
  height: 12px;
  margin-left: 0.5rem;
  stroke: #f0fff0;
}

/* animation */
.fadeinFirst {
  -webkit-animation-name: fadeinF;
          animation-name: fadeinF;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}

.fadeinSecond {
  -webkit-animation-name: fadeinF;
          animation-name: fadeinF;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes fadeinF {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeinF {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.tab_wrap .tab_item {
  display: block;
  float: left;
  margin: 0 1rem;
  width: 35%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border-radius: 1rem 1rem 0 0;
  background-color: #dcdcdc;
  line-height: 2rem;
  text-align: center;
  text-align: center;
  font-weight: bold;
}

@media screen and (min-width: 500px) {
  .tab_wrap .tab_item {
    height: 2rem;
  }
}

@media screen and (max-width: 499px) {
  .tab_wrap .tab_item {
    height: 4rem;
  }
}

.tab_wrap .tab_item:hover {
  opacity: 0.75;
}

.tab_wrap input[name="tab_item"] {
  display: none;
}

.tab_wrap .tab_content {
  display: none;
  clear: both;
  overflow: hidden;
}

.tab_wrap #freshers:checked ~ #freshers_content,
.tab_wrap #career:checked ~ #career_content {
  display: block;
  background-color: #f0f8ff;
}

.tab_wrap .tabs input:checked + .tab_item,
.tab_wrap .tab_switch:checked + .tab_item {
  background-color: #f0f8ff;
}

.tab_wrap .box {
  max-width: 90%;
  margin: 0 auto;
  padding: 1rem 0;
}

.tab_wrap .box h2 {
  font-size: 1.1rem;
}

.tab_wrap .box p,
.tab_wrap .box li {
  font-size: 14px;
}

.tab_wrap .box li {
  margin-left: 2rem;
}

.breadcrumb {
  background: rgba(226, 226, 226, 0.5);
  overflow: hidden;
  width: 100%;
}

.breadcrumb_inner {
  display: block;
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  padding: 0.4em 1em;
}

.breadcrumb_inner li {
  display: inline;
  list-style: none;
} 

.breadcrumb_inner li:after {
  content: '>';
  padding: 0 0.3em;
  color: #555;
  font-size: 70%;
}

.breadcrumb_inner li:last-child:after {
  content: '';
}

.breadcrumb_inner li span {
  text-decoration: none;
  color: rgba(70, 70, 70, 0.7);
  font-size: 75%;
}

.breadcrumb_inner li a:hover {
  text-decoration: underline;
}