@charset "UTF-8";
/*--◇全体--*/
/*色指定*/
:root {
  --main-color1:#ffffff;
  --main-color2:#242424;
  --main-color3:#4fa0d9;
  --main-color4:#236fc7;
  --main-color5:#0751a5;
  --main-color6:#d3f5ee;
  --main-color7:#dee4a5;
  --main-color9:#1ea181;
  --main-color10:#bee5f5;
  --main-color2:#333333;
  --lightGray1:#bdbdbd;
  --lightGray2:#eeeeee;
  --accentColor:#1f252c;
}

/*--変数設定--*/
/*横幅*/
/*ブレイクポイント設定*/
/*角丸*/
/*--mixin設定--*/
/*レスポンシブル*/
/*フォントサイズを調整*/
/*影*/
/*グラデーション*/
/*ストライプ*/
/*--その他--*/
/*文字のデフォルト*/
div.ccm-page p {
  margin-bottom: 0.5em;
}
@media screen and (max-width: 576px) {
  div.ccm-page p {
    font-size: 0.9em;
    margin-bottom: 0.75em;
  }
}
@media screen and (max-width: 576px) {
  div.ccm-page li {
    font-size: 0.9em;
  }
}
@media screen and (max-width: 576px) {
  div.ccm-page th, div.ccm-page td {
    font-size: 0.9em;
  }
}

/*スマホのみ表示するクラス*/
.sp-only {
  display: none;
}
@media screen and (max-width: 576px) {
  .sp-only {
    display: block;
  }
}

/*タブレット2以下のみ表示するクラス*/
.tb2-only {
  display: none;
}
@media screen and (max-width: 800px) {
  .tb2-only {
    display: block;
  }
}

/*スマホのみ非表示のクラス*/
@media screen and (max-width: 576px) {
  .pc-only {
    display: none;
  }
}

/*編集中のテキストブロックに余白を設ける*/
div.ccm-block-content-edit-inline textarea + div {
  padding: 5px;
}
div.ccm-block-content-edit-inline textarea + div table th, div.ccm-block-content-edit-inline textarea + div table td {
  min-width: 20px;
}

/*--カスタムクラス--*/
/*画像ブロック中央寄せ*/
.text-img-center {
  text-align: center;
}

/*conctainerの幅調整*/
.container-width {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 3%;
}
@media screen and (max-width: 576px) {
  .container-width {
    padding: 0 0;
  }
}

.container-width-s {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 3%;
}
@media screen and (max-width: 576px) {
  .container-width-s {
    padding: 0 0;
  }
}

/*スマートフォンで上下反転*/
@media screen and (max-width: 576px) {
  .sp-column-reverse .row {
    flex-direction: column-reverse;
  }
}

/*PC中央寄せ、スマートフォン左寄せ*/
.pc-center-sp-left p {
  text-align: center;
}
@media screen and (max-width: 576px) {
  .pc-center-sp-left p {
    text-align: left;
  }
}
.pc-center-sp-left div {
  text-align: center;
}
@media screen and (max-width: 576px) {
  .pc-center-sp-left div {
    text-align: left;
  }
}

/*背景色*/
.bg-color {
  background-color: var(--main-color10);
  padding: 20px 20px;
  border: 1px solid var(--lightGray1);
}
@media screen and (max-width: 576px) {
  .bg-color {
    padding: 10px 5px;
  }
}

.bg-color-gray {
  background-color: #f9f9f9;
  padding: 20px 20px;
  border: 1px solid var(--lightGray1);
}
@media screen and (max-width: 576px) {
  .bg-color-gray {
    padding: 10px 5px;
  }
}

.bg-color-white {
  background-color: var(--main-color1);
  padding: 20px 20px;
  filter: drop-shadow(0px 3px 6px rgba(50, 50, 50, 0.09)) drop-shadow(0px 3px 6px rgba(50, 50, 50, 0.12));
}

/*--カスタム：テキストブロック--*/
/*表デザインnormal*/
.scroll-x {
  overflow-x: scroll;
}

table.table_normal {
  white-space: nowrap;
}
table.table_normal th, table.table_normal td {
  border: 1px solid var(--lightGray1);
  padding: 0.5em 0.25em;
  min-width: 5.5em;
}
table.table_normal th {
  background-color: var(--lightGray2);
  font-weight: 600;
}

