@charset "UTF-8";
/*	cmn-color
------------------------------------ */
/*	transition,hover
------------------------------------ */
/*	media-screen
------------------------------------ */
/*	font
------------------------------------ */
@font-face {
  font-family: "Lato-Bold";
  src: url("../fonts/Lato-Bold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "ShipporiMinchoB1-SemiBold";
  src: url("../fonts/ShipporiMinchoB1-SemiBold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "YujiSyuku-Regular";
  src: url("../fonts/YujiSyuku-Regular.ttf");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansCJKjp-Regular";
  src: url("../fonts/NotoSansCJKjp-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansCJKjp-Medium";
  src: url("../fonts/NotoSansCJKjp-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansCJKjp-Bold";
  src: url("../fonts/NotoSansCJKjp-Bold.woff2") format("woff2");
  font-display: swap;
}
/*	layout
------------------------------------ */
/* animation
例）animation: fadedown .5s ease-in-out;
遅延）animation-delay: 0.5s;
最後の状態維持）animation-fill-mode: forwards;
------------------------------------ */
@keyframes fadedown {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  50% {
    transform: translateY(-5px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeup {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  50% {
    transform: translateY(5px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes faderight {
  0% {
    transform: translateX(10px);
    opacity: 0;
  }
  50% {
    transform: translateX(5px);
    opacity: 0.5;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes grad-fill {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
@keyframes zoom {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes floatY {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(var(--amp));
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/*	font-size  cmn
------------------------------------ */
/*	com parts  PC
------------------------------------ */
.sns-none {
  display: none !important;
}

.over {
  overflow: hidden;
}

.com-ib {
  display: inline-block;
}

.spxs-only {
  display: none;
}
@media screen and (max-width: 390px) {
  .spxs-only {
    display: inherit;
  }
}

.f26 {
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .f26 {
    font-size: 1.5rem;
  }
}

.pre {
  white-space: pre-line;
}

.nowrap {
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .nowrap {
    white-space: nowrap;
  }
}
.no-sb {
  margin: 50px auto 0;
}

.anchor-mp {
  margin: -90px auto 0;
  padding-top: 90px;
}

.com-txt-box p:nth-of-type(n+2) {
  margin: 30px 0 0;
}

.clamp1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.clamp2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.clamp3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@media screen and (min-width: 768px) {
  .com-pd {
    padding: 100px 0;
  }
}

/*  共通パーツ
------------------------------------ */
img {
  pointer-events: none;
}

.com-box {
  border-radius: 7px;
  border: 2px solid #1666b8;
}

.com-bg {
  width: 94.8%;
  margin: auto;
  border-radius: 10px;
  background: #ecf7fb;
}
@media screen and (max-width: 1200px) {
  .com-bg {
    width: 100%;
  }
}

.radius {
  border-radius: 10px;
}

.com-en {
  width: 100%;
}
.com-en img {
  width: 100%;
}

.com-tel {
  font-family: "Lato-Bold", sans-serif;
  letter-spacing: 0.02em;
  color: #1666b8;
  font-size: 3.4rem;
}
@media screen and (max-width: 768px) {
  .com-tel {
    font-size: 1.7rem;
  }
}
.com-tel-txt {
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .com-tel-txt {
    font-size: 1.5rem;
  }
}

.news-post {
  width: 100%;
}
.news-post-item {
  border-bottom: 1px solid #c2d3d9;
}
.news-post-item:first-of-type a {
  padding-top: 0;
}
.news-post-link {
  display: flex;
  padding: 30px 0;
  align-items: flex-start;
}
.news-post-time {
  flex-shrink: 0;
}
.news-post .year {
  display: block;
  font-family: "Lato-Bold", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.02em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .news-post .year {
    font-size: 1.5rem;
  }
}
.news-post .date {
  display: block;
  margin-top: 15px;
  font-family: "Lato-Bold", sans-serif;
  font-size: 3.3rem;
  letter-spacing: 0.02em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .news-post .date {
    font-size: 1.65rem;
  }
}
.news-post-con {
  margin-left: 30px;
}
.news-post-tag {
  display: flex;
  margin-top: 6px;
  flex-wrap: wrap;
}
.news-post-tag-txt {
  margin: 0 10px 10px 0;
  padding-left: 24px;
  background: url(../img/top/com-tag.png) no-repeat left 2px;
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: #1666b8;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .news-post-tag-txt {
    font-size: 1.5rem;
  }
}
.news-post-ttl {
  font-family: "NotoSansCJKjp-Medium", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  line-height: 1.55;
}
@media screen and (max-width: 768px) {
  .news-post-ttl {
    font-size: 1.5rem;
  }
}

.com-tag {
  display: flex;
  width: 100%;
  margin-left: 38px;
  padding-left: 38px;
  border-left: 1px solid #c2d3d9;
  flex-wrap: wrap;
}
.com-tag-box {
  margin: 45px auto 0;
  padding: 32px 40px 20px 50px;
  background: #ecf7fb;
  border-radius: 8px;
}
.com-tag-ttl {
  margin-bottom: 12px;
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  color: #1666b8;
  line-height: 1;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .com-tag-ttl {
    font-size: 1.5rem;
  }
}
.com-tag-item {
  margin: 0 10px 12px 0;
}
.com-tag-link {
  display: flex;
  padding: 3px 15px;
  border: 1px solid #1666b8;
  background: #fff;
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: #1666b8;
  line-height: 1.5;
  border-radius: 999px;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .com-tag-link {
    font-size: 1.5rem;
  }
}
.com-tag-link::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-top: 4px;
  margin-right: 6px;
  background: url(../img/top/com-tag.png) no-repeat left top/contain;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .com-tag-link:hover {
    background-color: #1666b8;
    color: #fff;
  }
  .com-tag-link:hover::before {
    background-image: url(../img/works/tag.png);
    background-repeat: no-repeat;
  }
}
.com-tag-link.current {
  background-color: #1666b8;
  color: #fff;
}
.com-tag-link.current::before {
  background-image: url(../img/works/tag.png);
  background-repeat: no-repeat;
}

/* =========================================

  main layout  all

========================================= */
/* top-news  PC
------------------------------------ */
#top-news .news-post {
  width: 100%;
  max-width: 610px;
}
#top-news .news-btn {
  margin-top: 77px;
}

/* top-greeting  PC
------------------------------------ */
#top-greeting .greeting-bg {
  width: 94.8%;
  margin: auto;
  border-radius: 10px;
  background: #ecf7fb;
  position: relative;
}
#top-greeting .greeting-img01 {
  position: absolute;
  right: 148px;
  top: -88px;
}
@media screen and (min-width: 768px) {
  #top-greeting .greeting-flx-right {
    padding-top: 90px;
  }
}
@media screen and (min-width: 768px) {
  #top-greeting .greeting-flx-left {
    max-width: 522px;
    margin-right: 140px;
  }
}
#top-greeting .greeting-flx-txt {
  margin-top: 53px;
  font-size: 1.9rem;
}
@media screen and (max-width: 768px) {
  #top-greeting .greeting-flx-txt {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  #top-greeting .greeting-ttl {
    margin: auto;
  }
}
#top-greeting .greeting-btn {
  width: 330px;
  margin-top: 90px;
}
#top-greeting .greeting-slider {
  margin-top: -192px;
  position: relative;
}
#top-greeting .greeting-slider li:nth-of-type(1) {
  width: 13.5%;
}
#top-greeting .greeting-slider li:nth-of-type(2) {
  width: 23.4%;
}
#top-greeting .greeting-slider li:nth-of-type(3) {
  width: 15.6%;
}
#top-greeting .greeting-slider li:nth-of-type(4) {
  width: 23.4%;
}
#top-greeting .greeting-slider li:nth-of-type(5) {
  width: 13.5%;
}
#top-greeting .greeting-slider img {
  width: 100%;
}

