@charset "UTF-8";
/*--◇全体--*/
/*色指定*/
:root {
  --main-color1:#ffffff;
  --main-color2:#212121;
  --main-color3:#f9f9f9;
  --main-color4:#E85B5B;
  --main-color5:#dfdfdf;
  --main-color6:#F5A732;
  --main-color7:#c2c2c2;
  --main-color8:#4BBC42;
  --main-color9:#42B4BC;
  --main-color10:#edf2f4;
  --main-color11:#8542bc;
}

/*--変数設定--*/
/*横幅*/
/*ブレイクポイント設定*/
/*角丸*/
/*--mixin設定--*/
/*レスポンシブル*/
/*フォントサイズを調整*/
/*影*/
/*グラデーション*/
/*--その他--*/
/*全体の調整*/
main.main-wrap {
  padding-right: 75px;
}
@media screen and (max-width: 820px) {
  main.main-wrap {
    padding-right: 0;
  }
}

/*文字デフォルト*/
div.ccm-page {
  height: 100vh;
}
div.ccm-page p {
  margin-bottom: 0.2em;
}
@media screen and (max-width: 540px) {
  div.ccm-page p {
    font-size: 0.9em;
  }
}

/*編集中のテキストブロックに余白を設ける*/
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;
}

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

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

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

/*スタックを透過*/
.col-md-12 .ccm-custom-style-main {
  background-image: unset;
}

/*--カスタムクラス--*/
/*conctainerの幅調整*/
.container-width {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 2%;
}
@media screen and (max-width: 540px) {
  .container-width {
    padding: 0 0;
  }
}

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

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

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

p.pc-center-sp-left {
  text-align: center;
}
@media screen and (max-width: 540px) {
  p.pc-center-sp-left {
    text-align: left;
  }
}

/*背景色*/
.bg-color-gray {
  position: relative;
  background-color: #f9f9f9;
  padding: 20px 20px;
  border: 1px solid var(--main-color5);
  z-index: 1;
}
@media screen and (max-width: 540px) {
  .bg-color-gray {
    padding: 10px 5px;
  }
}

.bg-color-white {
  position: relative;
  background-color: var(--main-color1);
  z-index: 1;
}

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

.relative {
  position: relative;
}

/*--カスタム：テキストブロック--*/
/*表デザインnormal*/
table.table_normal {
  border-collapse: collapse;
  width: 100%;
}
table.table_normal th, table.table_normal td {
  border-top: 1px solid var(--main-color5);
  border-bottom: 1px solid var(--main-color5);
  padding: 0.5em 0.25em;
  min-width: 5.5em;
}
@media screen and (max-width: 540px) {
  table.table_normal th, table.table_normal td {
    display: block;
    padding: 0.4em 0.4em;
    font-size: 0.9em;
  }
}
table.table_normal th {
  color: var(--main-color2);
  text-align: left;
  min-width: 25%;
  padding: 0.5em 0.5em 0.5em 1em;
}
@media screen and (max-width: 540px) {
  table.table_normal th {
    border-bottom: none;
    width: 100%;
    padding: 0.4em 0.4em;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 540px) {
  table.table_normal td {
    border-top: none;
    border-bottom: 1px solid var(--main-color5);
  }
}

/*表デザイン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: #f3f3f3;
  padding: 0.7em 1em;
}
@media screen and (max-width: 540px) {
  table.table_design01 th, table.table_design01 td {
    display: block;
    padding: 0.4em 0.4em;
    border: none;
    font-size: 0.9em;
  }
}
table.table_design01 th {
  background-color: var(--main-color5);
  font-weight: 600;
  text-align: center;
  width: 20%;
  min-width: 200px;
}
@media screen and (max-width: 540px) {
  table.table_design01 th {
    text-align: left;
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
  table.table_design01 td {
    border-bottom: 2px solid var(--main-color1);
  }
}

/*色付きul*/
ul.color_ul {
  list-style: none;
  padding-left: 0.2em;
}
ul.color_ul li {
  position: relative;
  padding-left: 1.1em;
}
@media screen and (max-width: 540px) {
  ul.color_ul li {
    font-size: 0.9em;
  }
}
ul.color_ul li::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--main-color9);
}

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

