@charset "UTF-8";
/************************
mediaQuery
************************/
/************************
コンテンツのヘッダ
************************/
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Maru+Gothic:wght@300;400;500;700&family=Shippori+Mincho:wght@400;500;600;700&display=swap");
body {
  color: #3B3B3B;
  font-family: YuGothic, "Yu Gothic", "游ゴシック体", "游ゴシック", "Hiragino Kaku Gothic ProN", "HiraKakuPro-W3", "メイリオ", Meiryo, Verdana, sans-serif;
}

h2, h3, h4, h5, h6 {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.wrapper {
  display: flex;
  flex-direction: column;
  /*  height:100%;*/
  width: 100%;
  min-width: 1145px;
}

a:hover {
  transition: 0.2s ease-in-out;
}
a:hover::after, a:hover::before {
  transition: 0.2s ease-in-out;
}

/************************
header
************************/
header.header .header-body {
  display: flex;
  align-items: center;
  height: 110px;
  padding: 17px 30px;
  margin: auto;
  width: 100%;
  /*min-width:$minWidth;*/
}
header.header .header-body .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
header.header .header-body .inner a {
  display: block;
}
header.header .header-body .inner .logo {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 60px;
  flex-shrink: 0;
  max-width: 385px;
}
header.header .header-body .inner .logo > img {
  display: block;
  margin-right: 15px;
  flex-shrink: 0;
  width: 60px;
}
header.header .header-body .inner .logo h1 {
  flex: 1;
  letter-spacing: 0.05em;
  word-break: break-all;
}
header.header .header-body .inner .logo h1 .corporate {
  font-size: 1.1rem;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
  width: 100%;
}
header.header .header-body .inner .logo h1 .corporate.none {
  display: none;
}
header.header .header-body .inner .logo h1 .facility {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  word-break: break-all;
  width: 100%;
}
header.header .header-body .inner .logo h1 img {
  display: block;
  width: 100%;
  max-height: 60px;
  max-width: 360px;
}
header.header .header-body .inner .navigation .main-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 20px 0 0;
  gap: 0 10px;
}
header.header .header-body .inner .navigation .main-nav > li {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  white-space: nowrap;
  position: relative;
}
header.header .header-body .inner .navigation .main-nav > li > a, header.header .header-body .inner .navigation .main-nav > li > span {
  display: block;
  height: 60px;
  line-height: 60px;
  text-align: center;
  padding: 0 5px;
  position: relative;
}
header.header .header-body .inner .navigation .main-nav > li > a::after, header.header .header-body .inner .navigation .main-nav > li > span::after {
  background-color: #3B3B3B;
  content: "";
  height: 1px;
  position: absolute;
  bottom: 15px;
  /*left:5px;
  right:5px;*/
  width: 0;
  transition: all 0.2s;
  transform: scale(0);
}
header.header .header-body .inner .navigation .main-nav > li > a:hover, header.header .header-body .inner .navigation .main-nav > li > span:hover {
  cursor: pointer;
}
header.header .header-body .inner .navigation .main-nav > li > a:hover::after, header.header .header-body .inner .navigation .main-nav > li > span:hover::after {
  left: 5px;
  right: 5px;
  width: auto;
  transform: scale(1);
}
header.header .header-body .inner .navigation .main-nav > li .sub-nav {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  position: absolute;
  top: 60px;
  width: 200px;
  padding: 17px 14px;
  z-index: 101;
  display: none;
}
header.header .header-body .inner .navigation .main-nav > li .sub-nav li {
  height: 42px;
}
header.header .header-body .inner .navigation .main-nav > li .sub-nav li a {
  display: block;
  height: 42px;
  line-height: 42px;
  padding: 0 14px;
  position: relative;
}
header.header .header-body .inner .navigation .main-nav > li .sub-nav li a::after {
  background: url("../img/common/sub_menu_arrow.svg") no-repeat center center;
  background-size: contain;
  content: "";
  height: 27px;
  position: absolute;
  right: 14px;
  top: 50%;
  margin-top: -13px;
  width: 27px;
}
header.header .header-body .inner .navigation .main-nav > li .sub-nav li a:hover::after {
  background: url("../img/common/sub_menu_hover_arrow.svg") no-repeat center center;
  background-size: contain;
}
header.header .header-body .inner .navigation .main-nav > li.service .sub-nav {
  left: 50%;
  margin-left: -100px;
}
header.header .header-body .inner .navigation .main-nav > li.company {
  transition: all 0.3s;
}
header.header .header-body .inner .navigation .main-nav > li.company .sub-nav {
  left: 50%;
  margin-left: -100px;
}
header.header .header-body .inner .navigation .main-nav > li.recruit .sub-nav {
  right: -20px;
}
header.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
header.header.fixed .header-body {
  padding: 20px 30px;
  height: 100px;
  min-width: 1145px;
}
header.header.fixed .inner {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  padding: 10px 10px 10px 30px;
  height: 60px;
}
header.header.fixed .inner .logo {
  min-height: 40px;
}
header.header.fixed .inner .logo > img {
  width: 40px;
}
header.header.fixed .inner .logo h1 .corporate {
  margin-bottom: 5px;
  min-width: 300px;
  max-width: 420px;
}
header.header.fixed .inner .logo h1 .facility {
  min-width: 300px;
  max-width: 420px;
}
header.header.fixed .inner .logo h1 img {
  max-height: 40px;
  max-width: 300px;
}
header.header.fixed ~ main {
  margin-top: 100px;
}