/*表デザイン01*/
table.table_design01 {
  border-collapse: collapse;
  width: 100%;
}
table.table_design01 th, table.table_design01 td {
  border: 2px solid var(--main-color1);
  background-color: var(--lightGray2);
  padding: 1em;
}
@media screen and (max-width: 576px) {
  table.table_design01 th, table.table_design01 td {
    display: block;
    padding: 0.4em 0.4em;
    border: none;
  }
}
table.table_design01 th {
  background-color: var(--main-color5);
  color: #fff;
  font-weight: 600;
  text-align: center;
  width: 20%;
}
@media screen and (max-width: 576px) {
  table.table_design01 th {
    text-align: left;
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  table.table_design01 td {
    border-bottom: 2px solid var(--main-color1);
  }
}

/*色丸ul*/
ul.color_maru_ul {
  list-style: none;
  padding-left: 0.2em;
}
ul.color_maru_ul li {
  position: relative;
  padding-left: 1.1em;
}
ul.color_maru_ul li::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--main-color4);
  border-radius: 4px;
}

/*数字ol*/
ol.color_num_ol {
  list-style: none;
  counter-reset: listnum;
  padding-left: 0.3em;
}
ol.color_num_ol li {
  position: relative;
  padding-left: 1em;
  text-indent: -1.2em;
}
@media screen and (max-width: 576px) {
  ol.color_num_ol li {
    font-size: 0.9em;
  }
}
ol.color_num_ol li::before {
  counter-increment: listnum;
  content: counter(listnum) "."; /* 半角スペースを入れて""の中にピリオドを追加 */
  padding-right: 0.2em;
  color: var(--main-color4);
  vertical-align: baseline;
  font-size: 1.05em;
  font-family: "Roboto", sans-serif;
  font-weight: 750;
}

/*色の囲み*/
span.color-border-block {
  display: inline-block;
  padding: 0 0.2em 0.05em 0.3em;
  margin-right: 0.3em;
  color: var(--main-color5);
  border: 1px solid var(--main-color5);
}

span.color-block {
  display: inline-block;
  padding: 0.5em 0.75em;
  background-color: var(--main-color4);
  color: var(--main-color1);
  font-weight: 500;
  margin-right: 0.5em;
  border-radius: 5px;
}

.yellow_marker {
  background: linear-gradient(transparent 60%, #fae6a0 60%);
}

.margin-pc100-sp50 {
  height: 100px;
}
@media screen and (max-width: 576px) {
  .margin-pc100-sp50 {
    height: 50px;
  }
}

/*--◇グローバルエリア--*/
body {
  overflow-x: hidden;
}

main#main-wrap {
  min-height: 100vh;
}

.ccm-edit-mode header#org {
  margin-top: 70px;
}

/*header*/
header#org {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
header#org #header-box {
  display: flex;
  height: 70px;
}
header#org #header-box .header-logo {
  max-width: -moz-fit-content;
  max-width: fit-content;
}
header#org #header-box .header-navi {
  width: 100%;
}
header#org #header-box .header-navi .global-btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  padding-right: 100px;
  border-radius: 5px;
}
@media screen and (max-width: 576px) {
  header#org #header-box .header-navi .global-btn {
    display: none;
  }
}
header#org #header-box .header-navi .global-btn a > div {
  color: var(--main-color1);
  padding: 0.5em 1em;
  border: 1px solid transparent;
  transition: all 0.2s;
}
header#org #header-box .header-navi .global-btn a:hover > div {
  color: var(--main-color3);
  background-color: var(--main-color1) !important;
  border-color: var(--main-color10);
}

/*ハンバーガーメニュー（jsにて切り替え）*/
#hamburger-btn {
  position: fixed;
  display: block;
  width: 75px;
  height: 70px;
  top: 0;
  right: 0;
  caret-color: transparent;
  cursor: pointer;
  z-index: 100;
}
#hamburger-btn .box {
  position: relative;
  padding: 0 10px;
}
#hamburger-btn .box span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 50%;
  height: 2px;
  transform: translateX(-50%);
  background-color: var(--main-color2);
  width: 55%;
}
#hamburger-btn .box span:nth-child(1) {
  top: 15px;
}
#hamburger-btn .box span:nth-child(2) {
  top: 23px;
}
#hamburger-btn .box span:nth-child(3) {
  top: 31px;
}
#hamburger-btn.active .box span:nth-of-type(1) {
  top: 18px;
  transform: translateX(-50%) translateY(6px) rotate(-45deg);
  width: 30%;
}
#hamburger-btn.active .box span:nth-of-type(2) {
  opacity: 0;
}
#hamburger-btn.active .box span:nth-child(3) {
  top: 30px;
  transform: translateX(-50%) translateY(-6px) rotate(45deg);
  width: 30%;
}