/*webボタン*/
div.ccm-page a.webbtn {
  position: relative;
  display: block;
  padding: 0.5em 1.2em;
  width: -moz-max-content;
  width: max-content;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--main-color1);
  background-color: var(--main-color2);
  border: 2px solid var(--main-color2);
  transition: all 0.3s;
  z-index: 2;
}
@media screen and (max-width: 540px) {
  div.ccm-page a.webbtn {
    font-size: 0.9em;
  }
}
div.ccm-page a.webbtn:hover {
  color: var(--main-color2);
  background-color: transparent;
}

/*黄色マーカー*/
.yellow_marker {
  background: linear-gradient(transparent 60%, var(--main-color6) 60%);
}

/*フォント調整*/
.fontsize-12 {
  font-size: 1.2em;
}

/*見出し*/
div.ccm-page h1 {
  position: relative;
  text-align: center;
  white-space: nowrap;
  font-size: 2.3em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.3;
  margin-bottom: 1em;
}
@media screen and (max-width: 540px) {
  div.ccm-page h1 {
    font-size: 1.8em;
  }
}

div.ccm-page h2 {
  position: relative;
  font-size: 1.85em;
  font-weight: 650;
  letter-spacing: 0.05em;
  line-height: 1.5;
  border-bottom: 3px solid var(--main-color7);
  padding: 0.05em 0.1em 0.05em 0.1em;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 540px) {
  div.ccm-page h2 {
    font-size: 1.55em;
  }
}
div.ccm-page h2:after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 20%;
  height: 3px;
  background-color: var(--main-color2);
}

div.ccm-page h3 {
  border-left: 5px solid var(--main-color7);
  padding-left: 0.35em;
  font-size: 1.2em;
  font-weight: 650;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 540px) {
  div.ccm-page h3 {
    font-size: 1.1em;
  }
}

div.ccm-page h4 {
  position: relative;
  display: table;
  color: var(--main-color2);
  padding: 0.25em 0em;
  font-size: 1.2em;
  font-weight: 650;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 540px) {
  div.ccm-page h4 {
    font-size: 1.05em;
  }
}

div.ccm-page h5 {
  color: var(--main-color9);
  padding: 0.25em 0em;
  font-size: 1.15em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 540px) {
  div.ccm-page h5 {
    font-size: 1.05em;
  }
}

div.ccm-page h6 {
  position: relative;
  color: var(--main-color2);
  font-family: "Noto Sans JP", serif;
  padding: 1em 1.5em;
  font-size: 1.2em;
  font-weight: 650;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin: 0 0;
  text-align: center;
  pointer-events: auto;
  cursor: pointer;
  border-left: 2px solid var(--main-color3);
}
@media screen and (max-width: 540px) {
  div.ccm-page h6 {
    font-size: 1em;
  }
}

/*余白*/
.margin-pc100-sp50 {
  height: 100px;
}
@media screen and (max-width: 540px) {
  .margin-pc100-sp50 {
    height: 50px;
  }
}

/*header*/
header#org #header-box {
  display: flex;
}
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;
}
@media screen and (max-width: 540px) {
  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: 100vh;
  top: 0;
  right: 0;
  background-color: var(--main-color1);
  border-left: 1px solid var(--main-color5);
  cursor: pointer;
  z-index: 100;
}
@media screen and (max-width: 820px) {
  #hamburger-btn {
    border-left: none;
    background-color: transparent;
    height: 75px;
  }
}
#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: 45%;
}
#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: 100vh;
  transition: all 0.2s;
  opacity: 0;
  pointer-events: none;
  z-index: 99;
}
#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.7;
  z-index: 0;
}
#global-nav-area .global-nav {
  position: relative;
  padding: 3%;
  padding-top: 50px;
  padding-right: calc(3% + 75px);
  min-width: 50%;
  background-color: var(--main-color1);
  z-index: 1;
  transition: all 0.25s ease-out;
  height: auto;
  overflow-y: auto;
  scrollbar-width: thin;
}
@media screen and (max-width: 1025px) {
  #global-nav-area .global-nav {
    width: 100%;
    border-left: 10px solid var(--main-color2);
    padding-right: 10%;
    padding-left: 10%;
  }
}
@media screen and (max-width: 540px) {
  #global-nav-area .global-nav {
    padding-right: 7%;
    padding-left: 7%;
  }
}
#global-nav-area .global-nav ul {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.6;
  list-style: none;
  padding-left: 0;
  margin-bottom: 10px;
}
@media screen and (max-width: 540px) {
  #global-nav-area .global-nav ul {
    font-size: 1em;
  }
}
#global-nav-area .global-nav ul > li {
  margin-bottom: 0.5em;
}
#global-nav-area .global-nav ul > li a {
  display: block;
  min-width: 250px;
  text-decoration: none;
  color: var(--main-color2);
  padding: 0.5em 0.5em 0.5em 0.5em;
  transition: all 0.3s;
  z-index: 2;
  font-weight: 600;
}
#global-nav-area .global-nav ul > li a:hover {
  color: var(--main-color1);
  background-color: var(--main-color9);
}
#global-nav-area .global-nav ul > li > ul {
  margin-top: 0.25em;
}
#global-nav-area .global-nav ul > li > ul li {
  margin-bottom: 0.25em;
  padding-left: 1em;
}
#global-nav-area .global-nav ul > li > ul li a {
  color: #5c5c5c;
}
#global-nav-area .global-nav ul > li > ul li a:hover {
  background-color: var(--main-color6);
}

