@charset "utf-8";
/*=================================
ベース
===================================*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  background-color: #fff;
  height: 100%;
}
body {
  font-family: "游ゴシック", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  color: #172429;
  font-feature-settings: "palt";
  font-weight: 700;
  height: 100%;
}
body, div, p, h1, h2, h3, h4, ul, figure {
  margin: 0;
  padding: 0;
}
p {
  line-height: 2em;
}
td, th, li, dd {
  line-height: 1.7em;
}
p {
  text-align: justify;
}
img {
  width: 100%;
  height: auto;
}
/*aタグ*/
a {
  color: #0a8ec8;
  text-decoration: none;
}
p a:hover {
  opacity: 0.6;
  transition-duration: .3s;
}
/* ========== スマホ非表示 ========== */
@media screen and (max-width: 1024px) {
  .sp-none {
    display: none !important;
  }
}
/* ========== PC非表示 ========== */
@media screen and (min-width: 1025px) {
  .pc-none {
    display: none !important;
  }
}
/* ========== 汎用クラス ========== */
.mtop30 {
  margin-top: 30px;
}
/* ========== 各クラス ========== */
.container {
  height: 100%
}
p.logo {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
p.logo img {
  width: 180px;
  height: auto;
}
.content1 {
  height: 85dvh;
  background-image: linear-gradient(153deg, #ffffff, #e3fdff, #fefeff, #dff5ff);
  animation: bgcontent1 10s ease infinite;
  background-size: 200% 200%;
}
@keyframes bgcontent1 {
  0% {
    background-position: 0% 100%;
  }
  50% {
    background-position: 80% 20%;
  }
  100% {
    background-position: 0% 100%;
  }
}
.content2 {
  background: #30dae2 url("../img/bg_img.jpg") no-repeat top left / 100% auto;
  width: 100%;
  padding: 26% 20px 0;
  box-shadow: 0 5px 3px -3px rgba(0, 0, 0, .2) inset;
}
.company_profile {
  background-color: #fff;
  border-radius: 8px;
  padding: 50px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
  width: 100%;
  margin-bottom: 100px;
}
.company_profile dl {
  display: flex;
  flex-wrap: wrap;
}
.company_profile dt, .company_profile dd {
  margin-bottom: 30px;
}
.company_profile dt {
  width: 100px;
}
.company_profile dt p {
  background-color: #0a8ec8;
  width: 80px;
  padding: 3px 6px;
  line-height: 1;
  color: #fff;
  text-align: center;
  margin-top: 4px;
}
.company_profile dt:nth-of-type(2n) p {
  background-color: #30dae2;
}
.company_profile dd {
  width: -webkit-calc(100% - 100px);
  width: calc(100% - 100px);
}
.company_profile .service_description {
  font-weight: 400;
}
.footer_small {
  text-align: center;
  color: #fff;
  padding-bottom: 50px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .company_profile {
    padding: 70px 15% 50px;
  }
}
@media screen and (max-width: 1024px) {
  .container {
    overflow-y: auto;
    scroll-snap-type: y proximity;
  }
  .content1, .content2 {
    scroll-snap-align: start;
  }
}
@media screen and (min-width: 1025px) {
  .container {
    display: flex;
    height: auto;
  }
  .content1 {
    height: auto;
    width: 45%;
  }
  .content2 {
    width: 55%;
    padding: 10% 5% 0;
    background-position: 0 -40px;
    box-shadow: 5px 0px 3px -3px rgba(0, 0, 0, .1) inset;
  }
  .company_profile {
    padding: 70px 50px 50px;
  }
  p.logo {
    position: fixed;
    width: 45%;
  }
}