@charset "utf-8";

body {
  position: relative;
  width: 100%;
  color: #414141;
  overflow-x: hidden;
}

.cont_wrap {
  padding: 3em 2em;
}

.inner {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .cont_wrap {
    padding: 4em 2em;
  }

  .sp {
    display: none;
  }
}
@media screen and (min-width: 1300px) {
}

/* ========== BASIC ========== */

a {
  color: #414141;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

.bold {
  font-weight: bold;
}
.normal {
  font-weight: normal;
}

.left {
  text-align: left;
}
.center {
  text-align: center;
}
.right {
  text-align: right;
}

.link {
  color: #0089a0;
}

@media screen and (max-width: 767px) {
}
@media screen and (min-width: 768px) {
  .link:hover {
    text-decoration: underline;
  }
}

/* ========== BOTTOM CONTENTS ========== */

.bottom.cont_wrap {
  padding-bottom: 11em;
  background: #f5f8f9;
}

.bottom.cont_wrap hr {
  margin: 3em 0;
  border: 2px solid #002c33;
}

@media screen and (max-width: 767px) {
}
@media screen and (min-width: 768px) {
  .bottom.cont_wrap {
    padding-bottom: 10em;
  }

  .bottom.cont_wrap hr {
    margin: 4em 0;
  }
}

/* ----- BOTTOM NAV1 ----- */

.btn_nav1 {
  display: flex;
  flex-wrap: wrap;
}

.btn_nav1 a {
  position: relative;
  display: block;
  width: calc(100% / 2);
  height: 18em;
  padding: 2em 0 0 1.5em;
  background-color: #000;
  color: #fff;
}
.btn_nav1 a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 110%;
}

.btn_nav1 a:first-child::after {
  background-image: url("../images/bg_nav1_01.png");
}
.btn_nav1 a:nth-child(2)::after {
  background-image: url("../images/bg_nav1_02.png");
}
.btn_nav1 a:nth-child(3)::after {
  background-image: url("../images/bg_nav1_03.png");
}
.btn_nav1 a:last-child::after {
  background-image: url("../images/bg_nav1_04.png");
}

.btn_nav1 a span {
  position: relative;
  z-index: 2;
  display: block;
}
.btn_nav1 a .en {
  margin-bottom: 0.2em;
  font-size: 1.6em;
  line-height: 1.2;
}

.btn_nav1 a .jp {
}

@media screen and (max-width: 767px) {
}
@media screen and (min-width: 768px) {
  .btn_nav1 a {
    width: calc(100% / 4);
    height: 27em;
    padding: 2em 0 0 2em;
  }
  .btn_nav1 a .en {
    font-size: 2.2em;
  }

  .btn_nav1 a .jp {
    font-size: 1.1em;
  }

  .btn_nav1 a::after {
    transition: 0.2s;
  }

  /* hover */
  .btn_nav1 a:hover::after {
    background-size: 150%;
    opacity: 0.5;
  }
}

/* ----- BOTTOM NAV2 ----- */

.btn_nav2 {
  display: flex;
  flex-wrap: wrap;
}

.btn_nav2 a {
  display: block;
  width: 100%;
  margin-bottom: 2em;
  color: #002c33;
}

.btn_nav2 .img {
  margin-bottom: 0.5em;
  overflow: hidden;
}

.btn_nav2 span {
  font-size: 0.85em;
}

@media screen and (max-width: 767px) {
}
@media screen and (min-width: 768px) {
  .btn_nav2 {
    justify-content: space-between;
  }

  .btn_nav2 a {
    width: calc((100% - 4em) / 3);
    margin-bottom: 0;
  }

  .btn_nav2 span {
    font-size: 0.8em;
  }

  .btn_nav2 .img {
    margin-bottom: 0.5em;
  }

  .btn_nav2 a img {
    transition: 0.2s;
  }

  /* hover */
  .btn_nav2 a:hover img {
    transform: scale(1.1, 1.1);
    transition: 0.2s;
  }
}

/* ========== FOOTER ========== */

/* ========== GO TOP ========== */

.gotop {
  position: fixed;
  bottom: 10em;
  right: 1em;
  display: block;
  width: 3em;
  height: 3em;
  background: #0089a0;
  border-radius: 50%;
  box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.1);
}
.gotop::after {
  content: "";
  position: absolute;
  top: 60%;
  left: 40%;
  display: block;
  width: 0.7em;
  height: 0.7em;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg) translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
}
@media screen and (min-width: 768px) {
  .gotop {
    bottom: 8em;
    right: 1.5em;
  }
  .gotop::after {
    border-width: 3px;
  }
}

