@charset 'UTF-8';

/*-----------------------------------
フォント
--------------------------------------------------------*/
@font-face {
  font-family: "Mukta";

  src: url("fonts/Mukta/Mukta-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Noto Sans JP", sans-serif;

  src: url("fonts/Noto_Sans_JP/NotoSansJP-Regular.otf") format("truetype");
}

/*-----------------------------------
共通部分
--------------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  font-family: Lato, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体",
    "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 2;

  width: 100%;
  margin: 0 auto;
  padding: 0;

  letter-spacing: 0.1em;

  color: #333;
}

a {
  text-decoration: none;

  color: #333;
  outline: none;
}

a:focus {
  outline: none;
}

.movi-items {
  display: none;
}

@media (max-width: 960px) {
  .pc-items {
    display: none;
  }

  .movi-items {
    display: block;
  }
  body {
    font-size: 1.4rem;
  }
}

/*-----------------------------------
見出し
--------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;

  margin-top: 0;
  margin-bottom: 1rem;
}
h1 {
  font-size: 3.2rem;
}
h2 {
  font-size: 3rem;
  line-height: 1.25;
}
h3 {
  font-family: "Mukta";
  font-size: 2.8rem;
  line-height: 1.3;
}

h4 {
  font-size: 2.4rem;
  line-height: 1.35;
}
h5 {
  font-size: 1.8rem;
  line-height: 1.5;
}
h6 {
  font-size: 1.5rem;
  line-height: 1.6;
}

/* PC表示 */
@media (min-width: 550px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.8rem;
  }
  h3 {
    font-size: 2.5rem;
  }
  h4 {
    font-size: 2rem;
  }
  h5 {
    font-size: 1.8rem;
  }
  h6 {
    font-size: 1.5rem;
  }
}

/*-----------------------------------
ヘッダー
--------------------------------------------------------*/
.site-header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;

  width: 100%;

  transition: 0.5s;

  background-color: rgba(0, 0, 0, 0.2);
}

.site-header.hide {
  transform: translateY(-100%);
}

.logo {
  width: 160px;
  margin-top: 14px;
}

.main_nav {
  display: flex;

  margin-top: 25px;

  text-transform: uppercase;
}
.main_nav li {
  font-family: "Mukta", sans-serif;
  font-weight: bold;
  line-height: 1.7;

  margin-left: 24px;
}

.main_nav a {
  font-size: 20px;

  position: relative;

  display: inline-block;

  text-decoration: none;

  color: #fff;
}

.main_nav a::after {
  position: absolute;
  bottom: -4px;
  left: 0;

  width: 100%;
  height: 2px;

  content: "";
  transition: transform 0.3s;
  transform: scale(0, 1);
  transform-origin: left top;

  background: #fff;
}

.main_nav a:hover::after {
  transform: scale(1, 1);
}

.menu_bottom {
  font-size: 10%;

  padding-top: 2px;

  border-top: #fff 1px solid;
}

.pc_nav {
  display: flex;
  justify-content: space-between;
}

#mobile_navi {
  display: none;
}

.bg1 {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.bg2 {
  display: none;
}

.mainContainer {
  width: 100%;
}

.wrapper {
  width: 80%;
  margin: auto;
}

.footer_navi ul li a:hover {
  transition: 0.3s;

  opacity: 0.6;
}

img {
  max-width: 100%;
}

ul,
li,
dl,
dt,
dd {
  margin: 0;
  padding: 0;

  list-style: none;
}

@media (max-width: 960px) {
  /*menu*/
  #pc_navi {
    display: none;
  }

  #mobile_navi {
    display: block;
  }
  .menu {
    position: absolute;
    z-index: 99;
    top: 20px;
    right: 16px;

    width: 30px;
    height: 20px;
  }
  .menu__line {
    position: absolute;

    display: block;

    width: 100%;
    height: 1.6px;

    transition: transform 0.3s;

    border-radius: 160px;
    background: #fff;
  }
  .menu__line--center {
    top: 9px;
  }
  .menu__line--bottom {
    bottom: 0;
  }
  .menu__line--top.active {
    top: 8px;

    transform: rotate(45deg);
  }
  .menu__line--center.active {
    transform: scaleX(0);
  }
  .menu__line--bottom.active {
    bottom: 10px;

    transform: rotate(135deg);
  }
  /*gnav*/
  .gnav {
    z-index: 98;

    display: none;

    height: 100vh;
    margin-top: -60px;

    background: rgba(0, 0, 0, 0.75);
  }
  .gnav__wrap {
    position: absolute;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    text-align: center;
  }

  .gnav__menu {
    margin-top: -80px;
  }

  .gnav__menu__item {
    margin: 16px 0;
  }

  .gnav__menu a {
    font-size: 200%;

    position: relative;

    display: inline-block;

    text-decoration: none;

    color: #fff;
  }
  .gnav__menu a::after {
    position: absolute;
    bottom: -4px;
    left: 0;

    width: 100%;
    height: 2px;

    content: "";
    transition: transform 0.3s;
    transform: scale(0, 1);
    transform-origin: left top;

    background: #fff;
  }
  .gnav__menu a:hover::after {
    transform: scale(1, 1);
  }

  .gnav__wrap .gnav__menu .gnav__menu__item {
    font-family: Mukta;
    font-weight: bold;
  }

  #mobile_navi h1 a img {
    width: 120px;
    height: auto;
    margin-bottom: 0;
    margin-left: 10px;
  }

  .bg1 {
    display: none;
  }
  .bg2 {
    display: block;
  }
}