/* top-reason  PC
------------------------------------ */
#top-reason .reason-bg {
  background: url(../img/top/reason-bg.png) no-repeat center top;
}
#top-reason .reason-txt {
  margin: 45px auto 0;
  text-align: center;
  font-family: "NotoSansCJKjp-Medium", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.02em;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  #top-reason .reason-txt {
    font-size: 1.5rem;
  }
}
#top-reason .reason-list {
  margin: 60px auto 0;
}
#top-reason .reason-list-item {
  max-width: 320px;
  text-align: center;
}
#top-reason .reason-list-ico {
  margin-top: -60px;
}
#top-reason .reason-list-ttl {
  margin-top: -82px;
  line-height: 1;
}
#top-reason .reason-list-ttl-txt {
  display: inline-block;
  padding: 9px;
  background: #1666B8;
  background: linear-gradient(90deg, rgb(22, 102, 184) 0%, rgb(62, 169, 218) 50%, rgb(36, 200, 219) 100%);
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 2.9rem;
  letter-spacing: 0.02em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #top-reason .reason-list-ttl-txt {
    font-size: 1.5rem;
  }
}
#top-reason .reason-list-ttl span:nth-of-type(n+2) {
  margin: 10px auto 0;
}
#top-reason .reason-list-txt {
  margin: 20px auto 0;
  text-align: left;
  font-family: "NotoSansCJKjp-Medium", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.02em;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #top-reason .reason-list-txt {
    font-size: 1.5rem;
  }
}