/*footer*/
footer {
  position: relative;
  background-color: #f3f3f3;
  padding-right: 75px;
}
@media screen and (max-width: 820px) {
  footer {
    padding-right: 0;
  }
}

#footer-top {
  max-width: 1300px;
  margin: 0 auto;
}

#footer-box {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 70px 3% 80px 3%;
}
@media screen and (max-width: 540px) {
  #footer-box {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
}
#footer-box .pagelist-block ul.nav {
  padding-top: 1em;
  flex-direction: column;
  align-content: flex-end;
}
@media screen and (max-width: 540px) {
  #footer-box .pagelist-block ul.nav {
    align-content: flex-start;
  }
}
#footer-box .pagelist-block ul.nav li {
  position: relative;
  margin-bottom: 0.4em;
  padding-left: 1.1em;
}
#footer-box .pagelist-block ul.nav li::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--main-color9);
}
#footer-box .pagelist-block ul.nav li a {
  color: var(--main-color2);
}
#footer-box .pagelist-block ul.nav li a:hover {
  color: var(--main-color4);
}

.footer-bottom {
  padding: 1em 0;
  font-size: 0.8em;
  background-color: var(--main-color2);
  color: var(--main-color1);
  text-align: center;
}

.text-circle-area {
  position: fixed;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  width: 60%;
  z-index: -1;
  opacity: 0;
  animation: 0.5s text-circle-opa 1s linear forwards;
}
@media screen and (max-width: 540px) {
  .text-circle-area {
    width: 400px;
  }
}
.text-circle-area .text-circle-box {
  opacity: 0.07;
  animation: 27s text-circle-rotation linear infinite;
}
@keyframes text-circle-rotation {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(-360deg);
  }
}
@keyframes text-circle-opa {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#mv {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 90%, var(--main-color3) 90%);
  padding-top: 15vh;
}
@media screen and (max-width: 1025px) {
  #mv {
    padding-top: 20vh;
  }
}
@media screen and (max-width: 540px) {
  #mv {
    padding-top: 17vh;
  }
}
#mv .catch-wrap {
  max-width: 80%;
  padding: 8% 5% 5% 5%;
}
@media screen and (max-width: 1025px) {
  #mv .catch-wrap {
    max-width: 85%;
  }
}
@media screen and (max-width: 820px) {
  #mv .catch-wrap {
    max-width: 100%;
  }
}
@media screen and (max-width: 540px) {
  #mv .catch-wrap {
    padding-bottom: 7%;
  }
}
#mv .catch-wrap .catch-box {
  position: relative;
}
#mv .catch-wrap .catch-box #bold > div {
  display: inline-flex;
  align-items: center;
}
@media screen and (max-width: 540px) {
  #mv .catch-wrap .catch-box #bold > div {
    display: block;
  }
}
#mv .catch-wrap .catch-box #bold > div span {
  font-family: "Roboto";
  font-size: 6.5em;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  transform: translateX(100px);
  opacity: 0;
}
@media screen and (max-width: 820px) {
  #mv .catch-wrap .catch-box #bold > div span {
    font-size: 6em;
  }
}
@media screen and (max-width: 540px) {
  #mv .catch-wrap .catch-box #bold > div span {
    font-size: 5em;
  }
}
#mv .catch-wrap .catch-box #bold > div span.space {
  width: 0.25em;
}
@media screen and (max-width: 540px) {
  #mv .catch-wrap .catch-box #bold > div span.sp-br {
    display: block;
    height: 8px;
  }
}
#mv .catch-wrap .catch-box .short-message {
  position: relative;
  margin-top: 1em;
}
#mv .catch-wrap .catch-box .short-message #thin {
  font-size: 1.2em;
  transform: translateY(30px);
  opacity: 0;
}
@media screen and (max-width: 540px) {
  #mv .catch-wrap .catch-box .short-message #thin {
    font-size: 1em;
  }
}
#mv .video-box {
  max-width: 80%;
}
@media screen and (max-width: 820px) {
  #mv .video-box {
    max-width: 100%;
  }
}
#mv .video-box video {
  width: 100%;
  max-width: 1100px;
}