/*-----------------------------------
採用、コンタクトのボタン
--------------------------------------------------------*/
.recruit_contactArea {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;

  width: 80%;
  margin: auto;
}

.recruit_contactArea a {
  display: inline-block;

  width: 380px;
  margin: auto;
  margin-top: 100px;
  margin-bottom: 100px;
  padding-top: 64px;
  padding-bottom: 64px;

  text-align: center;

  color: #fff;
}

#recruit_button {
  font-size: 150%;
  font-weight: bold;

  background-image: url(../img/rec.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

#contact_button {
  font-size: 150%;
  font-weight: bold;

  background-image: url(../img/con.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media (max-width: 960px) {
  .recruit_contactArea {
    display: block;

    width: 80%;
  }

  .recruit_contactArea a {
    display: inline-block;

    margin: auto;
    margin-top: 0;
    margin-bottom: 64px;
    padding-top: 64px;
    padding-bottom: 64px;

    color: #fff;
  }

  #recruit_button {
    width: 100%;
  }

  #contact_button {
    font-size: 120%;
    font-weight: bold;

    width: 100%;

    background-image: url(../img/con.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
}

/*-----------------------------------
フッター
--------------------------------------------------------*/
.footer-bnr {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 8em;
  text-align: center;
}
.footer-bnr img{
  width: 35%;
}

footer {
  text-align: center;
  background-color: #f0f0f0;
}

footer hr {
  width: 90%;
  height: 1px;
  margin: auto;

  border: 0;
  background-color: #fff;
}

.footer_info {
  margin: 20px auto 20px;
}

.footer_info .foot-company {
  font-size: 120%;
  font-weight: bold;

  margin-top: 40px;
}

.footer_info p {
  font-size: 90%;
  line-height: 2;
}

.footer_navi ul {
  font-family: Mukta;
  font-size: 140%;
  font-weight: bold;

  display: flex;
  max-width: 700px;
  margin: auto;
  margin-bottom: 50px;
}

.footer_navi ul li {
  width: 100px;
  margin: auto;
}

#footer_icon {
  width: 60px;
  margin-right: auto;
  margin-bottom: 10px;
  margin-left: auto;
  padding-top: 10px;

  opacity: 0.5;
}

#copyright {
  margin-top: 30px;
  padding-bottom: 30px;
}

@media (max-width: 960px) {

  #footer_icon {
    width: 60px;
  }
  .footer_navi ul {
    font-family: Mukta;
    font-size: 140%;
    line-height: 2.4;

    display: block;

    margin-bottom: 30px;
  }
  .footer_navi ul li {
    margin: auto;
  }
  
}

@media (max-width: 640px) {

.footer-bnr {
  padding-bottom: 4em;
  text-align: center;
}
.footer-bnr img{
  width:80%;
}
}

/*-----------------------------------
パンくずリスト
--------------------------------------------------------*/
#breadcrumb {
  font-size: smaller;
  font-size: smaller;

  display: flex;
  justify-content: space-between;

  width: 80%;
  margin: auto;
  margin-top: 4px;
  margin-bottom: 64px;
  /* margin-left: 8%; */
  padding: 0;

  list-style: none;
}
#breadcrumb ol {
  display: inline-block;
}
#breadcrumb ol li {
  display: inline;
}
#breadcrumb ol li::after {
  padding-left: 7px;

  content: ">";
}
#breadcrumb ol li:last-child::after {
  content: none;
}

#breadcrumb h1 {
  font-size: smaller;
  font-weight: normal;

  display: inline-block;

  margin-bottom: 0rem;
  margin-left: 10px;
}

@media (max-width: 560px) {
  #breadcrumb {
    width: 90%;
  }
}

/*-----------------------------------
フェードイン
--------------------------------------------------------*/
.fadein {
  transition: all 1s;
  transform: translateY(50px);

  opacity: 0;
}

.overlay,
.animate-elm.-max-width:before,
.animate-elm.-transform:before {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  -webkit-transition: 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;

  background-color: #fff;
}

.overlay-max-width,
.animate-elm.-max-width:before {
  max-width: 100%;
}

.overlay-transform,
.animate-elm.-transform:before {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

.animate-elm {
  position: relative;

  overflow: hidden;

  height: 200px;
  margin: 0 auto;

  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.animate-elm.-max-width:before,
.animate-elm.-transform:before {
  content: "";
}

.animate-elm.show.-max-width:before,
.animate-elm.show .overlay-max-width {
  max-width: 0;
}

.animate-elm.show.-transform:before,
.animate-elm.show .overlay-transform {
  -webkit-transform: translateX(101%);
  transform: translateX(101%);
}

@media only screen and (min-width: 960px) {
  .animate-elm {
    height: 400px;
  }
}

.animate {
  width: 100%;
  margin-right: 16%;
}

/*-----------------------------------
ブログアイキャッチ画像
--------------------------------------------------------*/
.eye-catch {
  margin: auto;

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
