@charset "UTF-8";
/* ________定義_______ */
html {
  font-size: 62.5%;
}

.flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.sm_only {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .sm_only {
    display: unset !important;
  }
}

@media screen and (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
}
.display-none,
.pc-none {
  display: none;
}

.pc_flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .pc_flex {
    display: block;
  }
}

.img-center {
  display: block;
  margin: 0 auto;
}

.HL_text {
  font-weight: bold;
  background: linear-gradient(transparent 77%, #ffe5ac 77%);
}

.blue_back {
  background-color: #f4f8fd;
  padding: 1px;
}

/* ________MAIN_______ */
body {
  color: #333;
  background: #fffffd;
  line-height: 2.7;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, メイリオ, "Times New Roman", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  letter-spacing: 0.05rem;
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  body {
    letter-spacing: 0.05rem;
    font-size: 1.6rem;
    line-height: 2.6;
  }
}

/* Loading背景画面設定　*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #333;
  z-index: 9999999;
  text-align: center;
  color: #fff;
}
#splash #splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#splash #splash-logo img {
  width: 500px;
}
@media screen and (max-width: 768px) {
  #splash #splash-logo img {
    width: 200px;
  }
}

body {
  background: #333;
}
body .appear {
  background: #fff;
}

.splashbg1,
.splashbg2 {
  display: none;
}

body.appear .splashbg1,
body.appear .splashbg2 {
  display: block;
}

body.appear .splashbg1 {
  -webkit-animation-name: PageAnime;
          animation-name: PageAnime;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 50%;
  transform: scaleX(1);
  background-color: #333;
}

@-webkit-keyframes PageAnime {
  0% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}

@keyframes PageAnime {
  0% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
body.appear .splashbg2 {
  -webkit-animation-name: PageAnime2;
          animation-name: PageAnime2;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 50%;
  transform: scaleX(1);
  background-color: #333;
}

@-webkit-keyframes PageAnime2 {
  0% {
    transform-origin: right;
    transform: scaleX(1);
  }
  50% {
    transform-origin: left;
  }
  100% {
    transform-origin: left;
    transform: scaleX(0);
  }
}

@keyframes PageAnime2 {
  0% {
    transform-origin: right;
    transform: scaleX(1);
  }
  50% {
    transform-origin: left;
  }
  100% {
    transform-origin: left;
    transform: scaleX(0);
  }
}
/*画面遷移の後現れるコンテンツ設定*/
#container {
  opacity: 0;
}

body.appear #container {
  -webkit-animation-name: PageAnimeAppear;
          animation-name: PageAnimeAppear;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
section {
  padding: 90px 30px 140px 30px;
  background-color: white;
}
@media screen and (max-width: 768px) {
  section {
    padding: 50px 15px;
  }
}

section:nth-child(2n) {
  background: #fafafa;
}

#header {
  position: fixed;
  height: 100px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(51, 51, 51, 0.4901960784);
  color: #fff;
  text-align: center;
  padding: 15px 99px;
  font-size: 3rem;
  z-index: 99999;
}
#header img {
  width: 280px;
}
#header nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 5px 0 0;
}
#header nav ul li a {
  font-family: "Roboto Condensed", sans-serif;
  display: block;
  text-decoration: none;
  color: #afafaf;
  padding: 0px 30px;
  transition: all 0.3s;
  font-weight: bold;
  position: relative;
  line-height: 2;
}
#header nav ul li a::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: 0;
  left: 10%;
  /*線の形状*/
  width: 80%;
  height: 2px;
  background: #ffffff;
  /*アニメーションの指定*/
  transition: all 0.3s;
  transform: scale(0, 1); /*X方向0、Y方向1*/
  transform-origin: center top; /*上部中央基点*/
}
#header nav ul li.current a,
#header nav ul li a:hover {
  color: #fff;
}
#header nav ul li.current a::after,
#header nav ul li a:hover::after {
  transform: scale(1, 1);
}

.sp_logo {
  background: rgba(51, 51, 51, 0.4901960784);
  position: absolute;
  z-index: 2;
  width: 100%;
  padding: 15px 0;
}
.sp_logo img {
  height: 50px;
  display: block;
  margin: 0 auto;
}

/*アクティブになったエリア*/
#g-nav_sp {
  position: fixed;
  z-index: 999;
  top: -120%;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #999;
  transition: all 0.6s;
}
#g-nav_sp.panelactive {
  top: 0;
}
#g-nav_sp.panelactive #g-nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#g-nav_sp ul {
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#g-nav_sp li {
  list-style: none;
  text-align: center;
}
#g-nav_sp li a {
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

.openbtn {
  position: fixed;
  top: 18px;
  right: 10px;
  z-index: 9999;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #b2b2b2;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top: 15px;
}
.openbtn span:nth-of-type(2) {
  top: 23px;
}
.openbtn span:nth-of-type(3) {
  top: 31px;
}
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
  background-color: white;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
  background-color: white;
}