/* ========== FIX BUNNER ========== */

.fix_bnr {
  position: fixed;
  left: 50%;
  bottom: 1em;
  z-index: 999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 2em);
  padding: 1em 1.5em;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.1);
  color: #002c33;
  transform: translateX(-50%);
  transition: 0.2s;
}

.fix_bnr div {
  width: calc((100% - 1em) / 2);
}

.fix_bnr .btn {
  margin: 0 0 0.8em;
  padding: 0.8em 2em 0.8em 1em;
  font-size: 0.8em;
}

.fix_bnr .tel {
  width: 100%;
  text-align: center;
}

.fix_bnr .tel p {
  font-size: 0.78em;
}

.fix_bnr .tel .call {
  padding-left: 0.8em;
  background: url("../images/icon_call_g.png") left 0.4em no-repeat;
  background-size: 0.8em;
  color: #0089a0;
  font-size: 1.6em;
  font-weight: bold;
  line-height: 1;
}

.fix_bnr_btn.close {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  color: #0089a0;
  line-height: 1;
}

.fix_bnr_btn.open {
  position: fixed;
  bottom: 5.5em;
  right: 1em;
  z-index: -1;
  display: block;
  width: 3em;
  height: 3em;
  padding: 1em;
  background: #fff;
  border-radius: 50%;
  box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.1);
  color: #0089a0;
  line-height: 1em;
  opacity: 0;
  transition: 0.2s;
}
.fix_bnr_btn.open span {
  display: block;
  transform: scale(1.5, 1.5);
}

/* checked */
#fix_bnr_sw:checked + .fix_bnr {
  bottom: -100%;
}
#fix_bnr_sw:checked ~ .fix_bnr_btn.open {
  opacity: 1;
  z-index: 999;
}

@media screen and (max-width: 767px) {
}
@media screen and (min-width: 768px) {
  .fix_bnr {
    flex-wrap: nowrap;
    justify-content: space-around;
    max-width: 1300px;
  }

  .fix_bnr div {
    width: auto;
  }

  .fix_bnr div:first-child strong {
    display: block;
    font-size: 1.6em;
    line-height: 1.2;
  }

  .fix_bnr .btn {
    width: 16em;
    margin: 0;
    padding: 1em 3em;
    font-size: 1em;
  }

  .fix_bnr .tel {
    width: auto;
  }
  .fix_bnr .tel p {
    font-size: 0.78em;
  }

  .fix_bnr .tel .call {
    padding-left: 0.8em;
    background: url("../images/icon_call_g.png") left 0.4em no-repeat;
    background-size: 0.8em;
    color: #0089a0;
    font-size: 2.6em;
    font-weight: bold;
    line-height: 1;
  }

  .fix_bnr_btn.open {
    bottom: 4em;
    right: 1.5em;
  }
}

/* ========== ENTRY (RECRUIT) ========== */

.recruit_entry.cont_wrap {
  position: relative;
  background: url("../img/recruit/bg_cv.png") 67% center no-repeat;
  background-size: cover;
  color: #fff;
  overflow: hidden;
}

.recruit_entry p {
  font-size: 1.1em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}
.recruit_entry ul {
  padding: 1em 0;
}
.recruit_entry li {
  list-style: outside disc;
  margin: 0 0 0.4em 1em;
  font-size: 1.2em;
  font-weight: bold;
  text-align: left;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}
.recruit_entry p.tel {
  font-size: 0.9em;
}
.recruit_entry .call {
  padding-left: 0.8em;
  background: url("../images/icon_call_w.png") left 0.4em no-repeat;
  background-size: 0.8em;
  color: #fff;
  font-size: 2.6em;
  font-weight: bold;
}

.recruit_entry .btn {
}

@media screen and (max-width: 767px) {
  .recruit_entry {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .recruit_entry.cont_wrap {
    padding: 3em;
    background-position: right center;
  }

  .recruit_entry .btn {
    display: inline-block;
    width: 20em;
    margin: 0 1.8em;
    font-size: 1.1em;
    vertical-align: top;
  }
}

/* ========== STYLE ========== */

/* -----  button ----- */
.btn {
  position: relative;
  display: block;
  margin: 1em auto;
  padding: 1em 3em;
  background: #0089a0;
  border-radius: 8px;
  color: #fff;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}

.btn.arrow::after {
  content: "";
  position: absolute;
  top: 55%;
  right: 1em;
  display: block;
  width: 0.7em;
  height: 0.7em;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
}
@media screen and (min-width: 768px) {
  .btn {
  }

  .btn.arrow::after {
    border-width: 3px;
  }
}

/* ========== *** ========== */

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