@charset "UTF-8";
/*responsive.css上書き(bootstrap4)*/
.mx-auto {
  display: block;
}

/*----------------------------------------------------
  基本のレイアウト
----------------------------------------------------*/
html {
  scroll-snap-type: y proximity;
  scroll-padding-top: 60px;
  scroll-behavior: smooth;
}

body {
  color: #222;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  animation: fadeIn 1s forwards;
  overflow-x: hidden;
}
@media screen and (max-width: 767.98px) {
  body {
    font-size: 1.4rem;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.wrap {
  padding-top: 60px;
}
.wrap .contents-wrap {
  padding: 8rem 0;
}
.wrap .contents-wrap:last-child {
  border-bottom: 0;
}
@media screen and (max-width: 767.98px) {
  .wrap .contents-wrap {
    padding: 3rem 0 5rem;
  }
}
.wrap .contents-wrap p {
  line-height: 2;
}

@media (min-width: 576px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.fadein {
  opacity: 0;
}

.fadeinAnime {
  animation-fill-mode: both;
  animation-duration: 1s;
  animation-name: fadeinAnime;
  visibility: visible !important;
  animation-delay: 0.1s;
}

@-webkit-keyframes fadeinAnime {
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeinAnime {
  30% {
    opacity: 0;
    transform: translate(0, 30px);
  }
  100% {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}
.section-wrap {
  padding: 8rem 0;
  background-size: 8px 1px;
  background-image: linear-gradient(to right, #878787 4px, transparent 4px);
  background-repeat: repeat-x;
  background-position: center bottom;
}
@media screen and (max-width: 767.98px) {
  .section-wrap {
    padding: 5rem 0;
  }
}

.section-title {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767.98px) {
  .section-title {
    margin-bottom: 3rem;
  }
}
.section-title span {
  font-size: 2.4rem;
  border-bottom: 1px solid #878787;
  padding-bottom: 0.3em;
  line-height: 2;
}
@media screen and (max-width: 767.98px) {
  .section-title span {
    font-size: 2rem;
  }
}

/*----------------------------------------------------
  リンク色
----------------------------------------------------*/
a:link {
  color: #245fbb;
  text-decoration: none;
}

a:visited {
  color: #245fbb;
  text-decoration: none;
}

a:hover {
  color: #E48E00;
  text-decoration: underline;
}

a:active {
  color: #E48E00;
  text-decoration: underline;
}

/*ボタン*/
/*----------------------------------------------------
  タイトル
----------------------------------------------------*/
.page-title-wrap {
  height: calc(100vh - 60px - 304px);
  max-height: 500px;
  min-height: 400px;
  background: no-repeat center center;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 767.98px) {
  .page-title-wrap {
    height: 320px;
    min-height: auto;
    max-height: auto;
  }
}
@media screen and (max-width: 575.98px) {
  .page-title-wrap {
    height: 220px;
  }
}
.page-title-wrap .container {
  display: flex;
  height: 100%;
  align-items: center;
}
.page-title-wrap .container .page-title {
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-shadow: 2px 2px 5px #ffffff, -2px 2px 5px #ffffff, 2px -2px 5px #ffffff, -2px -2px 5px #ffffff;
}
@media screen and (max-width: 991.98px) {
  .page-title-wrap .container .page-title {
    font-size: 4.6rem;
  }
}
@media screen and (max-width: 767.98px) {
  .page-title-wrap .container .page-title {
    font-size: 4rem;
  }
}
@media screen and (max-width: 575.98px) {
  .page-title-wrap .container .page-title {
    font-size: 2.7rem;
  }
}
.page-title-wrap .txt-rotate {
  position: absolute;
  bottom: -150px;
  right: 5rem;
}
@media screen and (max-width: 991.98px) {
  .page-title-wrap .txt-rotate {
    bottom: -12vw;
  }
}
@media screen and (max-width: 767.98px) {
  .page-title-wrap .txt-rotate {
    right: -5vw;
  }
}
.page-title-wrap .page-down {
  position: absolute;
  top: 40%;
  right: 1rem;
}
.page-title-wrap .page-down span {
  color: #fff;
  display: inline-block;
  position: relative;
  line-height: 1;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-decoration: none;
  white-space: nowrap;
  padding: 0 1rem 6.5rem;
  filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.2));
}
@media screen and (max-width: 767.98px) {
  .page-title-wrap .page-down span {
    display: none;
  }
}
.page-title-wrap .page-down span::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 7rem;
  width: 2px;
  height: 0;
  background-color: #fff;
  left: 50%;
  margin-left: -2px;
  animation: pathmove 1.4s ease-in-out infinite;
  filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.2));
}

@keyframes pathmove {
  0% {
    height: 0;
    top: 7rem;
    opacity: 0;
  }
  30% {
    height: 3rem;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 100%;
    opacity: 0;
  }
}
/*----------------------------------------------------
  ヘッダー
----------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  width: 100%;
  transition: 0.3s;
  z-index: 100;
}
header .header-area {
  height: 60px;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  transition: 0.2s;
}
@media screen and (max-width: 991.98px) {
  header .header-area {
    height: 60px;
  }
}
header .header-area .header-left {
  display: flex;
  align-items: center;
}
header .header-area .header-left a.header-logo {
  display: inline-block;
  margin-left: 2rem;
  color: #222;
  text-decoration: none;
}
@media screen and (max-width: 991.98px) {
  header .header-area .header-left a.header-logo {
    margin-left: 1.5rem;
  }
}
header .header-area .header-left a.header-logo img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  width: 102px;
}
@media screen and (max-width: 991.98px) {
  header .header-area .header-left a.header-logo img {
    width: min(11vw, 102px);
  }
}
@media screen and (max-width: 767.98px) {
  header .header-area .header-left a.header-logo img {
    width: 88px;
    display: block;
  }
}
header .header-area .header-left a.header-logo span {
  font-size: 2.2rem;
  font-weight: 700;
  display: inline-block;
  margin-left: 1.5rem;
}
@media screen and (max-width: 991.98px) {
  header .header-area .header-left a.header-logo span {
    font-size: min(2vw, 2rem);
    margin-left: min(1.3vw, 1.5rem);
  }
}
@media screen and (max-width: 767.98px) {
  header .header-area .header-left a.header-logo span {
    font-size: 1.4rem;
    margin-left: 0;
  }
}
@media screen and (max-width: 767.98px) {
  header .header-area .header-right {
    display: none;
  }
}
header .header-area .header-right nav {
  height: 100%;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: right;
}

/*----------------------------------------------------
  ナビゲーション
----------------------------------------------------*/
ul.global-nav {
  list-style: none;
  padding-left: 0;
  display: flex;
  height: 100%;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: 2rem;
}
@media screen and (max-width: 1199.98px) {
  ul.global-nav {
    margin-right: 1.5rem;
  }
}
ul.global-nav > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 1.5vw;
  text-decoration: none;
  color: #222;
  transition: 0.2s;
  font-size: 1.8rem;
  font-weight: 500;
  position: relative;
  user-select: none;
}
@media screen and (max-width: 991.98px) {
  ul.global-nav > li > a {
    font-size: 1.6rem;
  }
}
ul.global-nav > li > a:hover {
  cursor: pointer;
  opacity: 0.75;
}