/* top-services  PC
------------------------------------ */
#top-services .services-bg {
  width: 94.8%;
  margin: auto;
  background: #1666B8;
  background: linear-gradient(90deg, rgb(22, 102, 184) 0%, rgb(62, 169, 218) 50%, rgb(36, 200, 219) 100%);
  border-radius: 10px;
}
#top-services .services-flx-txt {
  margin-top: 50px;
  font-size: 2rem;
  letter-spacing: 0.02em;
  line-height: 2;
  color: #fff;
}
@media screen and (min-width: 768px) {
  #top-services .services-flx-txt {
    max-width: 440px;
  }
}
@media screen and (max-width: 768px) {
  #top-services .services-flx-txt {
    font-size: 1.5rem;
  }
}
#top-services .services-flx-right {
  position: relative;
}
@media screen and (min-width: 768px) {
  #top-services .services-flx-right {
    padding-right: 20px;
  }
}
#top-services .services-tate {
  display: flex;
  writing-mode: vertical-rl;
  flex-direction: column;
  position: absolute;
  top: -30px;
  right: 0;
}
#top-services .services-tate span {
  display: block;
  padding: 16px 0;
  background: #fff;
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 2.8rem;
  letter-spacing: 0.03em;
  color: #1666b8;
}
@media screen and (max-width: 768px) {
  #top-services .services-tate span {
    font-size: 1.5rem;
  }
}
#top-services .services-tate span:nth-of-type(n+2) {
  margin-right: 15px;
}
#top-services .services-list {
  margin: 100px auto 0;
}
#top-services .services-list-item {
  width: 100%;
  max-width: 240px;
}
@media screen and (min-width: 768px) {
  #top-services .services-list-item:nth-of-type(n+2) {
    margin-left: 37px;
  }
}
#top-services .services-list img {
  display: block;
  border-radius: 6px;
}
#top-services .services-list-ttl {
  margin: -63px 0 0 -10px;
  line-height: 1;
}
#top-services .services-list-ttl span {
  display: inline-block;
  background: #fff;
  padding: 8px;
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.02em;
  color: #1666b8;
}
@media screen and (max-width: 768px) {
  #top-services .services-list-ttl span {
    font-size: 1.5rem;
  }
}
#top-services .services-list-ttl span:nth-of-type(n+2) {
  margin-top: 10px;
}
#top-services .services-btn {
  margin: 80px auto 0;
}

