@charset "UTF-8";
@media (max-width: 767px) {
  .sp_none {
    display: none;
  }
}

@media (min-width: 768px) {
  .pc_none {
    display: none;
  }
}

/* ----------------------------------------------
common
------------------------------------------------- */
body {
  color: #000000;
  /*  font-size: 16px;
   @include lh(16, 32);
   font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ",
     system-ui, sans-serif; */
  font-size: 15px;
  line-height: 2.5;
  letter-spacing: 0.1333333333em;
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 300;
  font-style: normal;
  background-color: #f5f5f5;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

a {
  color: #4B4948;
  font-weight: bold;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

strong {
  color: #000000;
  font-weight: bold;
}

img {
  max-width: 100%;
  height: auto;
}

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.t-left {
  text-align: left;
}

.bold {
  font-weight: bold;
}

.red {
  color: #f00;
}

.opacity a {
  transition: all 0.5s ease-out;
}

.opacity a:hover {
  opacity: 0.6;
}

.big {
  font-size: 18px;
  line-height: 1.8;
}

/* ----------------------------------------------
side
------------------------------------------------- */
/*
#side {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 4;
  transform: translateY(-50%);
  li {
    & + li {
      margin-top: 20px;
    }
  }
  a {
    @include opacity();
  }
  @media (max-width: 1399px) {
    width: vwCalc(100, 1400);
  }
  @include sp {
    display: none;
  }
}
 */
/* ----------------------------------------------
wrapper
------------------------------------------------- */
.wrapper {
  padding-top: 100px;
}
@media (max-width: 1199px) {
  .wrapper {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .wrapper {
    padding-top: 70px;
  }
}

/* ----------------------------------------------
header
------------------------------------------------- */
#header {
  position: fixed;
  top: 0;
  z-index: 3;
  width: 100%;
}
.ccm-toolbar-visible #header {
  top: 48px;
}

#header .top {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  width: 100%;
  height: 100px;
  padding: 10px 20px;
  background-color: #f5f5f5;
  text-align: center;
}
#header .logo {
  margin-left: 140px;
  width: 80px;
}
#header .links a {
  text-decoration: none;
  transition: all 0.5s ease-out;
}
#header .links a:hover {
  opacity: 0.6;
}
@media (max-width: 1340px) {
  #header .logo {
    margin-left: 30px;
  }
}
@media (max-width: 1199px) {
  #header .top {
    height: 80px;
    padding: 10px;
  }
  #header .logo {
    margin-left: 20px;
  }
}
@media (max-width: 767px) {
  #header .top {
    height: 70px;
    padding-right: 60px;
  }
  #header .logo {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  #header .logo img {
    max-height: 60px;
  }
}

#gnav {
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 500;
  font-style: normal;
  width: 100%;
  height: 100%;
}
#gnav > ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  flex-wrap: wrap;
}
#gnav > ul > li {
  position: relative;
  transition: all 0.5s ease-out;
  margin-left: 30px;
}
#gnav > ul > li:hover > ul {
  visibility: visible;
  opacity: 1;
}
#gnav > ul > li > a {
  transition: all 0.5s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-decoration: none;
  color: #4b4948;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
}
#gnav > ul > li > a:hover {
  opacity: 0.6;
}
#gnav > ul > li ul {
  position: absolute;
  top: 100%;
  visibility: hidden;
  width: 100%;
  opacity: 0;
  transition: all 0.5s ease-out;
  z-index: 1;
}
#gnav > ul > li ul li a {
  transition: all 0.5s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #4b4948;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media (min-width: 768px) {
  #gnav > ul > li:not(.recruit):not(.contact) {
    position: relative;
  }
  #gnav > ul > li:not(.recruit):not(.contact) a {
    margin-bottom: 3px;
  }
  #gnav > ul > li:not(.recruit):not(.contact)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: #4b4948;
    transition: all 0.5s ease-out;
  }
  #gnav > ul > li:not(.recruit):not(.contact):hover::after {
    width: 100%;
  }
  #gnav > ul > li.recruit > a, #gnav > ul > li.contact > a {
    width: 120px;
    border-radius: 30px;
    color: currentColor;
    font-size: 15px;
  }
  #gnav > ul > li.recruit {
    margin-left: 10px;
  }
  #gnav > ul > li.recruit > a {
    /* background-color: #fff;
    border: 1px solid currentColor; */
    background: #455261;
    color: #fff;
  }
  #gnav > ul > li.contact {
    margin-left: 5px;
  }
  #gnav > ul > li.contact > a {
    background-color: #e3a573;
    color: #fff;
  }
  #gnav > ul > li.sizai::after {
    background-color: #e3a573 !important;
  }
  #gnav > ul > li.order::after {
    background-color: #455261 !important;
  }
}
@media (min-width: 1200px) {
  #gnav > ul > li.recruit {
    margin-left: 20px;
  }
  #gnav > ul > li.contact {
    margin-left: 10px;
  }
  #gnav > ul > li.contact > a, #gnav > ul > li.recruit > a {
    width: 152px;
    height: 30px;
  }
}
@media (max-width: 1199px) {
  #gnav > ul > li {
    margin-left: 15px;
  }
  #gnav > ul > li > a {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  #gnav > ul {
    flex-direction: column;
  }
  #gnav > ul > li {
    flex-grow: 0;
  }
  #gnav > ul > li::after {
    display: none;
  }
  #gnav > ul > li > a {
    color: #fff;
  }
  #gnav > ul > li ul {
    visibility: visible;
    opacity: 1;
    position: relative;
    padding: 0;
  }
  #gnav > ul > li ul li {
    border-bottom: 0px;
    border-top: 1px solid #000;
  }
}