/*----------------------------------------------------
  スマホメニュー
----------------------------------------------------*/
.menu-button {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  display: none;
  z-index: 10;
  border-radius: 4px;
}
@media screen and (max-width: 767.98px) {
  .menu-button {
    display: block;
  }
}
.menu-button .menu-trigger {
  cursor: pointer;
  position: relative;
  width: 52px;
  height: 42px;
  padding: 5px;
  display: inline-block;
  transition: all 0.4s;
}
.menu-button .menu-trigger span:not(:last-child) {
  display: inline-block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
  transition: 0.4s;
}
.menu-button .menu-trigger span:not(:last-child):nth-of-type(1) {
  top: 10px;
}
.menu-button .menu-trigger span:not(:last-child):nth-of-type(2) {
  top: 18px;
}
.menu-button .menu-trigger span:last-child {
  display: block;
  text-align: center;
  font-size: 1rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  letter-spacing: 1px;
  font-weight: bold;
  color: #333;
  user-select: none;
}

.open .menu-trigger span:nth-of-type(1) {
  top: 14px !important;
  transform: translateX(-50%) rotate(30deg);
}
.open .menu-trigger span:nth-of-type(2) {
  top: 14px !important;
  transform: translateX(-50%) rotate(-30deg);
}

.smp-menu {
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  padding: 70px 2rem 3rem;
  display: none;
  overflow-y: scroll;
}
.smp-menu::-webkit-scrollbar {
  display: none;
}
.smp-menu ul {
  list-style: none;
  padding-left: 0;
}
.smp-menu ul li {
  border-bottom: 1px solid #ddd;
}
.smp-menu ul li span, .smp-menu ul li a {
  color: #222;
  font-weight: 700;
  display: block;
  padding: 1.5rem 1.5rem;
  position: relative;
  text-decoration: none;
  font-size: 1.4rem;
}
.smp-menu ul li span {
  padding-bottom: 0;
}
.smp-menu ul li span::before {
  width: 1em;
  height: 3px;
  right: 1.5rem;
}
.smp-menu ul li span::after {
  width: 3px;
  height: 1em;
  right: 2.15rem;
  transition: 0.2s;
}
.smp-menu ul li span.open::after {
  transform: translateY(-50%) rotate(90deg);
}
.smp-menu ul li span:hover {
  cursor: pointer;
}