#FV {
  position: relative; /*h1の中央寄せ配置の起点とするためのrelative*/
  height: 100vh; /*高さを全画面にあわせる*/
  /*見出し設定*/
}
#FV::after, #FV::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#FV::after {
  background-color: rgba(0, 0, 0, 0.34);
}
#FV #video-area {
  position: fixed;
  z-index: -1; /*最背面に設定*/
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}
#FV #video {
  /*天地中央配置*/
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*縦横幅指定*/
  width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100%;
  min-width: 100%;
}
#FV .FV_sp {
  width: 100vw;
  height: 100vh;
}
#FV h1 {
  /*要素の配置*/
  position: absolute;
  bottom: 3%;
  left: 0%;
  /* transform: translateY(-50%) translateX(-50%); */
  color: #ffffff;
  font-size: 7rem;
  padding: 30px 99px;
  line-height: 1.6;
  z-index: 2;
  width: 100%;
}
#FV h1 span {
  font-size: 4rem;
  line-height: 1.5;
  display: block;
  font-weight: bold;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  #FV h1 {
    padding: 20px;
    font-size: 3rem;
    line-height: 1.6;
  }
  #FV h1 span {
    font-size: 1.8rem;
    display: block;
    margin-top: 20px;
    line-height: 1.5;
  }
}

.section_inner {
  width: 75vw;
  text-align: center;
  margin: 0 auto;
}
.section_inner h2 {
  position: relative;
  margin-bottom: 1em;
  font-weight: bold;
  font-size: 9rem;
  line-height: 2;
}
.section_inner h2::before {
  content: "";
  position: absolute;
  bottom: -15px;
  width: 60px;
  height: 5px;
  left: 50%;
  transform: translateX(-50%);
  background-color: black;
  border-radius: 2px;
}
@media screen and (max-width: 768px) {
  .section_inner {
    width: 100%;
    text-align: left;
  }
  .section_inner h2 {
    font-size: 3rem;
    text-align: center;
    margin: 0 auto 1.5em;
  }
}
.section_inner span {
  position: relative;
  display: block;
  text-align: center;
  margin: 0;
  font-size: 3.5rem;
  font-weight: bold;
}
.section_inner span::before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f10d";
  font-size: 30px;
  color: rgb(103, 134, 160);
  margin: -40px -50px;
}
@media screen and (max-width: 768px) {
  .section_inner span {
    font-size: 2.3rem;
    line-height: 1.5;
    margin-top: 75px;
  }
  .section_inner span::before {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f10d";
    font-size: 23px;
    color: rgba(103, 134, 160, 0.65);
    margin: -47px -3px;
  }
}

.service_box {
  margin-top: 200px;
}
@media screen and (max-width: 768px) {
  .service_box {
    margin: 0;
  }
}
.service_box .service_box_inner {
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1);
  padding: 60px;
  position: relative;
  z-index: 5;
  background: white;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: left;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-right: -540px;
  width: 70%;
}
.service_box .service_box_inner.left_text {
  margin-left: -540px;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .service_box .service_box_inner {
    width: 100%;
    padding: 0px;
    margin-top: 50px;
  }
  .service_box .service_box_inner .service_box_inner_text {
    padding: 30px 20px;
  }
  .service_box .service_box_inner.left_text {
    margin-left: 0px;
    margin-right: 0;
  }
}
.service_box .service_box_inner h1 {
  position: relative;
  padding: 0.25em 0;
  font-size: 3.5rem;
  font-weight: bold;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 30px;
}
.service_box .service_box_inner h1::after {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(to right, rgb(103, 134, 160), transparent);
}
@media screen and (max-width: 768px) {
  .service_box .service_box_inner h1 {
    font-size: 2.5rem;
  }
}
.service_box .service_box_inner ol {
  counter-reset: list;
  list-style-type: none;
  padding: 0;
  margin-top: 50px;
}
.service_box .service_box_inner ol li {
  position: relative;
  width: 90%;
  padding: 0 0 0 20px;
  margin: 20px 0 30px 0px;
  font-weight: bold;
  line-height: 30px;
  border-bottom: dashed 1px rgb(103, 134, 160);
}
.service_box .service_box_inner ol li::before {
  counter-increment: list;
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  height: 0;
  width: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 7px solid rgb(103, 134, 160);
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .service_box .service_box_inner ol {
    margin-top: 15px;
  }
  .service_box .service_box_inner ol li {
    width: 100%;
    font-size: small;
  }
}
.service_box img {
  width: 75%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .service_box img {
    margin: 0;
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
}

.company_inner dl {
  border-top: 1px solid #ccc;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 25px 5px;
}
.company_inner dl {
  border-top: 1px solid #ccc;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 25px 5px;
  margin: 0;
}
.company_inner dl dt {
  width: 200px;
  color: #111;
  line-height: 1.6;
}
.company_inner dl dd {
  flex: 1;
  line-height: 1.6;
}
.company_inner dl dd .mail_img {
  width: 200px;
}
@media screen and (max-width: 768px) {
  .company_inner dl dd .mail_img {
    width: 130px;
  }
}
.company_inner dl:last-of-type {
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  .company_inner dl dt {
    width: 40%;
    color: #111;
    line-height: 1.6;
  }
}

#footer {
  background: #333;
  padding: 20px;
  color: white;
  font-size: 1.5rem;
  text-align: center;
}
#footer img {
  width: 295px;
  margin: 15px auto 35px;
  display: block;
}
#footer .footer_inner ul {
  display: flex;
  margin: 25px 15px 20px;
  width: 1100px;
  margin: 30px auto;
  justify-content: space-around;
}
@media screen and (max-width: 768px) {
  #footer {
    font-size: smaller;
  }
  #footer img {
    width: 200px;
  }
}

body.error_page {
  background-color: white;
}
body .contents {
  padding: 100px 50px;
}
body .contents .not_box {
  width: 85%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  body #header {
    padding: 15px 0;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
  }
  body #header img {
    width: 150px;
    display: block;
    margin: 0 auto;
  }
  body .contents {
    padding: 100px 15px 50px;
  }
}/*# sourceMappingURL=custom.css.map */