h2.top-h {
  border-left: none !important;
  border-bottom: 5px solid var(--main-color2) !important;
  font-size: 1rem !important;
  line-height: 1.1 !important;
  padding-bottom: 0.5em !important;
}
h2.top-h > span:first-child {
  display: inline-block;
  font-size: 3.8em;
  font-family: "Roboto";
  padding-right: 0.3em !important;
}
h2.top-h > span:last-child {
  display: inline-block;
  font-size: 1.3em;
}
@media screen and (max-width: 540px) {
  h2.top-h > span:last-child {
    display: block;
  }
}

.we-build {
  margin-top: 150px;
  margin-bottom: 10px;
  padding: 0 3%;
}
@media screen and (max-width: 540px) {
  .we-build {
    margin-bottom: 5px;
  }
}
.we-build .grid-box {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 10px;
}
@media screen and (max-width: 820px) {
  .we-build .grid-box {
    grid-template-columns: 1fr;
  }
}
.we-build .grid-box .l {
  padding-right: 50px;
}
@media screen and (max-width: 820px) {
  .we-build .grid-box .l {
    padding-right: 0px;
  }
}
.we-build .grid-box .l p {
  margin-top: 3.5em;
  margin-bottom: 2em;
  line-height: 1.8;
}
.we-build .grid-box .r {
  overflow: hidden;
}
.we-build .grid-box .r img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

#gallery {
  padding: 0 3%;
}
#gallery .grid-box {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 10px;
}
@media screen and (max-width: 540px) {
  #gallery .grid-box {
    gap: 5px;
  }
}
#gallery .grid-box > div {
  overflow: hidden;
}
#gallery .grid-box > div img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
#gallery .grid-box > div:nth-child(1) {
  grid-column: 1/3;
  grid-row: 1/3;
}
#gallery .grid-box > div:nth-child(2) {
  grid-column: 3/4;
  grid-row: 1/2;
}
#gallery .grid-box > div:nth-child(3) {
  grid-column: 4/5;
  grid-row: 1/2;
}
#gallery .grid-box > div:nth-child(4) {
  grid-column: 1/3;
  grid-row: 3/5;
}
#gallery .grid-box > div:nth-child(5) {
  grid-column: 3/5;
  grid-row: 2/5;
}