/* ----------------------------------------------
pagetop
------------------------------------------------- */
#pagetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 3;
  width: 50px;
  height: 50px;
  transition: all 0.5s ease-out;
}
#pagetop:hover {
  opacity: 0.6;
}
@media (max-width: 767px) {
  #pagetop {
    bottom: 55px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}

/*マウスオーバー時画像切り替え

#pagetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 3;
  a {
    position: relative;
    display: block;
    width: 40px;
    height: 17px;
    img {
      @include transition();
      position: absolute;
      top: 0;
      &:last-child {
        opacity: 0;
      }
    }
    &:hover img:first-child {
      opacity: 0;
    }
    &:hover img:last-child {
      opacity: 1;
    }
  }
  @include sp {
   //display: none !important;
   bottom: 55px;
    right: 10px;
    width: 40px;
      height: 40px;
    a {

    }
  }
}

*/
/*フッター部分に固定
#pagetop {
  position: absolute;
  top: -30px;
  right: -90px;
  z-index: 3;
  width: 60px;
  height: 60px;
  @include opacity();
  @media (max-width: 1250px){
    right: 20px;
  }
  @include sp {
    //display: none !important;
    top: -20px;
    right: 10px;
    width: 40px;
    height: 40px;
    a {
    }
  }
}
*/
/* ----------------------------------------------
footer
------------------------------------------------- */
#footer .inner {
  position: relative;
}
#footer .logo {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
}
#footer .logo a {
  transition: all 0.5s ease-out;
}
#footer .logo a:hover {
  opacity: 0.6;
}
#footer #copyright {
  font-size: 14px;
  line-height: 1.6;
  font-family: "helvetica-lt-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 90px;
  background-color: #fff;
}
#footer #fnav > ul > li:not(:first-child)::before {
  content: "|";
  padding: 0 10px;
}
#footer #fnav > ul > li > a {
  transition: all 0.5s ease-out;
  text-decoration: none;
}
#footer #fnav > ul > li > a:hover {
  opacity: 0.6;
}
#footer #fnav > ul > li ul li::before {
  content: "―";
  padding: 0 10px;
}
#footer #fnav > ul > li ul li a {
  transition: all 0.5s ease-out;
  text-decoration: none;
}
#footer #fnav > ul > li ul li a:hover {
  opacity: 0.6;
}
@media (max-width: 767px) {
  #footer #fnav {
    display: none;
  }
  #footer .logo {
    width: 180px;
    margin-bottom: 45px;
  }
  #footer #copyright {
    font-size: 13px;
    height: 50px;
  }
}

/* ----------------------------------------------
contactbnr
------------------------------------------------- */
.contactbnr {
  margin-top: 150px;
  margin-bottom: 130px;
}
.contactbnr .inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
.contactbnr .contents {
  display: flex;
  justify-content: space-between;
}
.contactbnr h2 {
  font-size: 30px;
  color: #4b4948;
  line-height: 1.4;
  font-weight: bold;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 40px;
  text-align: center;
  margin-bottom: 70px;
}
.contactbnr h2 small {
  display: block;
  font-size: 22px;
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media (max-width: 1199px) {
  .contactbnr h2 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .contactbnr h2 {
    font-size: 25px;
  }
  .contactbnr h2 small {
    font-size: 16px;
  }
}
.contactbnr .tel-box,
.contactbnr .contact {
  height: 255px;
  width: 49%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  border-radius: 7px;
}
.contactbnr .tel-box .title,
.contactbnr .contact .title {
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
}
.contactbnr .tel-box a,
.contactbnr .contact a {
  transition: all 0.5s ease-out;
  text-decoration: none;
}
.contactbnr .tel-box a:hover,
.contactbnr .contact a:hover {
  opacity: 0.6;
}
.contactbnr .tel-box {
  color: #455261;
}
.contactbnr .tel-box .icon {
  width: 57px;
  aspect-ratio: 57/53;
  background: #455261;
  -webkit-mask-image: url(../images/contact-tel.png);
          mask-image: url(../images/contact-tel.png);
}
.contactbnr .tel-box .icon img {
  display: none;
}
.contactbnr .tel-box .title {
  margin-top: 0.4em;
}
.contactbnr .tel-box a {
  font-family: "helvetica-lt-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 33px;
  color: #455261;
  letter-spacing: 0.04em;
  line-height: 1.8;
}
.contactbnr .contact {
  color: #e3a573;
}
.contactbnr .contact .icon {
  width: 52px;
  aspect-ratio: 52/38;
  background: #e3a573;
  -webkit-mask-image: url(../images/contact-mail.png);
          mask-image: url(../images/contact-mail.png);
}
.contactbnr .contact .icon img {
  display: none;
}
.contactbnr .contact .title {
  margin-top: 0.7em;
}
.contactbnr .contact .btn {
  width: 186px;
  height: 53px;
  border-radius: 100px;
  background: #e3a573;
  text-decoration: none;
  transition: all 0.5s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.contactbnr .contact .btn:hover {
  opacity: 0.6;
}
.contactbnr .contact .btn a {
  width: 100%;
  height: 100%;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  padding-right: 50px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../images/contact-arrow.png);
  background-position: center right 25px;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .contactbnr {
    margin-top: 120px;
    margin-bottom: 50px;
  }
  .contactbnr h2 {
    margin-bottom: 35px;
  }
  .contactbnr .contents {
    display: block;
  }
  .contactbnr .tel-box,
  .contactbnr .contact {
    width: 100%;
    height: auto;
    padding: 30px 10px;
  }
  .contactbnr .tel-box .title,
  .contactbnr .contact .title {
    font-size: 16px;
  }
  .contactbnr .tel-box .tel a {
    font-size: 28px;
  }
  .contactbnr .contact {
    margin-top: 15px;
  }
}/*# sourceMappingURL=style.css.map */