/* top-works  PC
------------------------------------ */
#top-works .works-btn {
  margin: 0;
}

.com-works {
  display: flex;
  margin: 70px auto 0;
  align-items: flex-end;
  flex-wrap: wrap;
}
.com-works-item {
  width: 100%;
  max-width: 330px;
}
@media screen and (min-width: 768px) {
  .com-works-item:not(:nth-of-type(3n-2)) {
    margin-left: 45px;
  }
  .com-works-item:nth-of-type(n+4) {
    margin-top: 45px;
  }
}
.com-works-link {
  display: block;
}
.com-works-tag {
  display: flex;
  flex-wrap: wrap;
}
.com-works-tag-txt {
  display: flex;
  margin: 0 10px 20px 0;
  padding: 6px 15px;
  border: 1px solid #1666b8;
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: #1666b8;
  line-height: 1.5;
  border-radius: 999px;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .com-works-tag-txt {
    font-size: 1.5rem;
  }
}
.com-works-tag-txt::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-top: 4px;
  margin-right: 6px;
  background: url(../img/top/com-tag.png) no-repeat left top/contain;
  flex-shrink: 0;
}
.com-works-img {
  width: 100%;
  height: 0;
  padding-top: 100%;
  position: relative;
}
.com-works-img img {
  border-radius: 7px;
}
.com-works-ttl {
  margin-top: 34px;
  padding-left: 10px;
  border-left: 4px solid #1666b8;
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .com-works-ttl {
    font-size: 1.5rem;
  }
}

/* top-recruit  PC
------------------------------------ */
#top-recruit {
  border-top: 1px solid #c2d3d9;
}
#top-recruit .recruit-flx-con {
  width: 100%;
}
@media screen and (min-width: 768px) {
  #top-recruit .recruit-flx-con {
    max-width: 480px;
  }
}
#top-recruit .recruit-txt {
  margin-top: 40px;
  font-size: 2rem;
  font-family: "NotoSansCJKjp-Medium", sans-serif;
  line-height: 2.1;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  #top-recruit .recruit-txt {
    font-size: 1.5rem;
  }
}
#top-recruit .recruit-list {
  display: flex;
  margin: 74px auto 0;
  justify-content: space-between;
}
#top-recruit .recruit-list-item {
  width: 100%;
  max-width: 510px;
}
#top-recruit .recruit-list-link {
  display: block;
  padding: 70px 50px 150px;
  background: url(../img/top/recruit-arw.png) no-repeat calc(100% - 35px) calc(100% - 35px) #1666b8;
  border-radius: 10px;
  box-shadow: 0px 0px 18.75px 6.25px rgba(215, 234, 243, 0.4);
}
@media screen and (min-width: 768px) {
  #top-recruit .recruit-list-link:hover {
    background-position-x: calc(100% - 30px);
  }
}
#top-recruit .recruit-list-ttl {
  color: #fff;
  line-height: 1;
}
#top-recruit .recruit-list-ttl-en {
  font-family: "Lato-Bold", sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  #top-recruit .recruit-list-ttl-en {
    font-size: 1.5rem;
  }
}
#top-recruit .recruit-list-ttl-ja {
  margin-top: 25px;
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 4.6rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  #top-recruit .recruit-list-ttl-ja {
    font-size: 2.3rem;
  }
}

