@charset "UTF-8";
/*-------------------------------------------------------------
トップページ
---------------------------------------------------------------*/
.index {
  position: relative;
  /*---------------------------------------
  KV
  ---------------------------------------*/
  /*---------------------------------------
      KV　内のスクロールアイコン
  ---------------------------------------*/
  /*=== 9-1-2 丸が動いてスクロールを促す ====*/
  /*スクロールダウン全体の場所*/
  /* 丸の描写 */
  /*下からの距離が変化して丸の全体が上から下に動く*/
  /*上から下にかけて丸が透過→不透明→透過する*/
  /* 線の描写 */
  /*---------------------------------------
  コンテンツ
  ---------------------------------------*/
  /*---------------------------------------
  infomation
  ---------------------------------------*/
  /*---------------------------------------
  コンセプト
  ---------------------------------------*/
  /*---------------------------------------
  会社案内
  ---------------------------------------*/
  /*---------------------------------------
  リクルート
  ---------------------------------------*/
}
.index .mainImg {
  position: relative;
  background-size: auto calc(100vh - 80px);
  background-position: left bottom;
  background-image: url(/assets/img/index/kv_img_sp.png);
  height: calc(100vh - 80px);
}
@media screen and (min-width:640px) {
  .index .mainImg {
    background-size: cover;
    background-position: center right 10%;
    background-image: url(/assets/img/index/kv_img.png);
    height: 75vh;
  }
}
@media screen and (min-width:1025px) {
  .index .mainImg {
    height: 70vh;
    background-position: top 80% right;
  }
}
.index .mainImgInner {
  text-align: center;
}
@media screen and (min-width:1025px) {
  .index .mainImgInner {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
  }
}
@media screen and (min-width:1400px) {
  .index .mainImgInner {
    width: auto;
  }
}
@media screen and (max-width:639px) {
  .index .mainImgInner .kvCopy {
    width: 75%;
    margin-top: 7vh;
  }
}
@media screen and (min-width:640px) {
  .index .mainImgInner .kvCopy {
    position: absolute;
    top: 10%;
    right: 6%;
    width: 300px;
  }
}
@media screen and (min-width:1400px) {
  .index .mainImgInner .kvCopy {
    width: 370px;
    top: 70px;
    right: 4%;
  }
}
.index .kvScroll {
  position: absolute;
  right: auto;
  left: 50%;
  margin: auto;
  top: 0;
  bottom: 5vh;
}
@media screen and (min-width:640px) {
  .index .kvScroll {
    display: none;
  }
}
.index .kvScroll:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: -5px;
  /*丸の形状*/
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid #fff;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  -webkit-animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
          animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