/*----------------------------------------------------
  フッター
----------------------------------------------------*/
.footer-wrap {
  padding-top: 6rem;
  text-align: center;
}
.footer-wrap .txt-inquiry {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767.98px) {
  .footer-wrap .txt-inquiry {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 575.98px) {
  .footer-wrap .txt-inquiry {
    font-size: 3rem;
  }
}
.footer-wrap .footer-logo {
  margin-bottom: 1rem;
}
.footer-wrap .footer-logo img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 767.98px) {
  .footer-wrap .footer-logo img {
    width: 88px;
  }
}
.footer-wrap .footer-logo span {
  font-size: 2.2rem;
  font-weight: 700;
  display: inline-block;
  margin-left: 1.5rem;
  line-height: 2;
}
@media screen and (max-width: 767.98px) {
  .footer-wrap .footer-logo span {
    font-size: 1.8rem;
    display: block;
    margin-left: 0;
  }
}
.footer-wrap .tel {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.5;
  margin-top: 1rem;
}
@media screen and (max-width: 767.98px) {
  .footer-wrap .tel {
    font-size: 1.8rem;
  }
}
.footer-wrap .tel a {
  color: #222;
  text-decoration: none;
}

footer {
  margin-top: 5rem;
  background-color: #424242;
}
footer .copyright {
  text-align: center;
  color: #fff;
  font-size: 0.8em;
  padding: 1rem 0;
}
footer .page-top {
  position: fixed;
  bottom: 25px;
  right: 15px;
  z-index: 2;
}
footer .page-top a {
  background: #333;
  text-decoration: none;
  width: 40px;
  height: 40px;
  padding: 5px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.2s;
  border-radius: 3px;
}
footer .page-top a::before {
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
  margin-bottom: -1rem;
}
footer .page-top a:hover {
  opacity: 0.8;
}

/*採用ページ用*/
.recruit-inquiry-wrap {
  padding: 5rem 0;
  background-color: #6ECFE2;
}
@media screen and (max-width: 767.98px) {
  .recruit-inquiry-wrap {
    padding: 4rem 0;
  }
}
.recruit-inquiry-wrap .inquiry-area {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  margin-left: -2.5rem;
  margin-right: -2.5rem;
}
@media screen and (max-width: 767.98px) {
  .recruit-inquiry-wrap .inquiry-area {
    margin-left: 0;
    margin-right: 0;
  }
}
.recruit-inquiry-wrap .inquiry-area > div {
  width: 550px;
  max-width: 100%;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
@media screen and (max-width: 767.98px) {
  .recruit-inquiry-wrap .inquiry-area > div {
    flex-basis: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.recruit-inquiry-wrap .inquiry-area > div .block {
  padding: 3rem;
  background-color: #fff;
  height: 100%;
}
.recruit-inquiry-wrap .inquiry-area > div .block .title {
  text-align: center;
  margin-bottom: 3rem;
}
.recruit-inquiry-wrap .inquiry-area > div .block .title span {
  display: inline-block;
  font-size: 2.8rem;
  line-height: 1.4;
  font-weight: 700;
  padding-bottom: 0.3em;
  border-bottom: 7px solid #FFC916;
}
@media screen and (max-width: 991.98px) {
  .recruit-inquiry-wrap .inquiry-area > div .block .title span {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767.98px) {
  .recruit-inquiry-wrap .inquiry-area > div .block .title span {
    font-size: 2.2rem;
    border-bottom-width: 5px;
  }
}
.recruit-inquiry-wrap .inquiry-area > div .block .link {
  text-align: center;
}
.recruit-inquiry-wrap .inquiry-area > div .block .link img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/*----------------------------------------------------
  共通コンテンツ
----------------------------------------------------*/
/*文字回転*/
img.txt-rotate {
  display: block;
  max-width: 100%;
  height: auto;
  animation: rotate 15s infinite linear;
}
@media screen and (max-width: 991.98px) {
  img.txt-rotate {
    width: 19vw;
  }
}
@media screen and (max-width: 991.98px) {
  img.txt-rotate {
    width: 22vw;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=common.css.map */