#business-top {
  padding: 0 3%;
}
#business-top .main-content {
  margin-bottom: 100px;
}
@media screen and (max-width: 540px) {
  #business-top .main-content {
    margin-bottom: 50px;
  }
}
#business-top .main-content a.item-grid {
  display: grid;
  position: relative;
  grid-template-columns: 0.9fr 1fr;
  -moz-column-gap: 3%;
       column-gap: 3%;
  padding: 30px;
  background-color: var(--main-color1);
  box-shadow: rgba(50, 50, 50, 0.1) 0px 3px 6px, rgba(50, 50, 50, 0.16) 0px 3px 6px;
}
#business-top .main-content a.item-grid:hover .bg {
  opacity: 1;
}
#business-top .main-content a.item-grid:hover .text-box .eng {
  color: var(--main-color1);
}
#business-top .main-content a.item-grid:hover .text-box .jp {
  color: var(--main-color1);
}
#business-top .main-content a.item-grid:hover .text-box .webbtn2 {
  color: var(--main-color1);
}
#business-top .main-content a.item-grid:hover .img-box img {
  transform: scale(1.15);
}
@media screen and (max-width: 820px) {
  #business-top .main-content a.item-grid {
    display: block;
  }
}
#business-top .main-content a.item-grid .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.25s ease-in-out;
}
#business-top .main-content a.item-grid .text-box {
  position: relative;
  padding: 3%;
}
@media screen and (max-width: 540px) {
  #business-top .main-content a.item-grid .text-box {
    padding: 2%;
    padding-bottom: 6%;
  }
}
#business-top .main-content a.item-grid .text-box .eng {
  position: relative;
  font-size: 2.8em;
  font-weight: 650;
  letter-spacing: 0.05em;
  line-height: 1.1;
  font-family: "Roboto";
  color: var(--main-color2);
  z-index: 1;
  transition: all 0.25s ease-in-out;
}
@media screen and (max-width: 540px) {
  #business-top .main-content a.item-grid .text-box .eng {
    font-size: 2.1em;
  }
}
#business-top .main-content a.item-grid .text-box .eng > div {
  position: absolute;
  top: -0.2em;
  left: -0.4em;
  width: 0.8em;
  height: 0.8em;
  z-index: -1;
}
#business-top .main-content a.item-grid .text-box .jp {
  font-size: 1.5em;
  font-weight: 650;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 1em;
  color: var(--main-color2);
  transition: all 0.25s ease-in-out;
}
@media screen and (max-width: 540px) {
  #business-top .main-content a.item-grid .text-box .jp {
    font-size: 1.2em;
  }
}
#business-top .main-content a.item-grid .text-box .webbtn2 {
  position: absolute;
  bottom: 3%;
  right: 3%;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--main-color2);
}
@media screen and (max-width: 540px) {
  #business-top .main-content a.item-grid .text-box .webbtn2 {
    font-size: 0.95rem;
  }
}
#business-top .main-content a.item-grid .img-box {
  position: relative;
  aspect-ratio: 10/5;
  overflow: hidden;
}
#business-top .main-content a.item-grid .img-box img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.25s ease-in-out;
}
#business-top .main-content a.item-grid .img-box .curtain {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/*parallax*/
.bg-flex-repeat {
  display: flex;
  justify-content: center;
  align-items: center;
  background-attachment: fixed;
  background-position: center;
}

.top-recruit-area {
  max-width: 1300px;
  margin: 50px auto;
  padding: 5px;
  background-color: var(--main-color2);
  box-shadow: rgba(50, 50, 50, 0.1) 0px 3px 6px, rgba(50, 50, 50, 0.16) 0px 3px 6px;
}
@media screen and (max-width: 820px) {
  .top-recruit-area {
    padding: 0;
  }
}
.top-recruit-area .recruit-video {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: var(--main-color1);
  width: 100%;
  aspect-ratio: 10/3;
  height: auto;
  overflow: hidden;
}
@media screen and (max-width: 1025px) {
  .top-recruit-area .recruit-video {
    aspect-ratio: 10/5;
  }
}
@media screen and (max-width: 540px) {
  .top-recruit-area .recruit-video {
    aspect-ratio: 10/7;
  }
}
.top-recruit-area .recruit-video a {
  width: inherit;
}
.top-recruit-area .recruit-video a .video-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-recruit-area .recruit-video a .video-box .bg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  transition: background-color 0.3s;
}
.top-recruit-area .recruit-video a .video-box .text {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  padding: 0 5%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--main-color1);
  font-size: 1.15em;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media screen and (max-width: 540px) {
  .top-recruit-area .recruit-video a .video-box .text {
    text-align: left;
    font-size: 1.1em;
  }
}
.top-recruit-area .recruit-video a .video-box .text .view-more {
  width: 180px;
  font-size: 1rem;
  margin: 2.5em auto 0 auto;
  padding: 0.4em 1em;
  border: 2px solid var(--main-color1);
  transition: all 0.3s;
  text-align: center;
}
.top-recruit-area .recruit-video a .video-box video {
  width: 100%;
}
@media screen and (max-width: 820px) {
  .top-recruit-area .recruit-video a .video-box video {
    width: 150%;
  }
}
.top-recruit-area .recruit-video a:hover .video-box .bg {
  background-color: rgba(0, 0, 0, 0.65);
}
.top-recruit-area .recruit-video a:hover .video-box .text .view-more {
  border: 2px solid var(--main-color9);
  background-color: var(--main-color9);
  color: var(--main-color1);
}