@-webkit-keyframes circlemove {
  0% {
    bottom: 48px;
  }
  100% {
    bottom: -5px;
  }
}
@keyframes circlemove {
  0% {
    bottom: 48px;
  }
  100% {
    bottom: -5px;
  }
}
@-webkit-keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.index .kvScroll:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: -1px;
  /*線の形状*/
  width: 1px;
  height: 48px;
  background: #fff;
}
.index .infomation {
  background-color: #00AEE2;
  padding-top: 32px;
  padding-bottom: 40px;
}
@media screen and (min-width:640px) {
  .index .infomation {
    padding-bottom: 32px;
  }
}
@media screen and (min-width:1025px) {
  .index .infomationInner {
    max-width: 1024px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.index .infomationInner .Ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px;
}
@media screen and (min-width:1025px) {
  .index .infomationInner .Ttl {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width:1025px) {
  .index .infomationInner .Ttl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 180px;
    margin-bottom: 0;
  }
}
.index .infomationInner .Ttl h2 {
  color: #fff;
  font-size: 16px;
  margin: 0;
  padding-top: 0;
}
.index .infomationInner .Ttl .btnS {
  color: #00AEE2;
  text-align: center;
  margin-left: 24px;
}
.index .infomationInner .Ttl .btnS:after {
  margin-left: 8px;
}
@media screen and (min-width:640px) {
  .index .infomationInner .Ttl .btnS {
    margin-top: 10px;
  }
}
@media screen and (min-width:1025px) {
  .index .infomationInner .Ttl .btnS {
    padding-right: 0;
    padding-left: 0;
    margin-left: 0;
    width: 100%;
  }
}
@media screen and (min-width:1025px) {
  .index .infomationInner .newsTxt {
    margin-left: 40px;
    width: 100%;
  }
}
@media screen and (min-width:1025px) {
  .index .infomationInner .newsTxt ul {
    margin-top: 1rem;
  }
}
.index .infomationInner .newsTxt ul li {
  color: #fff;
  font-size: 13px;
  border-bottom: 1px solid #66CFEE;
  padding-bottom: 14px;
  margin-bottom: 14px;
}
.index .infomationInner .newsTxt ul li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
@media screen and (min-width:640px) {
  .index .infomationInner .newsTxt ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.index .infomationInner .newsTxt ul li time {
  font-weight: bold;
}
@media screen and (max-width:639px) {
  .index .infomationInner .newsTxt ul li time {
    margin-bottom: 8px;
    display: inline-block;
  }
}
@media screen and (min-width:640px) {
  .index .infomationInner .newsTxt ul li time {
    width: 20%;
  }
}
@media screen and (min-width:1025px) {
  .index .infomationInner .newsTxt ul li time {
    width: 10em;
  }
}
.index .infomationInner .newsTxt ul li a {
  color: #fff;
  text-decoration: underline;
}
@media screen and (min-width:640px) {
  .index .infomationInner .newsTxt ul li a {
    margin-left: 40px;
    width: 80%;
  }
}
.index .concept {
  background-color: #EFF8FA;
  padding-top: 16px;
  padding-bottom: 48px;
}
@media screen and (min-width:640px) {
  .index .concept {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media screen and (min-width:1025px) {
  .index .concept {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}
.index .conceptInner {
  max-width: 960px;
}
@media screen and (min-width:640px) {
  .index .conceptInner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.index .conceptDesc .h2-style {
  margin-top: -32px;
}
@media screen and (min-width:640px) {
  .index .conceptDesc .h2-style {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (min-width:1025px) {
  .index .conceptDesc .h2-style {
    margin-top: 0;
    font-size: 64px;
  }
}
@media screen and (min-width:640px) {
  .index .conceptDesc {
    padding-right: 40px;
  }
}
@media screen and (min-width:1025px) {
  .index .conceptDesc {
    width: 50%;
    padding-right: 80px;
  }
}
.index .conceptDesc p {
  margin-top: -24px;
}
@media screen and (min-width:1025px) {
  .index .conceptDesc p {
    margin-top: 0;
  }
}
.index .concept img {
  width: 100%;
  margin-top: 24px;
}
@media screen and (min-width:640px) {
  .index .concept img {
    margin-top: 0;
    width: 50%;
  }
}
@media screen and (min-width:1025px) {
  .index .concept img {
    display: block;
  }
}
.index .company {
  position: relative;
}
@media screen and (min-width:640px) {
  .index .company {
    padding-left: 0;
    padding-right: 0;
    background-image: none;
    padding-bottom: 40px;
  }
}
@media screen and (min-width:640px) and (min-width:1025px) {
  .index .company {
    padding-bottom: 144px;
  }
}
@media screen and (min-width:640px) {
  .index .company:before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 80%;
    background-color: #EFF8FA;
    display: block;
    width: 100%;
    z-index: 0;
  }
}
.index .companyInner {
  max-width: 1024px;
  position: relative;
  z-index: 1;
  background-image: url(/assets/img//index/img_company.png);
  background-size: cover;
  background-position: center center;
  padding-bottom: 48px;
}
@media screen and (min-width:640px) {
  .index .companyInner {
    background-image: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width:640px) {
  .index .companyTtl {
    background-image: url(/assets/img//index/img_company.png);
    background-size: cover;
    width: 50%;
    margin-right: -12px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width:1025px) {
  .index .companyTtl {
    margin-right: -48px;
  }
}
@media screen and (max-width:639px) {
  .index .companyTtl .h2-style {
    padding-top: 32px;
    margin-bottom: 24px;
  }
}
.index .companyDesc {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 24px;
}
@media screen and (min-width:640px) {
  .index .companyDesc {
    text-align: left;
    width: calc(50% + 64px);
    margin-left: -12px;
    margin-bottom: -24px;
    margin-top: 55px;
    padding: 56px;
    padding-bottom: 0;
  }
}
@media screen and (min-width:1025px) {
  .index .companyDesc {
    margin-left: -24px;
  }
}
.index .companyDesc h3 {
  color: #00AEE2;
  margin-bottom: 40px;
}
.index .companyDesc p {
  margin-bottom: 40px;
}
@media screen and (min-width:640px) {
  .index .companyDesc .btn {
    margin-top: auto;
  }
}
.index .recruit {
  background-image: url(/assets/img/index/bg_recruit.png);
  background-size: cover;
  background-position: center center;
  color: #fff;
  padding-top: 40px;
  padding-bottom: 56px;
}
@media screen and (min-width:640px) {
  .index .recruit {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.index .recruitInner {
  max-width: 960px;
}
@media screen and (min-width:640px) {
  .index .recruitInner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.index .recruit .h2-style {
  margin-top: 0;
  padding-top: 0;
}
@media screen and (min-width:640px) {
  .index .recruit .h2-style {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width:639px) {
  .index .recruitDesc {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width:640px) {
  .index .recruitDesc {
    margin-left: 40px;
  }
}
@media screen and (min-width:1025px) {
  .index .recruitDesc {
    margin-left: 90px;
  }
}
.index .recruitDesc .btn {
  margin-top: 16px;
}
@media screen and (max-width:639px) {
  .index .recruitDesc .btn {
    width: auto;
  }
}
.index .recruitDesc ul {
  font-weight: bold;
}
.index .recruitDesc ul li {
  margin-bottom: 8px;
}
.index .recruitDesc ul li:before {
  content: url(/assets/img/cmn/ico_check_white.svg);
  display: inline-block;
  margin-right: 8px;
}

/*---------------------------------------
lower page
---------------------------------------*/
.pageTtl {
  width: 100%;
  padding: 112px 80px 80px;
  background-color: #EFF8FA;
  font-family: "Open Sans", "Noto Sans JP", sans-serif;
  font-size: 40px;
  text-transform: uppercase;
  line-height: 1.3;
}
@media screen and (max-width:639px) {
  .pageTtl {
    font-size: 32px;
    padding: 64px 32px;
  }
}
.pageTtl small {
  display: block;
  font-size: 16px;
  color: #00AEE2;
  margin-top: 16px;
}
@media screen and (min-width:1025px) {
  .pageTtl {
    padding: 80px 80px;
  }
}
.pageTtl h2 {
  letter-spacing: 0.04em;
  text-align: center;
}
.pageTtl h2 span {
  display: block;
  font-size: 14px;
  font-family: "Open Sans", "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  color: #00AEE2;
  margin-bottom: 10px;
}

.lower .contents section {
  margin-top: 80px;
  margin-bottom: 120px;
}

.lower .sectionBody {
  width: 100%;
  margin: 80px auto 120px;
  padding: 0 20px;
}
.lower .sectionBody .leadText {
  background-color: #fff;
  padding: 40px 64px;
  font-size: 112%;
  line-height: 2;
  width: 80%;
  margin: auto;
}
@media screen and (min-width:640px) {
  .lower .sectionBody {
    width: 80%;
    max-width: 640px;
  }
}
@media screen and (min-width:1025px) {
  .lower .sectionBody {
    max-width: 960px;
  }
}

.lower .sectionTtl {
  color: #00AEE2;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.3em;
  text-align: center;
  margin-bottom: 48px;
}

.lower .pd {
  padding: 0 24px;
}
.lower .dpb {
  display: inline-block;
}
.lower .none {
  display: none;
}

.w80 {
  width: 100%;
  margin: auto;
}
@media screen and (min-width:1025px) {
  .w80 {
    width: 80%;
  }
}

@media screen and (min-width:640px) {
  .col2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .col2 > * {
    width: 50%;
  }
}
.lower .vehicle .vehicleBox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
}
@media screen and (min-width:640px) {
  .lower .vehicle .vehicleBox {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 56px;
  }
}
.lower .vehicle .vehicleBox .vehicleImg {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (min-width:640px) {
  .lower .vehicle .vehicleBox .vehicleImg {
    width: 50%;
    max-width: 480px;
  }
}
.lower .vehicle .vehicleBox .vehicleImg img {
  display: block;
}
.lower .vehicle .vehicleBox .table-style {
  margin: 0;
}

.recruitList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 4px;
  width: 100%;
}
.recruitList li {
  width: 33.3%;
}
.recruitList li a {
  background-color: #00AEE2;
  border-radius: 8px;
  color: #ffffff;
  display: block;
  text-align: center;
  padding: 16px 8px;
}

.lower .contact .contactTel {
  display: block;
  background-color: #2E3653;
  border-radius: 24px;
  color: #ffffff;
  padding: 28px 32px;
  text-align: center;
}
@media screen and (min-width:640px) {
  .lower .contact .contactTel {
    background-color: #ffffff;
    border: 2px solid #66CFEE;
    color: #2E3653;
  }
}
.lower .contact .contactTel .ttl {
  font-weight: bold;
}
@media screen and (min-width:640px) {
  .lower .contact .contactTel .ttl {
    font-size: 1.5em;
  }
}
.lower .contact .contactTel .num {
  display: block;
  font-family: "Open Sans", "Noto Sans JP", sans-serif;
  font-size: 2.3em;
  font-weight: bold;
  text-transform: uppercase;
  margin: 4px 0;
}
@media screen and (min-width:640px) {
  .lower .contact .contactTel .num {
    font-size: 3em;
  }
}
.lower .contact .contactTel .numttl {
  font-size: 0.6em;
}
.lower .contact .contactTel .time {
  font-size: 12px;
  opacity: 0.8;
}
@media screen and (min-width:640px) {
  .lower .contact .contactTel .time {
    font-size: 14px;
  }
}

@media screen and (min-width:1025px) {
  .lower .blog .blog-contents {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 48px;
  }
}
@media screen and (min-width:1025px) {
  .lower .blog .p-blog-article {
    width: calc(100% - 48px - 256px);
  }
}
.lower .blog .p-blog-article__item {
  border-top: 1px solid #66CFEE;
  padding-top: 4em;
  margin-top: 4em;
}
.lower .blog .p-blog-article__item:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.lower .blog .p-blog-article__title {
  font-family: "Open Sans", "Noto Sans JP", sans-serif;
  color: #00AEE2;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
  margin: 0 0 1.5em;
}
.lower .blog .p-blog-article__body {
  line-height: 2;
}
.lower .blog .p-blog-article__sequel {
  margin: 1.5em 0;
}
.lower .blog .p-blog-article__info {
  font-size: 0.85em;
  background: #EFF8FA;
  padding: 1em 1.2em;
  margin-top: 2em;
}
.lower .blog .p-blog-article__info span {
  margin: 0 8px 0 4px;
}
.lower .blog .p-blog-article__info span::after {
  content: "：";
}
.lower .blog .p-blog-ctrl {
  margin-top: 4em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width:1025px) {
  .lower .blog .p-blog-ctrl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.lower .blog .p-blog-ctrl div {
  background: #2E3653;
  border-radius: 2px;
  width: 100%;
}
@media screen and (min-width:1025px) {
  .lower .blog .p-blog-ctrl div {
    width: calc(50% - 4px);
  }
}
.lower .blog .p-blog-ctrl div a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  padding: 0.8em 1.4em;
  line-height: 1.3;
  font-size: 0.9em;
}
.lower .blog .p-blog-ctrl__next a {
  text-align: right;
}
.lower .blog .p-blog-side {
  margin-top: 4em;
}
@media screen and (min-width:1025px) {
  .lower .blog .p-blog-side {
    width: 256px;
  }
}
.lower .blog .p-blog-side__search {
  margin-bottom: 4em;
}
.lower .blog .p-blog-side__search form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 4px;
}
@media screen and (min-width:1025px) {
  .lower .blog .p-blog-side__search form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.lower .blog .p-blog-side__input {
  background: #ffffff;
  border: 1px solid #66CFEE;
  border-radius: 4px;
  width: calc(65% - 4px);
  padding: 8px;
}
@media screen and (min-width:1025px) {
  .lower .blog .p-blog-side__input {
    width: 100%;
  }
}
.lower .blog .p-blog-side__submit {
  background-color: #00AEE2;
  color: #ffffff;
  font-size: 0.9em;
  border: none;
  border-radius: 4px;
  text-align: center;
  width: 35%;
  padding: 0;
}
@media screen and (min-width:1025px) {
  .lower .blog .p-blog-side__submit {
    padding: 0.5em;
    width: 100%;
  }
}
.lower .blog .p-blog-side__entry {
  margin-bottom: 3rem;
}
.lower .blog .p-blog-side__entry:last-child {
  margin-bottom: 0;
}
.lower .blog .p-blog-side__entry .o-ttl-middle {
  border-bottom: 1px solid #2E3653;
  font-size: 1.2rem;
  text-align: left;
  line-height: 1.2;
  margin-bottom: 0;
  padding: 0 0 0.4em;
}
.lower .blog .p-blog-side__item {
  font-size: 0.9em;
  padding: 1em;
}
.lower .blog .p-blog-side__item ul li {
  padding: 0 0 0.6em 0;
  margin-left: 1em;
  line-height: 1.3;
  list-style-type: disc;
}
.lower .blog .p-blog-side__item ul li a {
  text-decoration: underline;
}
.lower .blog .p-blog-side__item ul li > ul {
  margin: 0.8em 0 0 1em;
}/*# sourceMappingURL=pages.css.map */