/* top-group  PC
------------------------------------ */
#top-group {
  border-top: 1px solid #c2d3d9;
}
#top-group .com-ttl01-ja {
  margin-right: 114px;
}
#top-group .group-list {
  display: flex;
  flex-wrap: wrap;
}
#top-group .group-list-item {
  width: 100%;
  max-width: 390px;
}
@media screen and (min-width: 768px) {
  #top-group .group-list-item:nth-of-type(2n) {
    margin-left: 30px;
  }
  #top-group .group-list-item:nth-of-type(n+3) {
    margin-top: 30px;
  }
}
#top-group .group-list-link {
  display: block;
  padding-right: 20px !important;
  border: 2px solid #1666b8;
  border-radius: 7px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#top-group .group-list-link::before {
  content: "";
  width: 95px;
  height: 95px;
  margin: auto;
  background: url(../img/top/com-btn-arw-white.png) no-repeat 19px center #1666b8;
  border-radius: 999px;
  position: absolute;
  right: -47px;
  top: 0;
  bottom: 0;
}
#top-group .group-list-link01 {
  padding: 117px 0 28px;
  background: url(../img/top/group-logo01.png) no-repeat 38px 32px #fff;
}
#top-group .group-list-link02 {
  padding: 108px 0 37px;
  background: url(../img/top/group-logo02.png) no-repeat 49px 50px #fff;
}
#top-group .group-list-link03 {
  padding: 102px 0 43px;
  background: url(../img/top/group-logo03.png) no-repeat 43px 50px #fff;
}
#top-group .group-list-link04 {
  padding: 108px 0 37px;
  background: url(../img/top/group-logo04.png) no-repeat 39px 46px #fff;
}
#top-group .group-list-link05 {
  padding: 126px 0 19px;
  background: url(../img/top/group-logo05.png) no-repeat 118px 18px #fff;
}
#top-group .group-list-ttl {
  display: inline-block;
  padding: 0 10px;
  background: #1666B8;
  background: linear-gradient(90deg, rgb(22, 102, 184) 0%, rgb(62, 169, 218) 50%, rgb(36, 200, 219) 100%);
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #top-group .group-list-ttl {
    font-size: 1.5rem;
  }
}

/* =========================================

  sub layout  all

========================================= */
/* services  PC
------------------------------------ */
#services .services-list {
  margin: 57px auto 0;
}
#services .services-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#services .services-list-item:nth-of-type(n+2) {
  margin-top: 80px;
}
#services .services-list-item:nth-of-type(2n) {
  flex-direction: row-reverse;
}
@media screen and (min-width: 768px) {
  #services .services-list-con {
    max-width: 520px;
  }
}
#services .services-list-txt {
  margin-top: 25px;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  #services .services-list-txt {
    font-size: 1.5rem;
  }
}
#services .flow-list {
  display: flex;
  margin: 60px auto 0;
}
#services .flow-list li:nth-of-type(n+2) {
  margin-left: 53px;
  position: relative;
}
#services .flow-list li:nth-of-type(n+2)::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-color: transparent transparent transparent #1666b8;
  border-width: 9.5px 0px 9.5px 15px;
  position: absolute;
  left: -32px;
  top: 0;
  bottom: 0;
}
#services .flow-list-item {
  width: 110px;
  height: 435px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1666b8 0%, #1666b8 70px, #fff 70px, #fff 100%);
}
#services .flow-list-ttl {
  padding-top: 28px;
  text-align: center;
}
#services .flow-list-ttl-num {
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 3rem;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #services .flow-list-ttl-num {
    font-size: 1.5rem;
  }
}
#services .flow-list-ttl-ja {
  margin: 39px auto 0;
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 2.7rem;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #services .flow-list-ttl-ja {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  #services .flow-list-ttl-ja {
    width: 100%;
    writing-mode: vertical-rl;
    display: flex;
    align-items: center;
  }
}
#services .flow-list-ttl-ja .sm {
  font-size: 2.1rem;
}
@media screen and (max-width: 768px) {
  #services .flow-list-ttl-ja .sm {
    font-size: 1.5rem;
  }
}
#services .flow-chart {
  margin: 70px auto 0;
}
#services .flow-chart-item {
  background: #fff;
  border-radius: 7px;
  position: relative;
  overflow: hidden;
}
#services .flow-chart-item:nth-of-type(n+2) {
  margin: 50px auto 0;
}
#services .flow-chart-con {
  padding: 56px 60px 50px;
}
#services .flow-chart-num {
  width: 50px;
  height: 50px;
  background: #1666b8;
  text-align: center;
  border-radius: 7px 0 0 7px;
  line-height: 50px;
  font-family: "Lato-Bold", sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.02em;
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  #services .flow-chart-num {
    font-size: 1.5rem;
  }
}
#services .flow-chart-ttl {
  color: #1666b8;
  line-height: 1;
}
#services .flow-chart-ttl .en {
  font-family: "Lato-Bold", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  #services .flow-chart-ttl .en {
    font-size: 1.5rem;
  }
}
#services .flow-chart-ttl .ja {
  margin-top: 17px;
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 3.2rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  #services .flow-chart-ttl .ja {
    font-size: 1.6rem;
  }
}
#services .flow-chart-txt {
  margin-top: 30px;
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  #services .flow-chart-txt {
    font-size: 1.5rem;
  }
}
#services .flow-chart-txt-box p {
  font-size: 1.9rem;
}
@media screen and (max-width: 768px) {
  #services .flow-chart-txt-box p {
    font-size: 1.5rem;
  }
}
#services .flow-chart-txt-box p:nth-of-type(n+2) {
  margin-left: 30px;
}
#services .flow-chart-txt .sm {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  #services .flow-chart-txt .sm {
    font-size: 1.5rem;
  }
}
#services .flow-chart-img {
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  #services .flow-chart-img {
    width: 480px;
  }
  #services .flow-chart-img img {
    width: 100%;
    height: 100%;
    margin: auto;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}