#global-nav-area { /*グローバルナビ*/
  display: flex;
  justify-content: flex-end;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%;
  transition: all 0.2s;
  opacity: 0;
  pointer-events: none;
  z-index: 99;
  overflow: hidden;
}
#global-nav-area.view {
  opacity: 1;
  pointer-events: all;
}
#global-nav-area.view .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-color2);
  opacity: 0.9;
  z-index: 0;
}
#global-nav-area.view .global-nav {
  transform: translateY(0);
}
#global-nav-area .global-nav {
  position: relative;
  padding: 3% 10%;
  padding-top: 10vh;
  width: 65%;
  background-color: var(--main-color1);
  z-index: 1;
  transform: translateY(-100%);
  transition: all 0.5s ease-out;
}
@media screen and (max-width: 800px) {
  #global-nav-area .global-nav {
    padding-top: 80px;
  }
}
@media screen and (max-width: 576px) {
  #global-nav-area .global-nav {
    padding-right: 3%;
    padding-left: 3%;
    width: 100%;
  }
}
#global-nav-area .global-nav > ul {
  font-size: 1.6em;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.55;
  list-style: none;
  padding-left: 0;
  margin-bottom: 10px;
}
@media screen and (max-width: 576px) {
  #global-nav-area .global-nav > ul {
    font-size: 1em;
  }
}
#global-nav-area .global-nav > ul > li {
  margin-bottom: 1em;
}
#global-nav-area .global-nav > ul > li a {
  display: block;
  min-width: 250px;
  text-decoration: none;
  color: var(--main-color2);
  font-family: "Roboto", sans-serif;
  padding: 0.5em 0.5em 0.5em 0.5em;
  transition: all 0.3s;
  z-index: 2;
}
@media screen and (max-width: 576px) {
  #global-nav-area .global-nav > ul > li a {
    text-align: center;
  }
}
#global-nav-area .global-nav > ul > li a:hover {
  color: var(--main-color1);
  background-color: var(--main-color9);
}
/*フッター*/
footer.footer-wrap {
  background-color: var(--main-color1);
  border-top: 1px solid var(--lightGray1);
  padding: 100px 5% 0 5%;
}
@media screen and (max-width: 1025px) {
  footer.footer-wrap {
    padding: 100px 3% 0 3%;
  }
}
footer.footer-wrap #footer-box {
  display: grid;
  max-width: 1280px;
  margin: 0 auto;
  grid-template-columns: 3fr 1fr;
  padding-bottom: 80px;
}
@media screen and (max-width: 576px) {
  footer.footer-wrap #footer-box {
    grid-template-columns: 1fr;
  }
}
footer.footer-wrap .footer-bottom {
  text-align: center;
  font-size: 0.8em;
  padding: 0.8em 0.5em;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  color: var(--main-color2);
}

.footer-access {
  display: flex;
}
.footer-access .item {
  width: 50%;
  padding: 10px 3%;
}

.footer-info .box ul.site-map {
  display: flex;
  justify-content: center;
  list-style: none;
  padding-left: 0;
}
.footer-info .box ul.site-map li {
  margin-bottom: 0.25em;
}
.footer-info .box ul.site-map li a {
  font-size: 0.95em;
  color: var(--main-color9);
  margin-right: 1em;
}
#back-to-top .hw-back-to-top {
  bottom: 10px;
  right: 10px;
}
#back-to-top .hw-back-to-top i {
  left: 6px;
}

/*見出し*/
.ccm-page .page-h h1 {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 576px) {
  .ccm-page .page-h h1 {
    font-size: 2.5rem;
  }
}
.ccm-page .page-h span {
  display: block;
  font-size: 0.95rem;
  font-family: "Roboto";
  font-weight: 600;
  color: var(--main-color5);
  margin-bottom: 0.5em;
}