/*◇サブページ*/
/*パンくずリストブロックに付与*/
.breadcrumbs-org {
  padding: 0 1%;
}
.breadcrumbs-org ol li {
  font-size: 0.9em;
  color: var(--main-color2) !important;
}
@media screen and (max-width: 540px) {
  .breadcrumbs-org ol li {
    font-size: 0.9em;
  }
}
.breadcrumbs-org ol li a {
  color: var(--main-color2) !important;
}

/*大見出し*/
#sub-mv {
  padding: 50px 1% 0 1%;
}
#sub-mv h1 {
  display: inline-block;
  position: relative;
  font-family: "Roboto";
  font-size: 3.8rem;
}
@media screen and (max-width: 540px) {
  #sub-mv h1 {
    font-size: 3em;
  }
}
#sub-mv h1 span {
  display: block;
  text-align: left;
  font-family: "Noto Sans JP";
  padding-top: 0.1em;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
#sub-mv h1 .curtain {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation: 0.4s sub-h-anime 0.2s ease-in-out forwards;
}

@keyframes sub-h-anime {
  0% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0%;
    left: 100%;
  }
}
/*◇会社情報*/
.message-area {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  max-width: 1700px;
  margin: 0 0 0 auto;
  padding-left: 5%;
}
@media screen and (max-width: 540px) {
  .message-area {
    grid-template-columns: 1fr;
    padding-left: 0;
  }
}
.message-area .text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.8;
  padding: 0 8% 0 0;
}
@media screen and (max-width: 540px) {
  .message-area .text-box {
    padding: 0 2% 20px 2%;
    line-height: 1.5;
  }
}
.message-area .img-box {
  display: flex;
  align-items: center;
}

.sticky-container {
  max-width: 1600px;
  padding: 0 3%;
  margin: 0 auto;
}
.sticky-container .main-header {
  position: sticky;
  top: 5%;
  padding: 0 5%;
}
@media screen and (max-width: 540px) {
  .sticky-container .main-header {
    display: none;
  }
}
.sticky-container .main-content {
  padding-left: 5%;
}
@media screen and (max-width: 540px) {
  .sticky-container .main-content {
    padding-left: 0;
  }
}

#sticky-fade {
  position: relative;
  aspect-ratio: 10/15;
  overflow: hidden;
}
#sticky-fade > img {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

/*◇事業案内*/
.flex-area {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
}
@media screen and (max-width: 820px) {
  .flex-area {
    display: block;
    margin-bottom: 50px;
  }
}
.flex-area .img-box {
  display: flex;
  width: 50%;
  align-items: center;
  justify-content: center;
  padding: 5%;
}
@media screen and (max-width: 820px) {
  .flex-area .img-box {
    width: 100%;
    padding: 5% 1%;
  }
}
.flex-area .text-box {
  display: flex;
  width: 50%;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 820px) {
  .flex-area .text-box {
    width: 100%;
  }
}
.flex-area .text-box .jp {
  font-size: 2.2em;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media screen and (max-width: 540px) {
  .flex-area .text-box .jp {
    font-size: 1.8em;
  }
}
.flex-area .text-box .eng {
  color: var(--main-color4);
  font-family: "Roboto";
  font-size: 1.1em;
  font-weight: 700;
  margin-top: 1em;
  margin-bottom: 2em;
}
.flex-area .text-box p {
  font-size: 1em;
  font-weight: 450;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.business-item-area {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1025px) {
  .business-item-area {
    display: block;
  }
}
.business-item-area .h {
  padding: 5% 1%;
}
@media screen and (max-width: 1025px) {
  .business-item-area .h {
    text-align: center;
  }
}
.business-item-area .h .jp {
  font-size: 1.8em;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  white-space: nowrap;
}
.business-item-area .h .eng {
  color: var(--main-color4);
  font-family: "Roboto";
  font-size: 1.1em;
  font-weight: 700;
  margin-top: 1em;
  margin-bottom: 2em;
}
.business-item-area .items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 30px;
  max-width: 800px;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1025px) {
  .business-item-area .items {
    margin: 0 auto;
  }
}
@media screen and (max-width: 540px) {
  .business-item-area .items {
    grid-template-columns: 1fr;
  }
}
.business-item-area .items a.item {
  position: relative;
  display: flex;
  max-width: 400px;
  min-width: 350px;
  aspect-ratio: 10/5;
  padding: 15px 15px 15px 20px;
  background-color: var(--main-color1);
  box-shadow: rgba(50, 50, 50, 0.1) 0px 3px 6px, rgba(50, 50, 50, 0.16) 0px 3px 6px;
  border-radius: 0 5px 5px 0;
  overflow: hidden;
}
@media screen and (max-width: 540px) {
  .business-item-area .items a.item {
    aspect-ratio: 10/3.5;
  }
}
.business-item-area .items a.item::before {
  content: "";
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 20px;
  height: 2px;
  background-color: var(--main-color2);
  transform: rotate(45deg);
  transform-origin: 100% 50%;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.business-item-area .items a.item::after {
  content: "";
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 45px;
  height: 2px;
  background-color: var(--main-color2);
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.business-item-area .items a.item .text-box {
  color: var(--main-color2);
}
.business-item-area .items a.item .text-box .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--main-color2);
  z-index: 0;
  transition: all 0.3s ease-in-out;
}
.business-item-area .items a.item .text-box .eng {
  position: relative;
  font-family: "Roboto";
  font-size: 2em;
  line-height: 1.2;
  z-index: 1;
}
.business-item-area .items a.item .text-box .jp {
  position: relative;
  font-weight: 700;
  z-index: 1;
}
.business-item-area .items a.item:hover::before, .business-item-area .items a.item:hover::after {
  background-color: var(--main-color1);
}
.business-item-area .items a.item:hover .text-box {
  color: var(--main-color1);
}
.business-item-area .items a.item:hover .text-box .bg {
  width: 100%;
}

#hub-parallax {
  height: auto;
}
#hub-parallax .parallax-bg {
  box-sizing: border-box;
  color: #FFF;
  font-size: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
  padding: 5%;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/*◇お問い合わせ*/
