@charset "UTF-8";
/*============-
mixin
====================*/
/*==============
breakpoints
=====================*/
/*================
common
======================*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100px;
}

body {
  line-height: 1.5;
  font-size: 0.16rem;
  z-index: 1;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}

a {
  cursor: pointer;
  text-decoration: none;
  display: block;
}

a:hover {
  transition: .3s;
  opacity: .8;
}

.inner {
  width: 1000px;
  margin: auto;
  max-width: 90%;
}

img {
  max-width: 100%;
}

.current {
  color: #fff;
  opacity: 1;
  position: relative;
}

.current::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 14px;
  background: #fff;
  width: 80%;
  height: 3px;
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  html {
    font-size: 75px;
  }
  body {
    font-size: calc((0.16rem * 100/50) * 0.9);
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: 50px;
  }
  body {
    font-size: calc((0.16rem * 100/50) * 0.9);
  }
  .is_sp {
    display: none;
  }
}

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

/*==================
header
=========================*/
header {
  background-image: url("../img/backgrounds.png");
  /*background-repeat: no-repeat;
  background-size: cover;*/
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  background-size: cover;
  background-repeat: no-repeat;
}

header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (min-width: 1000px) {
  header .wrapper {
    box-shadow: 2px 1px 8px #333;
  }
}

@media screen and (max-width: 767px) {
  header .wrapper {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  header .wrapper {
    display: none;
  }
}

header .wrapper img {
  width: 195px;
  max-width: 100%;
}

header .wrapper ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 37px;
}

header .wrapper ul li {
  font-size: 16px;
  color: #fff;
  width: 116px;
  text-align: center;
  max-width: 100%;
}

@media screen and (min-width: 1000px) {
  header .wrapper ul li {
    font-size: 20px;
  }
}

main {
  /*===================
  top
  ==========================*/
  /*===============
  about
  ====================*/
  /*===============
  contact
  ==================*/
}

main .top {
  position: relative;
}

@media screen and (min-width: 1000px) {
  main .top {
    top: 80px;
  }
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  main .top {
    top: 77px;
  }
}

@media screen and (max-width: 767px) {
  main .top {
    top: 68px;
  }
}

main .top img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  main .top img {
    height: 200px;
    object-fit: cover;
  }
}

main .top p {
  font-size: 50px;
  background: #fff;
  padding: 10px 30px;
  font-weight: 600;
  position: absolute;
  top: 43%;
  left: 5%;
}

@media screen and (max-width: 767px) {
  main .top p {
    font-size: 20px;
    padding: 10px;
    top: 30%;
  }
}