.ccm-page h2 {
  position: relative;
  font-size: 1.8em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  border-bottom: 3px solid var(--lightGray1);
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 0.6em;
}
@media screen and (max-width: 576px) {
  .ccm-page h2 {
    font-size: 1.45em;
  }
}
.ccm-page h2::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 35%;
  height: 3px;
  background-color: var(--main-color5);
}

.ccm-page .top-h {
  padding: 30px 0;
}
.ccm-page .top-h h2 {
  font-size: 2.5em;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 0em;
  border-bottom: none;
  color: var(--main-color2);
}
.ccm-page .top-h h2::after {
  display: none;
}
.ccm-page .top-h .eng {
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: var(--main-color2);
}

.ccm-page h3 {
  position: relative;
  color: var(--accentColor);
  font-size: 2.5em;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-family: "Liter", "Roboto", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 576px) {
  .ccm-page h3 {
    font-size: 1.5em;
  }
}

.ccm-page h4 {
  border-left: 8px solid var(--main-color5);
  padding-left: 0.4em;
  margin-bottom: 0.6em;
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 576px) {
  .ccm-page h4 {
    font-size: 1.1em;
  }
}

.ccm-page h5 {
  font-size: 1.6em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: var(--main-color2);
  margin-bottom: 0.2em;
}
@media screen and (max-width: 576px) {
  .ccm-page h5 {
    font-size: 1.2em;
  }
}

.ccm-page h6 {
  font-size: 1.1em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 0.2em;
}
@media screen and (max-width: 576px) {
  .ccm-page h6 {
    font-size: 1em;
  }
}

.center-h {
  margin-bottom: 2.5em;
}
.center-h .jp {
  font-size: 1.4em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 576px) {
  .center-h .jp {
    font-size: 1.2em;
  }
}
.center-h .bar {
  position: relative;
  width: 80px;
  height: 5px;
  background-color: var(--main-color4);
  margin: 0 auto;
}
.center-h .bar::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 5px;
  background-color: var(--main-color5);
  top: 0;
  left: 0;
}

/*webボタン*/
div.ccm-page a.web-btn {
  position: relative;
  display: inline-block;
  text-align: center;
  min-width: 200px;
  border: solid 2px var(--accentColor);
  padding: 0.5em 1.5em 0.55em 1.5em;
  color: var(--main-color1);
  background-color: var(--accentColor);
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.2s;
}
div.ccm-page a.web-btn:hover {
  color: var(--accentColor);
  background-color: var(--main-color1);
}

div.ccm-page a.web-btn2 {
  display: inline-block;
  padding: 0.5em 0.8em;
  background-color: var(--main-color4);
  color: var(--main-color1);
  font-weight: 500;
  transition: all 0.2s;
  font-size: 0.9em;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}
div.ccm-page a.web-btn2:hover {
  background-color: var(--main-color5);
}

.sticky-container .main-header {
  position: sticky;
  top: 15%;
}
@media screen and (max-width: 800px) {
  .sticky-container .main-header {
    top: 50px;
  }
}
.sticky-container .main-content {
  padding-left: 5%;
}
@media screen and (max-width: 800px) {
  .sticky-container .main-content {
    padding-left: 0;
  }
}

#aboutus-area {
  width: 100%;
  margin-bottom: 1.5em;
}
#aboutus-area .text-box {
  width: 100%;
}
#aboutus-area .text-box .message {
  font-size: 1.7em;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.8;
}
@media screen and (max-width: 800px) {
  #aboutus-area .text-box .message {
    font-size: 1.6em;
  }
}

#aboutus-text p {
  font-size: 1.1em;
  font-weight: 450;
  letter-spacing: 0.06em;
  line-height: 2.2;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 800px) {
  #aboutus-text p {
    font-size: 0.95em;
    margin-bottom: 0.4em;
  }
}

/*--トップページ--*/
main.main-wrap {
  background-image: url("/application/files/3017/5628/2089/texture_bg.jpg");
  background-repeat: repeat;
}
@media screen and (max-width: 576px) {
  main.main-wrap {
    overflow-x: hidden;
  }
}

#mv-bg {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  aspect-ratio: 1920/1080;
  mix-blend-mode: darken;
  opacity: 0;
  transform: scale(1.1);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left bottom;
  pointer-events: none;
}
@media screen and (max-width: 1025px) {
  #mv-bg {
    aspect-ratio: 1/2;
  }
}
#mv-bg.show {
  transition: all 1s;
  opacity: 0.15;
  transform: scale(1);
}