.contact-area {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  background-color: var(--main-color1);
  padding: 30px 5%;
  max-width: 970px;
  margin: 0 auto;
  box-shadow: rgba(50, 50, 50, 0.1) 0px 3px 6px, rgba(50, 50, 50, 0.16) 0px 3px 6px;
}
@media screen and (max-width: 1025px) {
  .contact-area {
    max-width: 700px;
    grid-template-columns: 1fr;
    padding: 30px 3%;
  }
}
.contact-area .l {
  padding: 20px 5%;
}
@media screen and (max-width: 1025px) {
  .contact-area .l {
    padding-left: 3%;
  }
}
.contact-area .l h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 540px) {
  .contact-area .l h4 {
    font-size: 1.2rem;
  }
}
.contact-area .l h4 span {
  display: block;
  color: var(--main-color4);
  font-size: 0.9rem;
  padding: 0.5em 0;
  font-family: "Roboto", sans-serif;
}
.contact-area .r > div {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px dotted var(--main-color7);
}
@media screen and (max-width: 820px) {
  .contact-area .r > div {
    padding-left: 3%;
    padding-right: 3%;
  }
}
.contact-area .r > div:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.contact-area .r > div h5 {
  font-size: 1.1rem;
  margin-bottom: 0.1em;
}
.contact-area .r > div p.tel {
  display: inline-block;
  font-size: 1.6em;
  font-weight: 600;
  letter-spacing: 0;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 540px) {
  .contact-area .r > div p.tel {
    font-size: 1.15em;
  }
}
.contact-area .r > div p.tel i {
  font-size: 1.4rem;
  margin-right: 0.3em;
  color: var(--main-color7);
}
@media screen and (max-width: 540px) {
  .contact-area .r > div p.tel i {
    font-size: 1.05rem;
  }
}

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

/*◇各事業紹介*/
#top-pallax {
  height: 230px;
  overflow: hidden;
}
@media screen and (max-width: 540px) {
  #top-pallax {
    height: 150px;
  }
}

.sub-business-bold {
  font-size: 2em;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
  margin-bottom: 0.2em;
}
@media screen and (max-width: 540px) {
  .sub-business-bold {
    font-size: 1.4em;
  }
}

.h-full {
  position: relative;
  width: 100%;
  height: 200px;
  background-color: var(--main-color4);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.h-full::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: inherit;
  background-color: var(--main-color2);
  opacity: 0.75;
}
.h-full .box {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--main-color1);
  text-align: center;
  transform: translate(-50%, -50%);
}
.h-full .box .eng {
  font-size: 2.2em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  font-family: "Roboto";
}
.h-full .box .jp {
  font-size: 1.2em;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.6;
}/*# sourceMappingURL=oscompany.css.map */