#services .flow-chart-note {
  margin-top: 60px;
  padding-left: 20px;
  font-size: 2rem;
  line-height: 1.75;
  position: relative;
}
@media screen and (max-width: 768px) {
  #services .flow-chart-note {
    font-size: 1.5rem;
  }
}
#services .flow-chart-note::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
#services .attempt-list {
  margin: 60px auto 0;
}
#services .attempt-list-item:nth-of-type(n+2) {
  margin-top: 80px;
}
#services .attempt-list-box {
  margin: 30px auto 0;
  padding: 70px;
  border-radius: 6px;
  background: #ecf7fb;
}
#services .attempt-list-box .attempt-list-flx:nth-of-type(n+2) {
  margin-top: 40px;
}
#services .attempt-list-flx {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 768px) {
  #services .attempt-list-dl {
    max-width: 440px;
  }
}
#services .attempt-list-dl dt {
  padding-left: 20px;
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  color: #1666b8;
  line-height: 1.5;
  position: relative;
}
@media screen and (max-width: 768px) {
  #services .attempt-list-dl dt {
    font-size: 1.5rem;
  }
}
#services .attempt-list-dl dt::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #1666b8;
  border-radius: 2px;
  position: absolute;
  left: 0;
  top: 15px;
}
@media screen and (min-width: 768px) {
  #services .attempt-list-dl dt.sm {
    font-size: 2.1rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 768px) {
  #services .attempt-list-dl dt.sm {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  #services .attempt-list-dl dt.sm:before {
    top: 12px;
  }
}
#services .attempt-list-dl dd {
  margin-top: 10px;
  font-family: "NotoSansCJKjp-Medium", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #services .attempt-list-dl dd {
    font-size: 1.5rem;
  }
}
#services .attempt-list-dl dd .sm {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  #services .attempt-list-dl dd .sm {
    font-size: 1.5rem;
  }
}
#services .attempt-list-img {
  border-radius: 7px;
  overflow: hidden;
}
#services .attempt-note {
  margin-top: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  #services .attempt-note {
    font-size: 1.5rem;
  }
}