main .btn {
  text-align: center;
  font-size: 16px;
  margin-top: 45px;
  font-weight: 600;
  background: linear-gradient(to right, #ffce02, #fea80d);
  border-radius: 7px;
  max-width: 100%;
  position: relative;
  box-shadow: 2px 2px 4px #333;
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*アニメーションの指定*/
  transition: ease .2s;
}

main .btn a {
  padding: 10px 0;
}

main .btn a:hover {
  background: #ff4d4d;
  transform-origin: left top;
  transform: scale(1, 1);
}

@media screen and (min-width: 1000px) {
  main .btn {
    width: 346px;
  }
}

main .btn:after {
  content: ">";
  position: absolute;
  top: 8px;
  right: 27px;
}

main .about {
  background-image: url("../img/backgrounds.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 240px 0 160px;
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  main .about {
    padding: 230px 0 100px;
  }
}

@media screen and (max-width: 767px) {
  main .about {
    padding: 160px 0 100px;
  }
}

main .about .wrap {
  display: flex;
  align-items: center;
  color: #fff;
  flex-wrap: wrap;
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  main .about .wrap {
    width: 80%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  main .about .wrap {
    width: 83%;
    margin: 0 auto;
  }
}

main .about .wrap:nth-child(2) {
  flex-direction: row-reverse;
  padding: 100px 0;
}

@media screen and (min-width: 1000px) {
  main .about .wrap:nth-child(2) img {
    border-radius: 20px 0 0 20px;
  }
}

@media screen and (min-width: 1000px) {
  main .about .wrap:nth-child(2) .boxm {
    padding-left: 148px;
  }
}

main .about .wrap .box {
  width: 50%;
}

@media screen and (max-width: 767px) {
  main .about .wrap .box {
    width: 100%;
  }
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  main .about .wrap .box {
    width: 100%;
  }
}

main .about .wrap .box img {
  width: 100%;
}

main .about .wrap .boxm {
  padding: 15px 0 20px 35px;
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  main .about .wrap .boxm {
    padding: 15px 0 20px;
  }
}

@media screen and (max-width: 767px) {
  main .about .wrap .boxm {
    padding: 10px 0 20px;
  }
}

main .about .wrap .ttl_ja {
  font-size: 16px;
}

main .about .wrap .ttl {
  font-size: 34px;
  font-weight: bold;
  filter: drop-shadow(1px 2px 1px #333);
}

main .about .wrap .txt {
  font-size: 18px;
  padding-top: 15px;
}

@media screen and (max-width: 767px) {
  main .about .wrap .txt {
    padding-top: 8px;
    font-size: 15px;
  }
}

@media screen and (min-width: 1000px) {
  main .about .wrap img {
    border-radius: 0 20px 20px 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  main .about .wrap img {
    border-radius: 20px;
  }
}

@media screen and (max-width: 767px) {
  main .about .wrap img {
    border-radius: 20px;
  }
}

main .contact {
  text-align: center;
  padding: 100px 0;
}

main .contact .ttl_en {
  font-size: 12px;
}

main .contact .ttl {
  font-size: 32px;
  font-weight: 600;
  filter: drop-shadow(1px 2px 1px #bbb);
}

main .contact .btn {
  margin-top: 10px;
  margin: 15px auto 0;
  width: 440px;
}

@media screen and (max-width: 767px) {
  main .contact .btn {
    width: 92%;
  }
}

main .contact .btn a {
  padding: 15px 0;
}

main .contact .btn:after {
  content: ">";
  position: absolute;
  top: 14px;
  color: #fff;
}

@media screen and (max-width: 767px) {
  main .contact .btn:after {
    top: 26px;
  }
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  main .contact .btn:after {
    top: 26px;
  }
}

main .contact .btn a {
  color: #fff;
}

/*==============
footer
=====================*/
footer {
  background: #333;
  color: #fff;
  padding: 45px 0 15px !important;
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  footer nav {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  footer nav {
    display: none;
  }
}

footer .wrap {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  footer .wrap {
    justify-content: center;
  }
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  footer .wrap {
    justify-content: center;
  }
}

footer ul {
  display: flex;
  width: 450px;
  max-width: 100%;
}

footer ul li {
  font-size: 12px;
  padding: 0 10px;
  width: 100%;
  border-right: 1px solid #fff;
  text-align: center;
}

footer .copyright {
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  footer .copyright {
    text-align: center;
  }
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  footer .copyright {
    text-align: center;
  }
}

/*CSS*/
/*============
全体レイアウト
=================*/
.drawer_nav {
  width: 100%;
  height: 68px;
  position: relative;
  background: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 2px 1px 6px #555;
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .drawer_nav {
    height: 77px;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999;
  }
}

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

@media screen and (max-width: 767px) {
  .drawer_nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999;
  }
}

.drawer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 70px;
  padding: 0;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .drawer {
    height: 68px;
  }
}

@media screen and (max-width: 767px) {
  .drawer img {
    width: 177px;
    padding-left: 10px;
    height: 68px;
    max-width: 100%;
    object-fit: contain;
  }
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .drawer {
    height: 77px;
  }
  .drawer img {
    width: 210px;
    height: 77px;
    object-fit: contain;
    max-width: 100%;
    padding-left: 20px;
  }
}

/*===========-
 トグル部分
 =====================*/
.navbar_toggle {
  z-index: 9999;
  background-image: url("../img/backgrounds.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 15px 15px 6px;
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .navbar_toggle {
    padding: 15px 15px 6px;
  }
}

.navbar_toggle_icon {
  position: relative;
  display: block;
  height: 3px;
  width: 46px;
  background: #fff;
  -webkit-transition: ease .5s;
  transition: ease .5s;
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .navbar_toggle_icon {
    width: 42px;
    margin: 0 auto;
  }
}

.menus {
  color: #fff;
  display: inline-block;
  padding-top: 2px;
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .menus {
    font-size: 21px;
  }
}

@media screen and (max-width: 767px) {
  .menus {
    padding-left: 2px;
  }
}

.navbar_toggle_icon:nth-child(1) {
  top: 0;
}

.navbar_toggle_icon:nth-child(2) {
  margin: 8px 0;
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .navbar_toggle_icon:nth-child(2) {
    margin: 7px auto;
  }
}

.navbar_toggle_icon:nth-child(3) {
  top: 0;
}

/*OPEN時の動き*/
.navbar_toggle.open .navbar_toggle_icon:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  .navbar_toggle.open .navbar_toggle_icon:nth-child(1) {
    top: 11px;
  }
}

.navbar_toggle.open .navbar_toggle_icon:nth-child(2) {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
}

.navbar_toggle.open .navbar_toggle_icon:nth-child(3) {
  top: -10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media screen and (max-width: 767px) {
  .navbar_toggle.open .navbar_toggle_icon:nth-child(3) {
    top: -11px;
  }
}

/*=============
 ナビゲーションメニュー表示
 ===================*/
.menu {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: ease .5s;
  transition: ease .5s;
  z-index: 1000;
}

.menu ul li {
  padding: 18px 27px;
  border-bottom: 1px solid #00a0e9;
  color: #00a0e9;
}

/*OPEN時の動き*/
.menu.open {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  position: relative;
  z-index: 99;
  position: absolute;
  width: 100%;
}

/*
 
 
 =======================
 COMPANY.html
 =======================
 
 
 */
.greet {
  padding: 155px 0 65px;
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .greet {
    text-align: center;
    padding: 143px 0 65px;
  }
}

.greet .ttl {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 2px;
}

@media screen and (max-width: 767px) {
  .greet .ttl {
    font-size: 26px;
  }
}

@media screen and (max-width: 767px) {
  .greet {
    padding: 143px 0 65px;
  }
}

.greet .inner {
  width: 1100px;
}

.greet .wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 52px 0;
  flex-wrap: wrap;
}

.greet .box {
  margin: 0 -22px;
  width: 50%;
}

.greet .box:first-child {
  width: 50%;
}

.greet .box:first-child img {
  width: 100%;
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .greet .box:first-child {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .greet .box:first-child {
    width: 100%;
  }
}

.greet .box:last-child {
  padding-top: 50px;
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .greet .box {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .greet .box {
    width: 100%;
  }
}

.greet .ttls {
  background-image: url("../img/backgrounds.png");
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  width: 270px;
  max-width: 100%;
  padding: 10px 0;
  font-size: 19px;
  letter-spacing: 1px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 1px 1px 1px #333;
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .greet .ttls {
    position: relative;
    top: -33px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .greet .ttls {
    position: relative;
    top: -33px;
    font-size: 18px;
    margin: 0 auto;
  }
}

.greet .txt {
  padding-top: 20px;
  line-height: 30px;
  font-size: 16px;
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .greet .txt {
    padding-top: 0;
    line-height: 27px;
  }
}

@media screen and (max-width: 767px) {
  .greet .txt {
    padding-top: 0;
    line-height: 32px;
    font-size: 18px;
  }
}

.companys {
  padding: 65px 0 95px;
  background-image: url("../img/backgrounds.png");
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}

.companys .ttl {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 2px;
}

@media screen and (max-width: 767px) {
  .companys .ttl {
    font-size: 26px;
  }
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .companys .ttl {
    font-size: 26px;
  }
}

.companys .inner {
  width: 630px;
  max-width: 100%;
}

.companys .inner .wrapper {
  padding: 35px 0;
}

.companys .wrap {
  display: flex;
  border-bottom: 1px solid #fff;
  padding: 10px 0;
  flex-wrap: wrap;
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .companys .wrap {
    font-size: 18px;
    padding: 20px 0;
  }
}

@media screen and (max-width: 767px) {
  .companys .wrap {
    font-size: 18px;
    padding: 20px 0;
    width: 80%;
    margin: 0 auto;
  }
}

.companys .wrap .box:first-child {
  width: calc(100% - 544px);
}

@media screen and (min-width: 1000px) {
  .companys .wrap .box:first-child {
    text-align-last: justify;
  }
}

@media screen and (max-width: 767px) {
  .companys .wrap .box:first-child {
    width: 100%;
    font-weight: 600;
  }
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .companys .wrap .box:first-child {
    width: 100%;
    font-weight: 600;
  }
}

@media screen and (min-width: 1000px) {
  .companys .wrap .box:last-child {
    padding-left: 32px;
  }
}

@media screen and (max-width: 767px) {
  .companys .wrap .box:last-child {
    width: 100%;
    padding-top: 10px;
  }
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .companys .wrap .box:last-child {
    width: 100%;
    padding-top: 10px;
  }
}

.companys .ttl {
  color: #fff;
  text-align: center;
}

.history {
  color: #333;
  background: #fff;
  padding: 65px 0 45px;
}

.history .ttl {
  color: #333;
}

.history .wrap {
  border-bottom: 1px solid #333;
}

.history .wrap .box:first-child {
  text-align-last: left;
  width: auto;
}

@media screen and (min-width: 1000px) {
  .ttlss {
    padding-left: 36px !important;
  }
}

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

*
ABOUT.html
*

===============================*/
.abouts {
  padding: 155px 0 30px;
  width: 650px;
  max-width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .abouts {
    width: 90%;
    padding: 143px 0 30px;
  }
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .abouts {
    width: 90%;
    padding: 143px 0 30px;
  }
}

.abouts .ttl {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 2px;
}

@media screen and (max-width: 767px) {
  .abouts .ttl {
    font-size: 26px;
  }
}

.abouts .wrap {
  display: flex;
  align-items: center;
  padding: 50px 0;
  justify-content: space-between;
  flex-wrap: wrap;
}

.abouts .wrap img {
  width: 100%;
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .abouts .wrap {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 767px) {
  .abouts .wrap {
    flex-direction: column-reverse;
  }
}

.abouts .wrap .box {
  width: 48%;
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .abouts .wrap .box {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .abouts .wrap .box {
    width: 100%;
  }
}

.abouts .ttls {
  font-size: 20px;
  font-weight: 600;
  padding-left: 24px;
  position: relative;
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .abouts .ttls {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .abouts .ttls {
    display: none;
  }
}

.abouts .ttls::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../img/backgrounds.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 8px;
  height: 31px;
}

.abouts .txt {
  padding: 20px 0;
  line-height: 27px;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .abouts .txt {
    font-size: 18px;
    line-height: 30px;
  }
}

.abouts .btn {
  margin-top: 7px;
  color: #fff;
}

.shop {
  width: 650px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 65px;
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .shop {
    width: 90%;
  }
}

@media screen and (max-width: 767px) {
  .shop {
    width: 90%;
  }
}

.shop summary {
  color: #fff;
  background-image: url("../img/backgrounds.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 10px 0;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
  font-size: 16px;
}

.shop summary::before {
  content: "";
  border: 2px solid #fff;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: inline-block;
  position: absolute;
  top: 10px;
  right: 4.5px;
}

.shop summary:after {
  content: "";
  position: absolute;
  top: 17px;
  right: 13px;
  width: 8px;
  height: 8px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.shop details[open] a {
  color: #267aa8;
}

.shop details[open] summary::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 13px;
  width: 8px;
  height: 8px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(135deg);
}

.shop .wrap {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  flex-wrap: wrap;
}

.shop .wrap .box:first-child {
  width: 160px;
  max-width: 100%;
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .shop .wrap .box:first-child {
    width: 15%;
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .shop .wrap .box:first-child {
    width: 22%;
    text-align: left;
  }
}

.shop .wrap .box:nth-child(2) {
  width: 131px;
  text-align: left;
  max-width: 100%;
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .shop .wrap .box:nth-child(2) {
    width: 55%;
  }
}

@media screen and (max-width: 767px) {
  .shop .wrap .box:nth-child(2) {
    width: 55%;
  }
}

.shop .wrap .box:last-child {
  display: flex;
}

@media screen and (min-width: 1000px) {
  .shop .wrap .box:last-child {
    padding-left: 27px;
  }
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .shop .wrap .box:last-child {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .shop .wrap .box:last-child {
    width: 100%;
    padding-top: 5px;
  }
}

.shop .wrap .box:last-child span {
  display: inline-block;
  padding: 0 5px;
}

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


*
RECRUIT.html
*


================================================--*/
.recruits {
  padding: 150px 0;
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .recruits {
    padding: 135px 0 70px;
  }
}

@media screen and (max-width: 767px) {
  .recruits {
    padding: 135px 0 70px;
  }
}

.recruits .inner {
  width: 760px;
}

.recruits .wraps {
  text-align: center;
}

.recruits .wraps .txt {
  padding-top: 15px;
}

.recruits .wraps .ttl {
  font-size: 26px;
  font-weight: 600;
}

.recruits .wrapper {
  padding: 10px 0;
  box-shadow: 0 0 10px 1px #ddd;
}

.recruits .wrapper .wrap {
  display: flex;
  align-items: flex-start;
  padding: 13px 15px;
  border-bottom: 1px solid #ddd;
  flex-wrap: wrap;
  flex-wrap: wrap;
}

.recruits .wrapper .wrap:last-child {
  border-bottom: none;
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .recruits .wrapper .wrap .box {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .recruits .wrapper .wrap .box {
    width: 100%;
  }
}

.recruits .wrapper .wrap .box:first-child {
  width: 195px;
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .recruits .wrapper .wrap .box:first-child {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .recruits .wrapper .wrap .box:first-child {
    width: 100%;
    padding-bottom: 5px;
  }
}

.recruits .list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 80px;
  color: #fff;
  border-radius: 15px 15px 0 0;
  background-image: url("../img/backgrounds.png");
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .recruits .list {
    margin-top: 50px;
  }
}

@media screen and (max-width: 767px) {
  .recruits .list {
    margin-top: 50px;
  }
}

.recruits .list .lists {
  background-color: rgba(0, 0, 0, 0.5);
  width: 50%;
  padding: 10px 0;
  text-align: center;
  cursor: pointer;
  opacity: .4;
}

.recruits .list .lists:first-child {
  border-radius: 15px 0 0 0;
}

.recruits .list .lists:last-child {
  border-radius: 0 15px 0 0;
}

.active {
  background-image: url("../img/backgrounds.png");
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1 !important;
}

.detail {
  padding-top: 15px;
  font-size: 15px;
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .detail {
    font-size: 12px;
    padding-top: 10px;
  }
}

@media screen and (max-width: 767px) {
  .detail {
    font-size: 12px;
    padding-top: 10px;
  }
}

.recruiter {
  display: none;
}

.show {
  display: block !important;
}

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


Contact.html


===============================================*/
.contacts {
  padding: 155px 0;
  text-align: center;
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .contacts {
    padding: 135px 0 75px;
  }
}

@media screen and (max-width: 767px) {
  .contacts {
    padding: 135px 0 75px;
  }
}

.contacts .ttlbox {
  text-align: center;
}

.contacts .ttlbox .ttl {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 2px;
}

@media screen and (min-width: 1000px) {
  .contacts .ttlbox .ttl {
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .contacts .ttlbox .ttl {
    font-size: 26px;
  }
}

.contacts .ttlbox .txt {
  padding-top: 30px;
}

@media screen and (max-width: 767px) {
  .contacts .ttlbox .txt {
    padding-top: 12px;
  }
}

.fixed {
  position: fixed;
  bottom: 77px;
  right: 22px;
  width: 50px;
  height: 50px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00a0e9;
  font-size: 32px;
  /*デフォルトで非表示にする*/
  opacity: 0;
  visibility: hidden;
}

/*このクラスが付与されると表示する*/
.actives {
  opacity: 1;
  visibility: visible;
}

.thanks {
  text-align: center;
}

.thanks .btn {
  text-align: center;
  margin: 50px auto;
  color: #fff;
}

.thanks .btn a {
  color: #fff;
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .tuika {
    top: 28% !important;
  }
}

@media screen and (min-width: 1000px) {
  .ttl_jas {
    width: 356px;
  }
}

#blog {
  text-align: center;
  padding: 120px 0;
}

#blog iframe {
  max-width: 90%;
  margin: 0 auto;
}

.button_box {
  display: flex;
  justify-content: center;
}

.button_one {
  background: #555;
  color: #fff;
  width: 300px !important;
  text-align: center;
  color: #fff;
  margin: 50px 10px 0 !important;
  padding: 15px 0 !important;
  font-size: 24px;
}

.buttond {
  background: #fff !important;
  color: #333 !important;
  border: 1px solid #444 !important;
  width: 300px !important;
  text-align: center;
  color: #fff;
  margin: 50px 10px 0 !important;
  padding: 15px 0 !important;
  font-size: 24px;
}

.forms {
  padding: 100px 0;
}

.forms dl {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
}

.forms dt {
  background: #eee;
  padding: 25px 40px;
  width: 400px;
  max-width: 100%;
}

.forms dd {
  width: 600px;
  max-width: 100%;
  padding-left: 50px;
}

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