#mv-area {
  position: relative;
  padding: 10px 5% 70px 5%;
  height: 100%;
  min-height: 95vh;
  overflow: hidden;
}
#mv-area .mv-box {
  position: relative;
  height: 100%;
}
@media screen and (max-width: 1025px) {
  #mv-area .mv-box .image-wrap {
    margin-top: 50px;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 576px) {
  #mv-area .mv-box .image-wrap {
    margin-bottom: 50px;
  }
}
#mv-area .mv-box .image-wrap .image-box .video-clip {
  position: relative;
  width: 450px;
  text-align: center;
  margin: 0 auto 0 53%;
}
@media screen and (max-width: 1025px) {
  #mv-area .mv-box .image-wrap .image-box .video-clip {
    width: 400px;
    margin: 0 auto 0 auto;
  }
}
@media screen and (max-width: 576px) {
  #mv-area .mv-box .image-wrap .image-box .video-clip {
    width: 70%;
    margin: 0 auto 0 auto;
  }
}
#mv-area .mv-box .image-wrap .image-box .video-clip video {
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-mask-image: url("/application/files/4517/5636/2203/mv_kumo.png");
          mask-image: url("/application/files/4517/5636/2203/mv_kumo.png"); /* 標準 */
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  width: 80%;
}
#mv-area .mv-box .image-wrap .image-box .video-clip img.kumo-frame {
  width: 80%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
#mv-area .mv-box .image-wrap .image-box .video-clip img.hito {
  position: relative;
  margin-top: -130px;
}
@media screen and (max-width: 576px) {
  #mv-area .mv-box .image-wrap .image-box .video-clip img.hito {
    margin-top: -80px;
  }
}
@media screen and (max-width: 576px) {
  #mv-area .mv-box .image-wrap .image-box .video-clip img.up-img {
    transform: scale(0.8) !important;
  }
}
#mv-area .mv-box .catch-copy {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 1025px) {
  #mv-area .mv-box .catch-copy {
    position: static;
  }
}
#mv-area .mv-box .catch-copy .sub {
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.8;
  margin-bottom: 0.6em;
}
@media screen and (max-width: 576px) {
  #mv-area .mv-box .catch-copy .sub {
    font-size: 0.9em;
  }
}
#mv-area .mv-box .catch-copy .text {
  font-size: 4em;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.35;
}
@media screen and (max-width: 800px) {
  #mv-area .mv-box .catch-copy .text {
    font-size: 3.5em;
  }
}
@media screen and (max-width: 576px) {
  #mv-area .mv-box .catch-copy .text {
    font-size: 2.5em;
  }
}
#mv-area .mv-box .catch-copy .text span {
  display: block;
}
#mv-area .mv-box .catch-copy .eng {
  padding-top: 1em;
  font-family: "Roboto";
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 576px) {
  #mv-area .mv-box .catch-copy .eng {
    font-size: 1.15em;
  }
}

.feature-area .wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 5%;
       column-gap: 5%;
}
@media screen and (max-width: 1025px) {
  .feature-area .wrap {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 800px) {
  .feature-area .wrap {
    grid-template-columns: 1fr;
  }
}
.feature-area .wrap .item {
  width: 100%;
}
@media screen and (max-width: 800px) {
  .feature-area .wrap .item {
    padding-bottom: 20px;
  }
}
.feature-area .wrap .item .frame {
  aspect-ratio: 16/9;
  background-color: var(--main-color3);
  overflow: hidden;
}
.feature-area .wrap .item .text-box {
  padding: 0.5em 1em 1em 1em;
}
.feature-area .wrap .item .text-box .h {
  text-align: center;
  font-size: 1.35em;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  padding: 0.25em 0;
  margin-bottom: 0.25em;
}
/*お客様のユメをカタチに*/
#com-area {
  transition: background-color 0.5s ease;
}

.color-chenge {
  background-color: var(--main-color1);
}

.message-h {
  white-space: nowrap;
  text-align: center;
  font-size: 2.5em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 576px) {
  .message-h {
    font-size: 1.8em;
  }
}

.message-area p {
  font-size: 1.15em;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 2.3;
}
@media screen and (max-width: 576px) {
  .message-area p {
    font-size: 1em;
    line-height: 2;
  }
}