/* works  PC
------------------------------------ */
#works .com-works {
  margin: 60px auto 0;
}
#works .award {
  max-width: 1820px;
  margin: auto;
  border-bottom: 1px solid #c2d3d9;
}
#works .award-list {
  display: flex;
  margin: 40px auto 0;
  flex-wrap: wrap;
  align-items: center;
}
#works .award-list-item {
  width: 50%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #works .award-list-item:nth-of-type(n+3) {
    margin-top: 40px;
  }
}
#works .award .com-ttl01-en {
  font-size: 8rem;
}
@media screen and (max-width: 768px) {
  #works .award .com-ttl01-en {
    font-size: 4rem;
  }
}
#works .works-thumb {
  max-width: 700px;
  margin: 30px auto 0;
  text-align: center;
}
#works .works-flx {
  margin: 60px auto 0;
}
#works .works-flx-img {
  width: 250px;
  height: 250px;
  margin-right: 20px;
  flex-shrink: 0;
  position: relative;
}
#works .works-flx-txt {
  margin-top: 20px;
  white-space: pre-line;
}
#works .works-table-wrap {
  margin: 60px auto 0;
}
#works .works-imgs {
  margin: 60px auto 0;
}
#works .works-imgs-item {
  width: 49%;
  height: 0;
  padding-top: 49%;
  position: relative;
}
#works .works-imgs-item:nth-of-type(2n) {
  margin-left: 2%;
}
#works .works-imgs-item:nth-of-type(n+3) {
  margin-top: 2%;
}

/* recruit  PC
------------------------------------ */
#recruit .staff-list {
  display: flex;
  margin: 60px auto 0;
  flex-wrap: wrap;
}
#recruit .staff-list-item {
  width: 100%;
  max-width: 245px;
}
@media screen and (min-width: 768px) {
  #recruit .staff-list-item:not(:nth-of-type(4n-3)) {
    margin-left: 33px;
  }
  #recruit .staff-list-item:nth-of-type(n+5) {
    margin-top: 48px;
  }
}
#recruit .staff-list-img {
  width: 100%;
  height: 0;
  padding-top: 114.3%;
  position: relative;
}
#recruit .staff-list-img img {
  border-radius: 6px;
}
#recruit .staff-list-dl {
  margin: 30px auto 0;
}
#recruit .staff-list-dl::before {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  margin-bottom: 20px;
  border-radius: 2px;
  background: #1666b8;
}
#recruit .staff-list-dl div {
  display: flex;
}
#recruit .staff-list-dl div:nth-of-type(n+2) {
  margin-top: 15px;
}
#recruit .staff-list-dl dt, #recruit .staff-list-dl dd {
  line-height: 1.6;
}
#recruit .staff-list-dl dt {
  margin-right: 8px;
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  color: #1666b8;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #recruit .staff-list-dl dt {
    font-size: 1.5rem;
  }
}
#recruit .staff-list-dl dd {
  font-family: "NotoSansCJKjp-Medium", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  #recruit .staff-list-dl dd {
    font-size: 1.5rem;
  }
}
#recruit .recruit-tag {
  display: flex;
  margin: 60px auto 0;
  flex-wrap: wrap;
}
#recruit .recruit-tag li {
  width: 100%;
  max-width: 340px;
}
@media screen and (min-width: 768px) {
  #recruit .recruit-tag li:not(:nth-of-type(3n-2)) {
    margin-left: 30px;
  }
  #recruit .recruit-tag li:nth-of-type(n+4) {
    margin-top: 30px;
  }
}
#recruit .recruit-tag a {
  display: block;
  padding: 20px 40px 20px 20px;
  border-radius: 999px;
  background: url(../img/recruit/recruit-arw.png) no-repeat calc(100% - 20px) 50% #202122;
  text-align: center;
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #recruit .recruit-tag a {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  #recruit .recruit-tag a:hover {
    background-position-y: 60%;
  }
}
#recruit .recruit-list {
  margin: 80px auto 0;
}
#recruit .recruit-list-item:nth-of-type(n+2) {
  margin: 75px auto 0;
}
#recruit .recruit-table-wrap {
  margin: 34px auto 0;
}
#recruit .contact-box {
  display: flex;
  margin: 50px auto 0;
  padding: 30px 0;
  border-radius: 8px;
  background: #1666B8;
  background: linear-gradient(90deg, rgb(22, 102, 184) 0%, rgb(62, 169, 218) 50%, rgb(36, 200, 219) 100%);
  justify-content: center;
  align-items: center;
}
#recruit .contact-box li:nth-of-type(n+2) {
  margin-left: 45px;
  padding-left: 45px;
  border-left: 1px solid #c2d3d9;
}
#recruit .contact-box-tel {
  font-family: "Lato-Bold", sans-serif;
  font-size: 4rem;
  letter-spacing: 0.04em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #recruit .contact-box-tel {
    font-size: 2rem;
  }
}
#recruit .contact-box-tel-num {
  margin-left: 14px;
  font-size: 4.4rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  #recruit .contact-box-tel-num {
    font-size: 2.2rem;
  }
}
#recruit .contact-box-btn {
  max-width: 100%;
  width: 380px;
  height: 80px;
  padding-left: 15px;
  border-radius: 999px;
  text-align: center;
  line-height: 80px;
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  color: #1666b8;
  background: url(../img/recruit/arrow.png) no-repeat calc(100% - 30px) center, url(../img/recruit/contact-mail.png) no-repeat 78px center #fff;
}
@media screen and (max-width: 768px) {
  #recruit .contact-box-btn {
    font-size: 1.5rem;
  }
}