/************************
sidenav
************************/
.side-nav {
  height: 150px;
  overflow: hidden;
  width: 60px;
  position: fixed;
  right: 0;
  top: 110px;
  z-index: 100;
}
.side-nav a {
  background: #3B3B3B;
  border-top: 2px solid #3B3B3B;
  border-bottom: 2px solid #3B3B3B;
  border-left: 2px solid #3B3B3B;
  border-radius: 10px 0 0 10px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  width: 60px;
}
.side-nav a:hover {
  background: #fff;
  color: #3B3B3B;
}
.side-nav a p {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
  writing-mode: vertical-rl;
  letter-spacing: 1px;
  pointer-events: none;
}

/************************
breadcrumbs
************************/
.breadcrumbs {
  width: 100%;
  min-width: 1200px;
  margin: auto;
}
.breadcrumbs ol {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.breadcrumbs ol li {
  font-size: 1.1rem;
  padding: 0 27px 0 0;
  position: relative;
}
.breadcrumbs ol li::after {
  background: #3B3B3B;
  content: "";
  height: 1px;
  position: absolute;
  width: 6px;
  right: 10px;
  top: 50%;
}
.breadcrumbs ol li:last-of-type::after {
  display: none;
}
.breadcrumbs ol li a, .breadcrumbs ol li span {
  color: #3B3B3B;
}
.breadcrumbs ol li .is-active {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}

/************************
404
************************/
.notfound-inner {
  min-width: 1200px;
  max-width: 1200px;
  margin: auto;
}
.notfound-inner .notfound {
  padding: 74px 100px 0 100px;
  width: 100%;
  min-width: 1200px;
}
.notfound-inner .notfound p {
  font-size: 1.6rem;
  line-height: 1.8;
}

/************************
footer
************************/
footer {
  position: relative;
  z-index: 1;
}
footer.footer {
  background: #767676;
}
footer.footer .footer-body {
  background: url("../img/common/footer_bg.jpg") no-repeat left top;
  width: 100%;
  min-width: 1500px;
  height: 690px;
  margin: auto;
  padding: 0 0 0 500px;
}
footer.footer .footer-body .company-prof {
  color: #fff;
  font-weight: 500;
  font-family: YuGothic, "Yu Gothic", "游ゴシック体", "游ゴシック";
  padding: 80px 10px 45px 120px;
  display: flex;
  flex-direction: column;
  height: 690px;
  position: relative;
  letter-spacing: 0.05em;
}
footer.footer .footer-body .company-prof::before {
  background: #767676;
  mix-blend-mode: multiply;
  content: "";
  position: absolute;
  left: -500px;
  top: 0;
  width: 500px;
  bottom: 0;
}
footer.footer .footer-body .company-prof .profbox {
  flex: 1;
  margin-bottom: 45px;
}
footer.footer .footer-body .company-prof .profbox .division {
  font-size: 1rem;
  margin-bottom: 25px;
}
footer.footer .footer-body .company-prof .profbox .name {
  margin-bottom: 22px;
  word-break: break-all;
  width: 315px;
}
footer.footer .footer-body .company-prof .profbox .name h3 {
  font-family: inherit;
}
footer.footer .footer-body .company-prof .profbox .name h3 .corporate {
  display: block;
  font-size: 1rem;
  margin-bottom: 10px;
}
footer.footer .footer-body .company-prof .profbox .name h3 .facility {
  display: block;
  font-size: 2rem;
  line-height: 1.4;
  min-height: 56px;
}
footer.footer .footer-body .company-prof .profbox .tel {
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 25px;
}
footer.footer .footer-body .company-prof .profbox .address {
  margin-bottom: 50px;
}
footer.footer .footer-body .company-prof .profbox .address .postnum {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
footer.footer .footer-body .company-prof .profbox .address .text {
  font-size: 1.1rem;
}
footer.footer .footer-body .company-prof .profbox .sns {
  height: 23px;
  margin-bottom: 50px;
}
footer.footer .footer-body .company-prof .profbox .sns ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 15px;
}
footer.footer .footer-body .company-prof .profbox .sns ul li a {
  display: block;
}
footer.footer .footer-body .company-prof .profbox .sns ul li a img {
  display: block;
  width: 100%;
}
footer.footer .footer-body .company-prof .profbox .sitemap ol {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0 15px;
}
footer.footer .footer-body .company-prof .profbox .sitemap ol > li {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 120px;
}
footer.footer .footer-body .company-prof .profbox .sitemap ol > li ul li {
  margin-bottom: 20px;
}
footer.footer .footer-body .company-prof .profbox .sitemap ol > li ul li:last-of-type {
  margin-bottom: 0;
}
footer.footer .footer-body .company-prof .profbox .sitemap ol > li dl dt {
  margin-bottom: 20px;
}
footer.footer .footer-body .company-prof .profbox .sitemap ol > li dl dd {
  margin-bottom: 20px;
  padding: 0 0 0 10px;
}
footer.footer .footer-body .company-prof .profbox .sitemap ol > li dl dd::before {
  content: "-";
  display: inline-block;
  margin-right: 6px;
}
footer.footer .footer-body .company-prof .profbox .sitemap ol > li dl dd:last-of-type {
  margin-bottom: 0;
}
footer.footer .footer-body .company-prof .copyright {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
footer.footer .footer-body .company-prof .copyright small {
  font-size: 1rem;
  margin-right: 40px;
}
footer.footer .footer-body .company-prof .copyright .privacy {
  font-size: 1rem;
}
/************************
topに戻る
************************/
.float-top {
  position: fixed;
  right: 150px;
  bottom: -60px;
  z-index: 100;
}
.float-top a {
  background: #fff;
  border: 1px solid #3B3B3B;
  border-radius: 50%;
  display: block;
  height: 60px;
  width: 60px;
  position: relative;
}
.float-top a::before {
  border-top: 1px solid #3B3B3B;
  border-right: 1px solid #3B3B3B;
  content: "";
  height: 14px;
  position: absolute;
  width: 14px;
  transform: rotate(-45deg);
  left: 50%;
  margin-left: -6px;
  top: 50%;
  margin-top: -3px;
}
.float-top a:hover {
  background: #3B3B3B;
}
.float-top a:hover::before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

/************************
タイプ別
************************/
/*typeA*/
.type-a h1 .facility {
  font-family: "Zen Maru Gothic", serif;
}
.type-a .mv {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
}

/*typeB*/
/*ここにタイプ別設定*/
.type-b h1 .facility {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.type-b .mv {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}

/*typeC*/
.type-c h1 {
  font-weight: 400;
}
.type-c h1 .facility {
  font-family: "Shippori Mincho", serif;
}
.type-c .mv {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
}
.type-c .mv h1 {
  font-weight: 600;
}

/*ここにタイプ別設定*//*# sourceMappingURL=common.css.map */