/*汎用アニメ（画像がふわっと上がる）*/
.up-img-box {
  position: relative;
}

.up-img {
  position: absolute;
  opacity: 0;
  transform: translateY(50px);
  top: 0;
  left: 0;
}

/*設計実績*/
.tb-images {
  padding: 40px 5% 15px 5%;
}
@media screen and (max-width: 800px) {
  .tb-images {
    padding: 15px 5% 15px 5%;
  }
}
.tb-images > img.works-phpto {
  display: none;
}
@media screen and (max-width: 800px) {
  .tb-images > img.works-phpto {
    display: inline-block;
  }
}

#photo-area {
  padding-top: 100px;
  max-width: 400px;
}
@media screen and (max-width: 800px) {
  #photo-area {
    padding-top: 50px;
  }
}
#photo-area > div {
  position: relative;
  width: 100%;
  height: auto;
  border: 1px solid var(--main-color2);
  background-color: var(--main-color2);
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  #photo-area > div {
    display: none;
  }
}
#photo-area > div .photoImg {
  position: absolute;
  top: 100%;
  left: 0;
}

/*コンテナに設定するパララックス*/
.parallax-area {
  background-attachment: fixed;
  background-image: url("");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}

/*採用情報*/
.recruit-area {
  padding: 30px 5% 40px 5%;
  background-color: var(--main-color1);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 576px) {
  .recruit-area {
    grid-template-columns: 1fr;
  }
}
.recruit-area .item .btn {
  padding-top: 1em;
}
.recruit-area .item .img-wrap {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.sitemap {
  padding-top: 0.2em;
}
.sitemap ul {
  flex-direction: column;
}
.sitemap ul li {
  margin-bottom: 0.2em;
}

.subpage-top-area {
  padding: 0 5%;
  margin-bottom: 100px;
}
.subpage-top-area .wrap {
  width: 100%;
  border-bottom: 1px solid var(--lightGray1);
}
.subpage-top-area .wrap .box {
  padding: 30px 2%;
}
.subpage-top-area .wrap .box .eng {
  text-align: right;
  overflow: hidden;
}
.subpage-top-area .wrap .box .eng > span {
  display: inline-block;
  font-family: "Liter", sans-serif;
  white-space: nowrap;
  transform: translateY(100%);
  font-size: 5em;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1;
  animation: 0.8s subPageH 0.4s forwards ease-in-out;
}
@media screen and (max-width: 576px) {
  .subpage-top-area .wrap .box .eng > span {
    font-size: 3.5em;
  }
}
.subpage-top-area .wrap .box .jp {
  text-align: right;
  padding-top: 0.25em;
  font-size: 1.1em;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
}

@keyframes subPageH {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
/*◇お問い合わせ*/
/*電話でお問い合わせ*/
.tel-box {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 100%;
  max-width: 700px;
  margin: 20px auto;
  background-color: var(--main-color1);
  padding: 30px 10px;
  filter: drop-shadow(0px 3px 6px rgba(50, 50, 50, 0.09)) drop-shadow(0px 3px 6px rgba(50, 50, 50, 0.12));
}
@media screen and (max-width: 576px) {
  .tel-box {
    display: block;
    padding: 10px;
  }
}
.tel-box .item {
  width: 50%;
  padding: 30px 10px;
}
@media screen and (max-width: 576px) {
  .tel-box .item {
    width: 100%;
    padding: 0 0;
  }
}
.tel-box .item.title {
  display: flex;
  align-items: center;
  border-right: 1px solid var(--lightGray1);
  padding-right: 40px;
}
@media screen and (max-width: 576px) {
  .tel-box .item.title {
    border-right: none;
    border-bottom: 1px solid var(--lightGray1);
    padding-right: 0;
    padding: 20px 20px;
  }
}
.tel-box .item.title p {
  flex: 1;
  font-size: 1.3em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  text-align: right;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 576px) {
  .tel-box .item.title p {
    text-align: center;
    margin-bottom: 0;
  }
}
.tel-box .item.info {
  padding-left: 40px;
}
@media screen and (max-width: 576px) {
  .tel-box .item.info {
    text-align: center;
    padding-left: 0;
    padding: 20px 20px;
  }
}
.tel-box .item.info .tel {
  font-size: 2.2em;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
}
.tel-box .item.info .num {
  font-family: "Noto Sans JP", sans-serif;
}

/*レガシーフォーム調整*/
.hrs_legacyform .form-group {
  margin-bottom: 20px !important;
}
.hrs_legacyform .form-group label span.text-muted {
  opacity: 1;
  font-size: 0.8em;
  color: var(--main-color1) !important;
  padding: 0.15em 0.5em 0.25em 0.5em;
  background-color: var(--main-color4);
}
.hrs_legacyform input[type=submit] {
  background-color: var(--main-color5);
  border-color: var(--main-color5);
}
.hrs_legacyform input[type=submit]:focus {
  border-color: var(--main-color5);
}
.hrs_legacyform .checkboxList {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 576px) {
  .hrs_legacyform .checkboxList {
    display: block;
  }
}
.hrs_legacyform .checkboxList .form-check {
  margin-right: 1.5em;
}

/*faq*/
.org_faq .ccm-faq-entry-content {
  margin-bottom: 40px;
}
.org_faq .ccm-faq-entry-content h3 {
  font-size: 1.5em;
}
@media screen and (max-width: 576px) {
  .org_faq .ccm-faq-entry-content h3 {
    font-size: 1.2em;
  }
}

/*◇採用ページ*/
.sub-h {
  font-size: 3em;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.6;
  font-family: "Liter", sans-serif;
  overflow: hidden;
}
.sub-h span {
  display: inline-block;
  opacity: 0;
  transform: translate(0px, 50px);
}

.recruit-video-area .image-wrap .image-box .video-clip {
  position: relative;
  width: 400px;
  max-width: 100%;
  text-align: center;
}
@media screen and (max-width: 1025px) {
  .recruit-video-area .image-wrap .image-box .video-clip {
    margin: 0 auto 0 auto;
  }
}
@media screen and (max-width: 576px) {
  .recruit-video-area .image-wrap .image-box .video-clip {
    width: 70%;
    margin: 0 auto 0 auto;
  }
}
.recruit-video-area .image-wrap .image-box .video-clip video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 80%;
}
.recruit-video-area .image-wrap .image-box .video-clip img.kumo-frame {
  width: 80%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.recruit-video-area .image-wrap .image-box .video-clip img.hito {
  position: relative;
  margin-top: -80px;
}
@media screen and (max-width: 576px) {
  .recruit-video-area .image-wrap .image-box .video-clip img.hito {
    margin-top: -40px;
  }
}
@media screen and (max-width: 576px) {
  .recruit-video-area .image-wrap .image-box .video-clip img.up-img {
    transform: scale(0.8) !important;
  }
}

.recruit-message-text {
  font-size: 1.15em;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 2.3;
}
@media screen and (max-width: 800px) {
  .recruit-message-text {
    font-size: 1.1em;
    padding: 0 2%;
    line-height: 1.7;
  }
}

.recruit-info-box {
  position: relative;
  padding: 0 2%;
}
@media screen and (max-width: 576px) {
  .recruit-info-box {
    padding: 0 0;
  }
}
.recruit-info-box .flex-box {
  display: flex;
  margin-bottom: 30px;
}
@media screen and (max-width: 576px) {
  .recruit-info-box .flex-box {
    display: block;
  }
}
.recruit-info-box .flex-box .num {
  color: var(--main-color5);
  font-size: 4em;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 576px) {
  .recruit-info-box .flex-box .num {
    font-size: 2em;
  }
}
.recruit-info-box .flex-box .text {
  padding-left: 30px;
}
@media screen and (max-width: 576px) {
  .recruit-info-box .flex-box .text {
    padding-left: 0;
  }
}
.recruit-info-box .flex-box .text .bold {
  font-size: 2em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
  border-bottom: 1px solid var(--lightGray1);
  font-family: "Noto Sans JP", sans-serif;
  padding-bottom: 0.2em;
}
@media screen and (max-width: 800px) {
  .recruit-info-box .flex-box .text .bold {
    font-size: 1.5em;
    padding-bottom: 0.4em;
  }
}
.recruit-info-box .flex-box .text .normal {
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
}
.recruit-info-box .flex-box .text .normal .sub {
  font-size: 1.2em;
  font-weight: 700;
  padding-top: 5px;
  padding-bottom: 5px;
  color: var(--main-color5);
}/*# sourceMappingURL=fronta.css.map */