/* company  PC
------------------------------------ */
#company .greeting-flx {
  margin-top: 40px;
}
#company .greeting-flx-con {
  width: 100%;
}
@media screen and (min-width: 768px) {
  #company .greeting-flx-con {
    max-width: 560px;
  }
}
#company .greeting-txt {
  font-family: "ShipporiMinchoB1-SemiBold", serif;
}
#company .greeting-name {
  margin-top: 30px;
  text-align: right;
  font-family: "YujiSyuku-Regular", serif;
  font-size: 3.2rem;
  letter-spacing: 0.04em;
  color: #1666b8;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #company .greeting-name {
    font-size: 1.6rem;
  }
}
#company .greeting-name .sm {
  margin-right: 29px;
  font-family: "YujiSyuku-Regular", serif;
  font-size: 2.2rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  #company .greeting-name .sm {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  #company .greeting-img {
    transform: translateX(95px);
  }
}
#company .company {
  border-top: 1px solid #c2d3d9;
}
#company .company-table-wrap {
  margin: 50px auto 0;
}
#company .ggmap {
  margin: 60px auto 0;
}

/* contact  PC
------------------------------------ */
#contact .form-list {
  margin: 60px auto 0;
}
#contact .form-list-item:nth-of-type(n+2) {
  margin: 100px auto 0;
}
#contact .form-list-txt {
  margin: 30px auto 0;
}
#contact .form-list-box {
  display: flex;
  margin: 50px auto 0;
  padding: 30px 0;
  border-radius: 8px;
  background: #1666B8;
  background: linear-gradient(90deg, rgb(22, 102, 184) 0%, rgb(62, 169, 218) 50%, rgb(36, 200, 219) 100%);
  justify-content: center;
  align-items: center;
}
#contact .form-list-box li:nth-of-type(n+2) {
  margin-left: 45px;
  padding-left: 45px;
  border-left: 1px solid #c2d3d9;
}
#contact .form-list-box-tel {
  font-family: "Lato-Bold", sans-serif;
  font-size: 4rem;
  letter-spacing: 0.04em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #contact .form-list-box-tel {
    font-size: 2rem;
  }
}
#contact .form-list-box-tel-num {
  margin-left: 14px;
  font-size: 4.4rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  #contact .form-list-box-tel-num {
    font-size: 2.2rem;
  }
}
#contact .form-list-box-worktime {
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #contact .form-list-box-worktime {
    font-size: 1.5rem;
  }
}

/* blog  PC
------------------------------------ */
#news .com-news-time, #news .com-news-tag-txt {
  color: #1666b8;
}
#news .com-news-tag {
  border-color: #1666b8;
}

/* privacy  PC
------------------------------------ */
#privacy .privacy-box-ttl {
  line-height: 1.6;
}/*# sourceMappingURL=all.css.map */