@charset "UTF-8";
a,
button {
  color: black;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
a:hover,
button:hover {
  opacity: 0.5;
}

button {
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.btn-icon {
  width: 100%;
  max-width: 300px;
  margin: auto;
  padding: 100px 0;
}
.btn-icon a {
  padding: 30px;
  display: block;
  width: 100%;
  max-width: 400px;
  margin: auto;
}
.btn-icon a .line01 {
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
.btn-icon a:hover {
  opacity: 0.5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn-icon a:hover .line01 {
  -webkit-transform: scale(0.5, 1);
          transform: scale(0.5, 1);
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
  -webkit-transition: 0.3s 0.1s;
  transition: 0.3s 0.1s;
}
.btn-icon a:hover .circle {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: 0.3s 0.1s;
  transition: 0.3s 0.1s;
}
.btn-icon a .page-move {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.btn-icon a .page-move .to-top {
  font-size: 20px;
  font-weight: bold;
}

.icon__container {
  width: 20%;
  padding-bottom: 10px;
}
.icon__container .link-icon {
  position: relative;
}
.icon__container .link-icon .arrow-icon {
  position: relative;
  margin: 18px 13px 20px 0px;
  background: #04547d;
}
.icon__container .link-icon .arrow-icon .line01 {
  height: 1px;
  width: 55px;
  position: absolute;
  top: -3px;
  right: -33px;
  background-color: #04547d;
  -webkit-transition: 0.3s 0.1s;
  transition: 0.3s 0.1s;
}
.icon__container .link-icon .arrow-icon .line02 {
  position: absolute;
  top: -4px;
  right: 22px;
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  width: 6px;
  height: 1px;
  background-color: #04547d;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.icon__container .link-icon .circle-icon {
  position: absolute;
  top: -17px;
  right: 20px;
}
.icon__container .link-icon .circle-icon .circle {
  display: inline-block;
  width: 26px;
  height: 26px;
  line-height: 80px;
  border-radius: 50%;
  border: solid 1px #04547d;
  -webkit-transition: 0.3s 0.1s;
  transition: 0.3s 0.1s;
}

.to-top {
  color: #04547d;
  font-size: 20px;
}

.header__wrapper {
  position: relative;
}

.header-grid {
  width: 100%;
  height: 100vh;
  display: grid;
  grid-template-columns: 45vw 1fr 270px;
  grid-template-rows: 50% 50%;
  grid-template-areas: "buil  work  nav" "buil  type  type";
}
@media screen and (max-height: 620px) {
  .header-grid {
    height: 620px;
  }
}

div.buil {
  grid-area: buil;
  background-image: url(../img/top-buil.jpg);
  background-size: cover;
  background-position: center;
}

div.work {
  grid-area: work;
  background-image: url(../img/top-work.jpg);
  background-size: cover;
  background-position: center;
}

div.type {
  grid-area: type;
  background-image: url(../img/top-type-02.jpg);
  background-size: cover;
  background-position: center;
}

div.nav {
  grid-area: nav;
  background-color: #fff;
}

.header__container {
  position: absolute;
  width: 100%;
  top: 0;
}

header {
  background-color: rgba(4, 63, 92, 0.3137254902);
  position: relative;
  height: 100vh;
  left: 0;
  z-index: 1;
}

nav#g-nav {
  background-color: #f3f6f7;
  margin: 0 0 0 auto;
  width: 270px;
  height: 50vh;
  position: relative;
  z-index: 10;
}
@media screen and (max-height: 620px) {
  nav#g-nav {
    height: 310px;
  }
}

nav#g-nav div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40vh;
}
@media screen and (max-height: 620px) {
  nav#g-nav div {
    height: 85%;
  }
}

nav#g-nav h1 {
  height: 80px;
}

nav#g-nav img {
  width: 70px;
  position: relative;
  top: 7vh;
  left: 44%;
  -webkit-transform: translateY(0%) translateX(-50%);
          transform: translateY(0%) translateX(-50%);
}
@media screen and (max-height: 620px) {
  nav#g-nav img {
    top: 50%;
  }
}

nav#g-nav ul li {
  color: #04547d;
  margin: 20px 0px;
  padding-right: 20px;
  padding-left: 20px;
  position: relative;
}

header nav#g-nav span {
  position: absolute;
  opacity: 0;
  display: inline-block;
  bottom: 0;
  top: 0px;
  left: 20px;
  margin-right: 20px;
  padding-right: 20px;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

header nav#g-nav a {
  padding-left: 20px;
  color: #04547d;
  letter-spacing: 1px;
  font-weight: 700;
}

header nav#g-nav a:hover span {
  visibility: visible;
  opacity: 1;
  color: #04547d;
  cursor: pointer;
}

/*  ハンバーガーメニュー
-------------------------------- */
.drawer {
  display: block;
  top: 0;
  right: 0px;
  position: fixed;
  z-index: 999;
  color: #04547d;
  display: none;
}
@media screen and (max-width: 1000px) {
  .drawer {
    display: block;
  }
}
.drawer input[type=checkbox] {
  display: none;
}
.drawer .drawer-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 100;
  cursor: pointer;
  background-color: rgba(243, 246, 247, 0.8862745098);
  width: 70px;
  height: 70px;
}
.drawer .drawer-open .hm {
  width: 30px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.drawer .drawer-open .hm * {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #108FD3;
  border-radius: 9999px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.drawer .drawer-open p {
  line-height: 1;
  font-size: 10px;
  letter-spacing: 0px;
  color: #108FD3;
  margin-top: 5px;
}
.drawer .drawer-open .hm-inner {
  display: none;
}
.drawer .drawer-open--show-hm .hm-inner {
  display: block;
}
.drawer .drawer-open--show-hm img {
  display: none;
}
.drawer #drawer-check:checked ~ .drawer-open .hm *:nth-of-type(1) {
  -webkit-transform: translateY(8.5px) rotate(30deg);
          transform: translateY(8.5px) rotate(30deg);
}
.drawer #drawer-check:checked ~ .drawer-open .hm *:nth-of-type(2) {
  opacity: 0;
}
.drawer #drawer-check:checked ~ .drawer-open .hm *:nth-of-type(3) {
  -webkit-transform: translateY(-8.5px) rotate(-30deg);
          transform: translateY(-8.5px) rotate(-30deg);
}
.drawer .drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 99;
  background: #F3F6F7;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: left;
}
.drawer .drawer-content li:nth-of-type(2) {
  margin-top: 32px;
}
@media screen and (orientation: landscape) {
  .drawer .drawer-content li:nth-of-type(2) {
    margin-top: 15px;
  }
}
.drawer .drawer-content li:nth-of-type(n + 3) {
  margin-top: 34px;
}
@media screen and (orientation: landscape) {
  .drawer .drawer-content li:nth-of-type(n + 3) {
    margin-top: 26px;
  }
}
.drawer .drawer-content a {
  font-size: 18px;
  font-weight: 700;
  color: #04547D;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (orientation: landscape) {
  .drawer .drawer-content a {
    font-size: 16px;
  }
}
.drawer .drawer-content .logo {
  max-width: 135px;
  margin: 0 auto;
}
@media screen and (orientation: landscape) {
  .drawer .drawer-content .logo {
    max-width: 80px;
    margin: 0 auto;
  }
}
.drawer .drawer-content .logo img {
  width: 100%;
  height: auto;
}
.drawer .drawer-content li:nth-of-type(n + 2) a::before {
  content: "";
  display: inline-block;
  margin-right: 6px;
  width: 16px;
  height: 16px;
  background-color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.drawer .drawer-content li:nth-of-type(n + 2) a:hover {
  color: #6395AE;
}
.drawer .drawer-content li:nth-of-type(n + 2) a:hover::before {
  background-color: #6395AE;
}
.drawer #drawer-check:checked ~ .drawer-content {
  left: 0;
}

/* SVGアニメーション */
.svg-text,
.svg-box,
.svg-subtext {
  position: absolute;
  width: 100%;
  max-width: 488px;
  height: 488px;
  top: 20%;
  left: 20%;
  z-index: 2;
}

.st0 {
  fill: #fff;
  stroke: #fff;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke-dasharray: 2000;
  stroke-dashoffset: 0;
  -webkit-animation: hello 4s ease-in 0s;
  animation: hello 4s ease-in 0s;
}

.st1 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: none;
  stroke-width: 20;
  stroke-linecap: square;
  stroke-miterlimit: 10;
  -webkit-animation: hello 4s ease-in 0s;
  animation: hello 4s ease-in 0s;
  stroke: #fff;
  stroke-miterlimit: 10;
  stroke-dasharray: 2000;
  stroke-dashoffset: 0;
}

.st3 {
  fill: #fff;
  -webkit-animation: hello 4s ease-in 0s;
  animation: hello 4s ease-in 0s;
}

@-webkit-keyframes hello {
  0% {
    stroke-dashoffset: 2000;
    fill: transparent;
  }
  40% {
    stroke-dashoffset: 2000;
    fill: transparent;
  }
  50% {
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
form#mail_form dt span {
  display: inline-block;
  line-height: 28px;
  font-size: 12px;
  padding: 0 10px;
  margin-right: 8px;
}
form#mail_form dt span.required, form#mail_form dt span.optional {
  color: #fff;
}
form#mail_form dt span.required {
  background-color: #04547d;
}
form#mail_form dt span.optional {
  background-color: #515151;
}
form#mail_form dd span.error_blank, form#mail_form dd span.error_format, form#mail_form dd span.error_match {
  display: block;
  color: #ff0000;
  margin-top: 3px;
}

span.loading {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border-top: 5px solid rgba(255, 255, 255, 0.2);
  border-right: 5px solid rgba(255, 255, 255, 0.2);
  border-bottom: 5px solid rgba(255, 255, 255, 0.2);
  border-left: 5px solid #ffffff;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load-circle 1s linear infinite;
  animation: load-circle 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
}

@-webkit-keyframes load-circle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load-circle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
* {
  font-family: "Noto Sans JP", serif;
  color: #333;
  font-weight: 500;
}

a:hover {
  cursor: pointer;
  opacity: 0.5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.fl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.pc_appear {
  display: inline;
}

.sp_appear {
  display: none;
}

.pc_inline {
  display: inline;
}

.sp_inline {
  display: none;
}

.tab {
  display: none;
}

.tab_display {
  display: none;
}

#wrapper {
  position: relative;
}

.news {
  background-color: #04547d;
  padding: 80px 20px 240px;
}
.news .news__wrapper {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  position: relative;
}
.news .news__wrapper .section-title-bg {
  width: 400px;
  max-width: 500px;
}
.news .news__wrapper .section-title-bg img {
  width: 100%;
  height: auto;
}
.news .news__wrapper .news-content {
  position: absolute;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  color: #ffffff;
}
.news .news__wrapper .news-content .section-title {
  width: 25%;
}
.news .news__wrapper .news-content .section-title h2 {
  padding-top: 70px;
  padding-left: 45px;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 3px;
}
.news .news__wrapper .news-content .news-list {
  width: 75%;
  padding-top: 30px;
}
.news .news__wrapper .news-content .news-list .news-article {
  padding-bottom: 15px;
  border-bottom: solid 1px #ffffff;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.news .news__wrapper .news-content .news-list .news-article h3 {
  padding-right: 20px;
  color: #ffffff;
}
.news .news__wrapper .news-content .news-list .news-article h3::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(../img/news_list_rectangle.png) no-repeat;
  background-size: contain;
  margin-left: 10px;
}
.news .news__wrapper .news-content .news-list .news-article a {
  color: #ffffff;
  line-height: 2;
}
.news .news__wrapper .news-content .news-list .news-article a:first-line {
  line-height: 1;
}
.news .news__wrapper .news-content .news-list .news-article a:hover {
  opacity: 0.5;
}

@-moz-document url-prefix() {
  .news {
    padding: 80px 20px 320px;
  }
}
.introduction {
  padding: 150px 20px;
  background-image: url(../img/intro_bg.jpg);
  background-repeat: no-repeat;
  background-position: 200px 43%;
  background-size: 1900px;
  position: relative;
}
.introduction::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #f9f9f9;
  opacity: 0.8;
}
.introduction .introduction__wrapper {
  width: 100%;
  max-width: 850px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.introduction .introduction__wrapper .introduction__txt {
  width: 58%;
  position: relative;
  z-index: 3;
}
.introduction .introduction__wrapper .introduction__txt a {
  display: block;
}
.introduction .introduction__wrapper .introduction__txt a .line01 {
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
.introduction .introduction__wrapper .introduction__txt a:hover {
  opacity: 1;
}
.introduction .introduction__wrapper .introduction__txt a:hover .line01 {
  -webkit-transform: scale(0.5, 1);
          transform: scale(0.5, 1);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  -webkit-transition: 0.3s 0.1s;
  transition: 0.3s 0.1s;
}
.introduction .introduction__wrapper .introduction__txt a:hover .circle {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: 0.3s 0.1s;
  transition: 0.3s 0.1s;
}
.introduction .introduction__wrapper .introduction__txt a h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #04547d;
  line-height: 1.5;
  letter-spacing: 1px;
  padding-bottom: 20px;
}
.introduction .introduction__wrapper .introduction__txt a p {
  font-size: 18px;
  line-height: 1.8;
  padding-right: 10px;
}
.introduction .introduction__wrapper .introduction__txt a .icon__container {
  width: 20%;
  width: 20%;
  position: absolute;
  top: 90%;
  left: 70%;
}
.introduction .introduction__wrapper .introduction__txt a .icon__container .link-icon {
  position: relative;
}
.introduction .introduction__wrapper .introduction__txt a .icon__container .link-icon .arrow-icon {
  position: relative;
  margin: 18px 100px 20px 0;
  background: #04547d;
}
.introduction .introduction__wrapper .introduction__txt a .icon__container .link-icon .arrow-icon .line01 {
  height: 1px;
  width: 100px;
  position: absolute;
  top: -3px;
  right: -100px;
  background-color: #04547d;
  -webkit-transition: 0.3s 0.1s;
  transition: 0.3s 0.1s;
}
.introduction .introduction__wrapper .introduction__txt a .icon__container .link-icon .arrow-icon .line02 {
  position: absolute;
  top: -3px;
  right: -100px;
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  width: 8px;
  height: 1px;
  background-color: #04547d;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.introduction .introduction__wrapper .introduction__txt a .icon__container .link-icon .circle-icon {
  position: absolute;
  top: -22px;
  left: 80px;
}
.introduction .introduction__wrapper .introduction__txt a .icon__container .link-icon .circle-icon .circle {
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: solid 1px #04547d;
  -webkit-transition: 0.3s 0.1s;
  transition: 0.3s 0.1s;
}
.introduction .introduction__wrapper .introduction__img img {
  width: 100%;
  max-width: 330px;
  height: auto;
  position: relative;
  z-index: 3;
}

.introduction_tab {
  padding: 70px 20px;
  background-image: url(../img/intro_bg.jpg);
  background-repeat: no-repeat;
  background-position: 200px 43%;
  background-size: 1900px;
  position: relative;
}
.introduction_tab::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #f9f9f9;
  opacity: 0.8;
}
.introduction_tab .introduction__wrapper_tab {
  width: 100%;
  max-width: 600px;
  margin: auto;
}
.introduction_tab .introduction__wrapper_tab h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #04547d;
  line-height: 1.5;
  letter-spacing: 1px;
  padding-bottom: 20px;
  position: relative;
  z-index: 3;
}
.introduction_tab .introduction__wrapper_tab .introduction__img_tab {
  width: 100%;
  padding-bottom: 30px;
}
.introduction_tab .introduction__wrapper_tab .introduction__img_tab img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 3;
}
.introduction_tab .introduction__wrapper_tab .introduction__txt_tab a {
  display: block;
}
.introduction_tab .introduction__wrapper_tab .introduction__txt_tab a .line01 {
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
.introduction_tab .introduction__wrapper_tab .introduction__txt_tab a:hover {
  opacity: 1;
}
.introduction_tab .introduction__wrapper_tab .introduction__txt_tab a:hover .line01 {
  -webkit-transform: scale(0.5, 1);
          transform: scale(0.5, 1);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  -webkit-transition: 0.3s 0.1s;
  transition: 0.3s 0.1s;
}
.introduction_tab .introduction__wrapper_tab .introduction__txt_tab a:hover .circle {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: 0.3s 0.1s;
  transition: 0.3s 0.1s;
}
.introduction_tab .introduction__wrapper_tab .introduction__txt_tab a p {
  font-size: 18px;
  line-height: 1.8;
  padding-right: 30px;
  position: relative;
  z-index: 3;
}
.introduction_tab .introduction__wrapper_tab .introduction__txt_tab a .icon__container {
  width: 200px;
  position: absolute;
  top: 90%;
  position: relative;
  z-index: 3;
  margin: 0 0 0 auto;
}
.introduction_tab .introduction__wrapper_tab .introduction__txt_tab a .icon__container .link-icon {
  position: relative;
}
.introduction_tab .introduction__wrapper_tab .introduction__txt_tab a .icon__container .link-icon .arrow-icon {
  position: relative;
  margin: 18px 100px 20px 0;
  background: #04547d;
}
.introduction_tab .introduction__wrapper_tab .introduction__txt_tab a .icon__container .link-icon .arrow-icon .line01 {
  height: 1px;
  width: 100px;
  position: absolute;
  top: -1px;
  right: -3px;
  background-color: #04547d;
  -webkit-transition: 0.3s 0.1s;
  transition: 0.3s 0.1s;
}
.introduction_tab .introduction__wrapper_tab .introduction__txt_tab a .icon__container .link-icon .arrow-icon .line02 {
  position: absolute;
  top: -1px;
  right: -3px;
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  width: 8px;
  height: 1px;
  background-color: #04547d;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.introduction_tab .introduction__wrapper_tab .introduction__txt_tab a .icon__container .link-icon .circle-icon {
  position: absolute;
  top: -22px;
}
.introduction_tab .introduction__wrapper_tab .introduction__txt_tab a .icon__container .link-icon .circle-icon .circle {
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: solid 1px #04547d;
  -webkit-transition: 0.3s 0.1s;
  transition: 0.3s 0.1s;
}

.service {
  padding: 150px 20px;
  background-image: url(../img/service_bg_2.png);
  background-repeat: no-repeat;
  background-position: -100px -345px;
  background-size: cover;
  position: relative;
}
.service::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #f9f9f9;
  opacity: 0.8;
}
.service .service__wrapper {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  position: relative;
  z-index: 3;
}
.service .service__wrapper .service-img {
  width: 50%;
  margin: 0 0 100px auto;
  text-align: right;
}
.service .service__wrapper .service-img img {
  width: 98%;
  height: auto;
  position: relative;
  top: 1px;
}
.service .service__wrapper .section-title {
  position: absolute;
  right: 35%;
  top: 55px;
  z-index: 4;
}
.service .service__wrapper .section-title h2 {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
}
.service .service__wrapper .service__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.service .service__wrapper .service__container .trapezoid-1 {
  width: 100%;
  max-width: 55%;
  height: 284px;
  margin-left: 0%;
  background: #04547d;
  -webkit-clip-path: polygon(0% 100%, 0% 0%, 100% 0%, 75% 100%);
  clip-path: polygon(0% 100%, 0% 0%, 100% 0%, 79% 100%);
  margin-bottom: 20px;
  position: absolute;
  top: 40px;
  z-index: 3;
  padding: 60px 155px 0 50px;
}
.service .service__wrapper .service__container .trapezoid-1 .service-txt-area a {
  display: block;
}
.service .service__wrapper .service__container .trapezoid-1 .service-txt-area a .line01 {
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
.service .service__wrapper .service__container .trapezoid-1 .service-txt-area a:hover {
  opacity: 1;
}
.service .service__wrapper .service__container .trapezoid-1 .service-txt-area a:hover .line01 {
  -webkit-transform: scale(0.5, 1);
          transform: scale(0.5, 1);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  -webkit-transition: 0.3s 0.1s;
  transition: 0.3s 0.1s;
}
.service .service__wrapper .service__container .trapezoid-1 .service-txt-area a:hover .circle {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: 0.3s 0.1s;
  transition: 0.3s 0.1s;
}
.service .service__wrapper .service__container .trapezoid-1 .service-txt-area .service-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: solid 2px #ffffff;
  margin-bottom: 15px;
}
.service .service__wrapper .service__container .trapezoid-1 .service-txt-area .service-title h3 {
  color: #ffffff !important;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  width: 80%;
  letter-spacing: 1px;
}
.service .service__wrapper .service__container .trapezoid-1 .service-txt-area .service-title .icon__container {
  width: 20%;
}
.service .service__wrapper .service__container .trapezoid-1 .service-txt-area .service-title .icon__container .link-icon {
  position: relative;
}
.service .service__wrapper .service__container .trapezoid-1 .service-txt-area .service-title .icon__container .link-icon .arrow-icon {
  position: relative;
  margin: 18px 13px 20px 0px;
  background: #04547d;
}
.service .service__wrapper .service__container .trapezoid-1 .service-txt-area .service-title .icon__container .link-icon .arrow-icon .line01 {
  height: 1px;
  width: 55px;
  position: absolute;
  top: -3px;
  right: -2px;
  background-color: #ffffff;
  -webkit-transition: 0.3s 0.1s;
  transition: 0.3s 0.1s;
}
.service .service__wrapper .service__container .trapezoid-1 .service-txt-area .service-title .icon__container .link-icon .arrow-icon .line02 {
  position: absolute;
  top: -3px;
  right: -2px;
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  width: 6px;
  height: 1px;
  background-color: #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.service .service__wrapper .service__container .trapezoid-1 .service-txt-area .service-title .icon__container .link-icon .circle-icon {
  position: absolute;
  top: -17px;
  right: 0;
}
.service .service__wrapper .service__container .trapezoid-1 .service-txt-area .service-title .icon__container .link-icon .circle-icon .circle {
  display: inline-block;
  width: 26px;
  height: 26px;
  line-height: 80px;
  border-radius: 50%;
  border: solid 1px #ffffff;
  -webkit-transition: 0.3s 0.1s;
  transition: 0.3s 0.1s;
}
.service .service__wrapper .service__container .trapezoid-1 .service-txt-area .service-txt {
  color: #ffffff;
  line-height: 1.7;
  text-align: justify;
}
.service .service__wrapper .service__container .trapezoid-2 {
  width: 100%;
  max-width: 57%;
  height: 284px;
  margin-left: -100px;
  background: #515151;
  -webkit-clip-path: polygon(0% 100%, 25% 0%, 100% 0%, 100% 100%);
  clip-path: polygon(0% 100%, 20% 0%, 100% 0%, 100% 100%);
  margin-bottom: 20px;
  position: absolute;
  z-index: 3;
  top: 90px;
  right: 0;
  padding: 60px 70px 0 145px;
}
.service .service__wrapper .service__container .trapezoid-2 .service-txt-area a {
  display: block;
}
.service .service__wrapper .service__container .trapezoid-2 .service-txt-area a .line01 {
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
.service .service__wrapper .service__container .trapezoid-2 .service-txt-area a:hover {
  opacity: 1;
}
.service .service__wrapper .service__container .trapezoid-2 .service-txt-area a:hover .line01 {
  -webkit-transform: scale(0.5, 1);
          transform: scale(0.5, 1);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  -webkit-transition: 0.3s 0.1s;
  transition: 0.3s 0.1s;
}
.service .service__wrapper .service__container .trapezoid-2 .service-txt-area a:hover .circle {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: 0.3s 0.1s;
  transition: 0.3s 0.1s;
}
.service .service__wrapper .service__container .trapezoid-2 .service-txt-area .service-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: solid 2px #ffffff;
  margin-bottom: 15px;
}
.service .service__wrapper .service__container .trapezoid-2 .service-txt-area .service-title h3 {
  color: #ffffff !important;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  letter-spacing: 1px;
}
.service .service__wrapper .service__container .trapezoid-2 .service-txt-area .service-title .icon__container {
  width: 22%;
}
.service .service__wrapper .service__container .trapezoid-2 .service-txt-area .service-title .icon__container .link-icon {
  position: relative;
}
.service .service__wrapper .service__container .trapezoid-2 .service-txt-area .service-title .icon__container .link-icon .arrow-icon {
  position: relative;
  margin: 18px 13px 20px 0px;
  background: #04547d;
}
.service .service__wrapper .service__container .trapezoid-2 .service-txt-area .service-title .icon__container .link-icon .arrow-icon .line01 {
  height: 1px;
  width: 55px;
  position: absolute;
  top: -3px;
  right: -2px;
  background-color: #ffffff;
  -webkit-transition: 0.3s 0.1s;
  transition: 0.3s 0.1s;
}
.service .service__wrapper .service__container .trapezoid-2 .service-txt-area .service-title .icon__container .link-icon .arrow-icon .line02 {
  position: absolute;
  top: -3px;
  right: -2px;
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  width: 6px;
  height: 1px;
  background-color: #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.service .service__wrapper .service__container .trapezoid-2 .service-txt-area .service-title .icon__container .link-icon .circle-icon {
  position: absolute;
  top: -17px;
  right: 0;
}
.service .service__wrapper .service__container .trapezoid-2 .service-txt-area .service-title .icon__container .link-icon .circle-icon .circle {
  display: inline-block;
  width: 26px;
  height: 26px;
  line-height: 80px;
  border-radius: 50%;
  border: solid 1px #ffffff;
  -webkit-transition: 0.3s 0.1s;
  transition: 0.3s 0.1s;
}
.service .service__wrapper .service__container .trapezoid-2 .service-txt-area .service-txt {
  color: #ffffff;
  line-height: 1.7;
  text-align: justify;
}
.service .service__wrapper section.en-tenshoku-area {
  margin-top: 350px;
  background: #fff;
  padding: 50px 124px;
}
@media screen and (max-width: 1000px) {
  .service .service__wrapper section.en-tenshoku-area {
    margin-top: 650px;
  }
}
@media screen and (max-width: 600px) {
  .service .service__wrapper section.en-tenshoku-area {
    margin: 70px;
  }
}
.service .service__wrapper section.en-tenshoku-area a {
  display: block;
  width: 100%;
  height: 100%;
}
.service .service__wrapper section.en-tenshoku-area a .en-subtitle {
  font-size: 18px;
  font-weight: bold;
  color: #515151;
  margin-bottom: 7px;
}
.service .service__wrapper section.en-tenshoku-area a .en-upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  padding-bottom: 20px;
  border-bottom: solid 2px #04547D;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .service .service__wrapper section.en-tenshoku-area a .en-upper {
    display: block;
    padding-bottom: 0px;
  }
}
.service .service__wrapper section.en-tenshoku-area a .en-upper img {
  width: 330px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .service .service__wrapper section.en-tenshoku-area a .en-upper img {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 500px) {
  .service .service__wrapper section.en-tenshoku-area a .en-upper img {
    width: 95%;
    display: block;
    margin: 0 auto 20px;
  }
}
.service .service__wrapper section.en-tenshoku-area a .en-upper span {
  color: #04547D;
}
@media screen and (max-width: 768px) {
  .service .service__wrapper section.en-tenshoku-area a .en-upper span {
    display: block;
    text-align: right;
    padding-bottom: 3px;
  }
}
@media screen and (max-width: 500px) {
  .service .service__wrapper section.en-tenshoku-area a .en-upper span {
    font-size: 14px;
  }
}
.service .service__wrapper section.en-tenshoku-area a .en-lower h2.en-company-name {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  border-top: solid 1px rgba(0, 0, 0, 0);
}
@media screen and (max-width: 500px) {
  .service .service__wrapper section.en-tenshoku-area a .en-lower h2.en-company-name {
    font-size: 15px;
  }
}
.service .service__wrapper section.en-tenshoku-area a .en-lower .permission-number {
  font-size: 15px;
  color: #a9a8a8;
  margin-bottom: 20px;
  border-bottom: solid 1px rgba(0, 0, 0, 0);
}
@media screen and (max-width: 500px) {
  .service .service__wrapper section.en-tenshoku-area a .en-lower .permission-number {
    font-size: 10px;
  }
}
@media screen and (max-width: 500px) {
  .service .service__wrapper section.en-tenshoku-area a .en-lower .rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.service .service__wrapper section.en-tenshoku-area a .en-lower .rating .user-review {
  font-size: 16px;
  font-weight: bold;
  color: #666565;
  margin-right: 10px;
}
@media screen and (max-width: 500px) {
  .service .service__wrapper section.en-tenshoku-area a .en-lower .rating .user-review {
    font-size: 11px;
    margin-right: 0px;
  }
}
.service .service__wrapper section.en-tenshoku-area a .en-lower .rating .star {
  display: inline-block;
  color: #f80;
}
.service .service__wrapper section.en-tenshoku-area a .en-lower .rating .star:nth-of-type(n + 3) {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .service .service__wrapper section.en-tenshoku-area a .en-lower .rating .star:nth-of-type(n + 3) {
    margin-left: 13px;
  }
}
@media screen and (max-width: 500px) {
  .service .service__wrapper section.en-tenshoku-area a .en-lower .rating .star:nth-of-type(n + 3) {
    margin-left: 18px;
  }
}
.service .service__wrapper section.en-tenshoku-area a .en-lower .rating .star:nth-child(6) {
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .service .service__wrapper section.en-tenshoku-area a .en-lower .rating .star:nth-child(6) {
    margin-right: 12px;
  }
}
@media screen and (max-width: 500px) {
  .service .service__wrapper section.en-tenshoku-area a .en-lower .rating .star:nth-child(6) {
    margin-right: 5px;
  }
}
@media screen and (max-width: 500px) {
  .service .service__wrapper section.en-tenshoku-area a .en-lower .rating .fa-solid,
.service .service__wrapper section.en-tenshoku-area a .en-lower .rating .fas {
    width: 3px;
    font-size: 11px;
  }
  .service .service__wrapper section.en-tenshoku-area a .en-lower .rating .fa-regular,
.service .service__wrapper section.en-tenshoku-area a .en-lower .rating .far {
    font-size: 11px;
  }
}
.service .service__wrapper section.en-tenshoku-area a .en-lower .user-review {
  font-weight: bold;
  color: #666565;
}
@media screen and (max-width: 500px) {
  .service .service__wrapper section.en-tenshoku-area a .en-lower .user-review {
    font-size: 13px;
  }
}
.service .service__wrapper section.en-tenshoku-area a .en-lower .review-number {
  font-size: 23px;
  color: #f80;
  vertical-align: text-bottom;
}
@media screen and (max-width: 768px) {
  .service .service__wrapper section.en-tenshoku-area a .en-lower .review-number {
    font-size: 20px;
  }
}
@media screen and (max-width: 500px) {
  .service .service__wrapper section.en-tenshoku-area a .en-lower .review-number {
    font-size: 12px;
  }
}
.service .service__wrapper .en-tenshoku {
  width: 100%;
  max-width: 1000px;
  margin-top: 300px;
  background-color: #ffffff;
}
.service .service__wrapper .en-tenshoku .en-tenshoku-img {
  background-color: #ffffff;
}
.service .service__wrapper .en-tenshoku .en-tenshoku-img img {
  width: 100%;
  height: auto;
}
.service .service__wrapper .en-tenshoku .en-tenshoku-img img:hover {
  opacity: 0.5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.contact {
  background-color: #04547d;
  padding: 80px 0;
}
.contact .contact__wrapper {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  position: relative;
}
.contact .contact__wrapper a {
  display: block;
}
.contact .contact__wrapper a .line01 {
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
.contact .contact__wrapper a:hover {
  opacity: 1;
}
.contact .contact__wrapper a:hover .line01 {
  -webkit-transform: scale(0.5, 1);
          transform: scale(0.5, 1);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  -webkit-transition: 0.3s 0.1s;
  transition: 0.3s 0.1s;
}
.contact .contact__wrapper a:hover .circle {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: all 0.3s 0.1s ease-out;
  transition: all 0.3s 0.1s ease-out;
}
.contact .contact__wrapper a .contact-img {
  width: 50%;
}
.contact .contact__wrapper a .contact-img img {
  width: 100%;
  height: auto;
}
.contact .contact__wrapper a .contact__container {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.contact .contact__wrapper a .contact__container .section-title {
  width: 42%;
  text-align: center;
}
.contact .contact__wrapper a .contact__container .section-title h2 {
  font-size: 18px;
  color: #ffffff;
  font-weight: bold;
  letter-spacing: 1px;
}
.contact .contact__wrapper a .contact__container .contact-text {
  width: 38%;
  padding-left: 20px;
}
.contact .contact__wrapper a .contact__container .contact-text p {
  line-height: 1.5;
  color: #ffffff;
}
.contact .contact__wrapper a .icon__container {
  width: 20%;
  position: absolute;
  top: 50%;
  left: 52%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
}
.contact .contact__wrapper a .icon__container .link-icon {
  position: relative;
}
.contact .contact__wrapper a .icon__container .link-icon .arrow-icon {
  position: relative;
  margin: 18px 100px 20px 0;
  background: #04547d;
}
.contact .contact__wrapper a .icon__container .link-icon .arrow-icon .line01 {
  height: 1px;
  width: 100px;
  position: absolute;
  top: -3px;
  right: -2px;
  background-color: #ffffff;
  -webkit-transition: 0.3s 0.1s;
  transition: 0.3s 0.1s;
}
.contact .contact__wrapper a .icon__container .link-icon .arrow-icon .line02 {
  position: absolute;
  top: -3px;
  right: -2px;
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  width: 8px;
  height: 1px;
  background-color: #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.contact .contact__wrapper a .icon__container .link-icon .circle-icon {
  position: absolute;
  top: -22px;
  left: 80px;
}
.contact .contact__wrapper a .icon__container .link-icon .circle-icon .circle {
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: solid 1px #ffffff;
  -webkit-transition: 0.3s 0.1s;
  transition: 0.3s 0.1s;
}

.access {
  padding: 80px 20px;
  position: relative;
}
.access .access__wrapper {
  width: 100%;
  max-width: 1000px;
  margin: auto;
}
.access .access__wrapper .access-txt {
  line-height: 1.7;
}
.access .access__wrapper .access-txt .company-name {
  font-size: 22px;
  font-weight: 600;
  color: #333333;
  letter-spacing: 1px;
}
.access .map {
  width: 57%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (min-width: 1000px) {
  #scroll-appear {
    display: none !important;
  }
}
@media screen and (max-width: 1000px) {
  .pc {
    display: none;
  }

  .tab {
    display: block;
  }

  .tab-logo {
    text-align: right;
  }
  .tab-logo img {
    width: 70px;
    height: auto;
  }

  .fadeDown {
    -webkit-animation-name: fadeDownAnime;
            animation-name: fadeDownAnime;
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    opacity: 0;
    display: block;
  }

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

  @keyframes fadeDownAnime {
    from {
      opacity: 0;
      -webkit-transform: translateY(-100px);
              transform: translateY(-100px);
    }
    to {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  /*.doneクラスがついたヘッダー*/
  #tab-logo.dnone {
    opacity: 0;
    /*透過0にして非表示に*/
  }

  /*========= ナビゲーションのためのCSS ===============*/
  #sp_nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    background: #f3f6f7;
    /*動き*/
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    text-align: center;
    padding-top: 120px;
  }

  #sp_nav img {
    padding-top: 20px;
    width: 80px;
  }

  /*アクティブクラスがついたら位置を0に*/
  #sp_nav.panelactive {
    right: 0;
  }

  .header-grid {
    width: 100%;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 50% 50%;
    grid-template-areas: "buil  work" "buil  type";
  }

  .svg__wrapper {
    width: 100%;
    height: 100vh;
    position: relative;
  }

  .svg__container {
    position: absolute;
    width: 100%;
    max-width: 400px;
    height: 400px;
    top: 50%;
    left: 48%;
    -webkit-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
  }

  .svg-text,
.svg-box,
.svg-subtext {
    width: 100%;
    max-width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
  }

  .news {
    text-align: center;
    padding: 80px 20px;
  }
  .news .news__wrapper .section-title-bg {
    width: 100%;
    max-width: 500px;
    margin: auto;
  }
  .news .news__wrapper .section-title-bg img {
    width: 70%;
  }
  .news .news__wrapper .news-content {
    position: static;
    display: block;
    width: 100%;
    max-width: 700px;
    margin: auto;
  }
  .news .news__wrapper .news-content .section-title {
    width: 100%;
    max-width: 700px;
    position: absolute;
    top: 35px;
  }
  .news .news__wrapper .news-content .section-title h2 {
    padding-top: 20px;
    padding-left: 0;
  }
  .news .news__wrapper .news-content .news-list {
    width: 100%;
    max-width: 550px;
    padding-top: 30px;
    margin: auto;
  }
  .news .news__wrapper .news-content .news-list .news-article h4 {
    width: 30%;
    padding-right: 0;
  }
  .news .news__wrapper .news-content .news-list .news-article a {
    width: 70%;
    text-align: left;
  }
  .news .news__wrapper .news-content .news-list .news-article a a {
    line-height: 2.5;
  }
  .news .news__wrapper .news-content .news-list .news-article a a::first-line {
    line-height: 1;
  }

  .introduction_tab {
    background-position: 35% 45%;
    background-size: 2300px;
    position: relative;
  }

  .introduction_tab .introduction__wrapper_tab .introduction__txt_tab a .icon__container .link-icon .arrow-icon .line02 {
    top: -3px;
    right: -64px;
  }

  .introduction_tab .introduction__wrapper_tab .introduction__txt_tab a .icon__container .link-icon .arrow-icon .line01 {
    top: -3px;
    right: -64px;
  }

  .service {
    background-position: -60px 490px;
    background-size: 120%;
    padding: 150px 0px 0px;
  }

  .service .service__wrapper .service-img {
    margin: auto;
  }

  .service .service__wrapper .section-title {
    text-align: center;
    position: absolute;
    top: 6%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
  }

  .service .service__wrapper .service__container .trapezoid-1 {
    padding: 60px 135px 50px 65px;
    width: 100%;
    max-width: 550px;
    top: 385px;
    height: initial;
  }

  .service .service__wrapper .service__container .trapezoid-2 {
    padding: 65px 65px 50px 140px;
    width: 100%;
    max-width: 535px;
    height: initial;
    margin-left: -100px;
    background: #515151;
    -webkit-clip-path: polygon(0% 100%, 25% 0%, 100% 0%, 100% 100%);
            clip-path: polygon(0% 100%, 25% 0%, 100% 0%, 100% 100%);
    margin-bottom: 20px;
    position: absolute;
    z-index: 3;
    top: 90px;
    right: 0;
  }

  .service .service__wrapper .en-tenshoku {
    margin-top: 630px;
  }

  .contact .contact__wrapper .contact-img {
    width: 50%;
    margin: auto;
  }

  .contact .contact__wrapper a .contact__container {
    position: static;
    top: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    text-align: initial;
    display: block;
  }
  .contact .contact__wrapper a .contact__container .section-title {
    width: 55%;
    text-align: center;
    margin: auto;
    position: absolute;
    top: 50px;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
  }

  .contact .contact__wrapper a .icon__container {
    width: 200px;
    margin: auto;
    left: 54%;
  }
  .contact .contact__wrapper a .icon__container .link-icon .arrow-icon .line01 {
    top: 19px;
    width: 110px;
    right: -14px;
  }
  .contact .contact__wrapper a .icon__container .link-icon .arrow-icon .line02 {
    top: 19px;
    width: 10px;
    right: -14px;
  }
  .contact .contact__wrapper a .icon__container .link-icon .circle-icon {
    position: static;
    text-align: right;
    padding-right: 70px;
  }

  .contact-text {
    width: 45%;
    padding-left: 0px;
    margin: auto;
    padding-top: 50px;
  }
  .contact-text p {
    text-align: center;
    padding-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }

  .sp_appear {
    display: none;
  }

  .pc_inline {
    display: none;
  }

  .sp_inline {
    display: inline;
  }

  .news {
    background-color: #04547d;
    padding: 60px 20px;
  }
  .news .section-title h2 {
    font-size: 18px;
    padding-top: 20px;
    padding-left: 0;
  }

  .introduction {
    padding: 80px 20px;
  }
  .introduction .introduction__wrapper {
    display: block;
  }
  .introduction .introduction__wrapper .introduction__txt {
    width: 100%;
    padding-bottom: 20px;
    display: block;
  }
  .introduction .introduction__wrapper .introduction__txt h2 {
    font-size: 24px;
  }
  .introduction .introduction__wrapper .introduction__img {
    text-align: center;
  }

  .service {
    padding: 100px 0px 0px;
  }
  .service .service__wrapper .service-img {
    width: 100%;
    max-width: 500px;
    padding: 0 30px;
    margin: 0 auto;
    text-align: center;
  }
  .service .service__wrapper .service-img img {
    z-index: 10;
    top: 2px;
  }
  .service .service__wrapper .section-title {
    position: absolute;
    text-align: center;
    width: 100%;
    top: 45px;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
  }
  .service .service__wrapper .service__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .service .service__wrapper .en-tenshoku {
    width: 100%;
    max-width: 768px;
  }
  .service .service__wrapper .en-tenshoku img {
    width: 100%;
  }

  .contact .contact__wrapper a .contact__container .section-title {
    top: 30px;
  }

  .contact .contact__wrapper a .contact__container .contact-text {
    width: 100%;
  }
  .contact .contact__wrapper a .contact__container .contact-text p {
    text-align: center;
    padding-top: 50px;
    letter-spacing: 0.5px;
  }

  .contact .contact__wrapper a .icon__container .link-icon .arrow-icon .line01 {
    top: 19px;
    width: 110px;
    right: -28px;
  }

  .contact .contact__wrapper a .icon__container .link-icon .arrow-icon .line02 {
    top: 19px;
    width: 10px;
    right: -28px;
  }

  .contact .contact__wrapper a .icon__container .link-icon .circle-icon {
    position: static;
    text-align: right;
    padding-right: 55px;
  }

  #wrapper .access {
    padding: 70px 0px 0px;
    position: static;
  }
  #wrapper .access .access__wrapper .access-txt {
    line-height: 1.7;
    text-align: center;
    padding-bottom: 70px;
  }
  #wrapper .access .map {
    width: 100%;
    height: 300px;
    position: static;
    top: 0;
    right: 0;
  }
}
@media screen and (max-width: 600px) {
  .service {
    padding: 100px 0px 0px;
  }

  .service .service__wrapper .service__container .trapezoid-2 {
    padding: 65px 65px 50px 65px;
    width: 100%;
    max-width: initial;
    height: initial;
    margin-left: initial;
    background: #515151;
    -webkit-clip-path: initial;
    clip-path: initial;
    margin-bottom: 0px;
    position: static;
    z-index: 3;
    top: 90px;
    right: 0;
  }

  .service .service__wrapper .service__container .trapezoid-1 {
    padding: 65px 65px 50px 65px;
    width: 100%;
    max-width: initial;
    top: 385px;
    position: static;
    height: initial;
    -webkit-clip-path: initial;
            clip-path: initial;
  }

  .service .service__wrapper .en-tenshoku {
    margin-top: 60px;
  }

  .service .service__wrapper section.en-tenshoku-area {
    padding: 40px 17px;
    margin: 50px 30px 0px;
  }
}
@media screen and (max-width: 500px) {
  .pc_appear {
    display: none;
  }

  .sp_appear {
    display: inline;
  }

  .sp {
    display: block;
  }

  .btn-icon {
    padding: 70px 0;
  }

  .svg-text,
.svg-box,
.svg-subtext {
    padding-right: 0;
    max-width: 300px;
    height: 300px;
    margin: 0 10px;
    top: 50%;
    left: 49%;
    -webkit-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
  }

  .news .news__wrapper .news-content .section-title {
    top: 10px;
  }

  .news .news__wrapper .news-content .news-list .news-article {
    display: block;
    text-align: left;
  }
  .news .news__wrapper .news-content .news-list .news-article h4 {
    width: 100%;
    padding-bottom: 10px;
  }
  .news .news__wrapper .news-content .news-list .news-article a {
    width: 100%;
    line-height: 2;
  }
  .news .news__wrapper .news-content .news-list .news-article a::first-line {
    line-height: initial;
  }

  .news .news__wrapper .section-title-bg img {
    width: 60%;
  }

  .news .news__wrapper .news-content .section-title h2 {
    padding-top: 15px;
  }

  .introduction_tab {
    padding: 60px 20px;
    background-position: 44% 38%;
    background-size: 2300px;
    position: relative;
  }
  .introduction_tab .introduction__wrapper_tab h2 {
    font-size: 24px;
    padding-bottom: 10px;
  }
  .introduction_tab .introduction__wrapper_tab .introduction__img_tab {
    padding-bottom: 10px;
  }
  .introduction_tab .introduction__wrapper_tab .introduction__txt_tab a p {
    font-size: 16px;
    padding-right: 0px;
  }
  .introduction_tab .introduction_tab .introduction__wrapper_tab .introduction__txt_tab a .icon__container .link-icon .arrow-icon {
    position: relative;
    margin: 18px 70px 20px 0px;
    background: #04547d;
  }
  .introduction_tab .introduction__wrapper_tab .introduction__txt_tab .icon__container .link-icon .arrow-icon {
    position: relative;
    padding-left: 60%;
    margin: 30px 25px 30px 30px;
  }

  .introduction .introduction__wrapper .introduction__txt a .icon__container .link-icon .arrow-icon {
    position: relative;
    padding-left: 50%;
    margin: 30px;
  }

  .introduction_tab .introduction__wrapper_tab .introduction__txt_tab a .icon__container .link-icon .arrow-icon .line01 {
    height: 1px;
    width: 100px;
    position: absolute;
    top: -2px;
    right: -54px;
    background-color: #04547d;
    -webkit-transition: 0.3s 0.1s;
    transition: 0.3s 0.1s;
  }

  .introduction_tab .introduction__wrapper_tab .introduction__txt_tab a .icon__container .link-icon .arrow-icon .line02 {
    position: absolute;
    top: -2px;
    right: -54px;
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    width: 8px;
    height: 1px;
    background-color: #04547d;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .introduction_tab .introduction__wrapper_tab .introduction__txt_tab .icon__container .link-icon .circle-icon {
    right: 10px;
  }

  .introduction_tab .introduction__wrapper_tab .introduction__txt_tab a .icon__container {
    width: 200px;
    position: fixed;
    top: 90%;
    left: 0%;
    position: relative;
    z-index: 3;
    margin: 0 0 0 auto;
  }

  .service {
    padding: 70px 0px 70px;
    background-position: -22px 300px;
  }
  .service .service__wrapper .service__container .trapezoid-2 {
    max-width: 100%;
    margin-bottom: 0;
    padding: 50px 20px;
  }
  .service .service__wrapper .service__container .trapezoid-2 .service-txt-area .service-title {
    font-size: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .service .service__wrapper .service__container .trapezoid-2 .service-txt-area .service-title h3 {
    padding-bottom: 5px;
    font-size: 20px;
    width: 80%;
  }
  .service .service__wrapper .service__container .trapezoid-2 .service-txt-area .service-title .icon__container {
    width: 20%;
  }
  .service .service__wrapper .service__container .trapezoid-2 .service-txt-area .service-title .icon__container .link-icon .arrow-icon .line01 {
    width: 43px;
    top: -5px;
    right: -3px;
  }
  .service .service__wrapper .service__container .trapezoid-2 .service-txt-area .service-title .icon__container .link-icon .arrow-icon {
    margin: 18px 23px 20px 0px;
  }
  .service .service__wrapper .service__container .trapezoid-2 .service-txt-area .service-title .icon__container .link-icon .arrow-icon .line02 {
    top: -5px;
    right: -3px;
  }
  .service .service__wrapper .service__container .trapezoid-2 .service-txt-area .service-title .icon__container .link-icon .circle-icon {
    right: 10px;
  }
  .service .service__wrapper .service__container .trapezoid-2 .service-txt-area .service-title .icon__container .link-icon .circle-icon .circle {
    width: 22px;
    height: 22px;
  }
  .service .service__wrapper .service__container .trapezoid-1 {
    max-width: 100%;
    margin-bottom: 0;
    padding: 50px 20px;
  }
  .service .service__wrapper .service__container .trapezoid-1 .service-txt-area .service-title {
    font-size: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .service .service__wrapper .service__container .trapezoid-1 .service-txt-area .service-title h3 {
    padding-bottom: 5px;
    font-size: 20px;
    width: 80%;
  }
  .service .service__wrapper .service__container .trapezoid-1 .service-txt-area .service-title .icon__container {
    width: 20%;
  }
  .service .service__wrapper .service__container .trapezoid-1 .service-txt-area .service-title .icon__container .link-icon .arrow-icon .line01 {
    width: 43px;
    top: -5px;
    right: -3px;
  }
  .service .service__wrapper .service__container .trapezoid-1 .service-txt-area .service-title .icon__container .link-icon .arrow-icon {
    margin: 18px 23px 20px 0px;
  }
  .service .service__wrapper .service__container .trapezoid-1 .service-txt-area .service-title .icon__container .link-icon .arrow-icon .line02 {
    top: -5px;
    right: -3px;
  }
  .service .service__wrapper .service__container .trapezoid-1 .service-txt-area .service-title .icon__container .link-icon .circle-icon {
    right: 10px;
  }
  .service .service__wrapper .service__container .trapezoid-1 .service-txt-area .service-title .icon__container .link-icon .circle-icon .circle {
    width: 22px;
    height: 22px;
  }
  .service .service__wrapper .section-title {
    top: 35px;
  }
  .service .service .service__wrapper .service-img img {
    top: 18px;
  }
  .service .service__wrapper .en-tenshoku {
    background: initial;
    margin-top: 70px;
  }
  .service .service__wrapper .en-tenshoku .en-tenshoku-img {
    background: #ffffff;
    margin: 0 20px;
  }
  .service .service__wrapper .en-tenshoku .en-tenshoku-img img {
    width: 100%;
    max-width: 485px;
    height: auto;
    padding: 0 20px;
  }
  .service .service__wrapper .en-tenshoku .en-tenshoku-img img:hover {
    opacity: 0.5;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }

  .contact .contact__wrapper a .contact-img {
    width: 90%;
  }

  .contact .contact__wrapper a .icon__container {
    top: 85px;
  }

  .contact .contact__wrapper a .contact__container .section-title {
    top: 30px;
  }
}
@media (orientation: landscape) and (max-width: 768px) {
  .svg-text,
.svg-box,
.svg-subtext {
    max-width: 250px;
    height: 250px;
    top: 55%;
  }
}
.pc_view {
  display: inline;
}

.sp_veiew {
  display: none;
}

.agent-header {
  background-color: rgba(4, 63, 92, 0.3137254902);
  position: relative;
  height: 50vh;
  left: 0;
  z-index: 1;
}
@media screen and (max-height: 620px) {
  .agent-header {
    height: 310px;
  }
}

.agent-header-grid {
  width: 100%;
  height: 50vh;
  display: grid;
  grid-template-columns: 1fr 270px;
  grid-template-rows: 100%;
  grid-template-areas: "agent nav";
}
@media screen and (max-height: 620px) {
  .agent-header-grid {
    height: 310px;
  }
}

div.agent {
  grid-area: agent;
  background-image: url(../img/pc-agent-head-02.jpg);
  background-size: cover;
  background-position: 50% 10%;
}

.buisiness {
  background-color: #04547d;
  padding: 80px 20px 70px;
}
.buisiness .buisiness__wrapper {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  position: relative;
}
.buisiness .buisiness__wrapper .section-title-bg {
  width: 100%;
  max-width: 650px;
  margin: auto;
}
.buisiness .buisiness__wrapper .section-title-bg img {
  width: 100%;
  height: auto;
}
.buisiness .buisiness__wrapper .buisiness-content {
  position: absolute;
  top: 0;
  display: -ms-flexbox;
  width: 100%;
  color: #ffffff;
}
.buisiness .buisiness__wrapper .buisiness-content .section-title {
  width: 400px;
  text-align: center;
  margin: auto;
}
.buisiness .buisiness__wrapper .buisiness-content .section-title h2 {
  padding-top: 55px;
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 3px;
}
.buisiness .buisiness__wrapper .buisiness-intro-text {
  text-align: center;
  padding-top: 30px;
}
.buisiness .buisiness__wrapper .buisiness-intro-text p {
  color: #ffffff;
  line-height: 1.7;
}

main {
  background: #F9F9F9;
}
main .flow {
  padding: 85px 0 0;
}
main .flow .flow-wrapper {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: auto;
}
main .flow .flow-wrapper .title-img {
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}
main .flow .flow-wrapper .title-img img {
  width: 300px;
}
main .flow .flow-wrapper .title-img h2 {
  font-size: 30px;
  font-weight: bold;
  color: #04547D;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(0%) translateX(-50%);
          transform: translateY(0%) translateX(-50%);
}
main .flow .flow-container {
  width: 100%;
  max-width: 800px;
  margin: auto;
  position: relative;
}
main .flow .flow-container .trapezoid-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  height: 200px;
}
main .flow .flow-container .trapezoid-container .flow-trapezoid-1 {
  width: 450px;
  height: 200px;
  background: #ffb7b7;
  -webkit-clip-path: polygon(0% 100%, 0% 0%, 100% 0%, 79% 100%);
          clip-path: polygon(0% 100%, 0% 0%, 100% 0%, 79% 100%);
  position: absolute;
  left: 0;
  margin-right: 0;
}
main .flow .flow-container .trapezoid-container .flow-trapezoid-1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: top;
}
main .flow .flow-container .trapezoid-container .flow-trapezoid-2 {
  width: 450px;
  height: 200px;
  background: #fff;
  -webkit-clip-path: polygon(0% 100%, 20% 0%, 100% 0%, 100% 100%);
          clip-path: polygon(0% 100%, 20% 0%, 100% 0%, 100% 100%);
  position: absolute;
  right: 0;
  margin-left: -100px;
  padding: 50px 20px 50px 135px;
  line-height: 1.5;
  letter-spacing: 1px;
}
main .flow .flow-container .trapezoid-container .flow-trapezoid-2 .flow-sub-title h3 {
  font-size: 20px;
  font-weight: bold;
  color: #04547D;
  padding-bottom: 12px;
}
main .flow .flow-container .trapezoid-container .flow-trapezoid-2 p {
  line-height: 1.5;
  letter-spacing: 1;
}
main .flow .flow-container .trapezoid-container .flow-trapezoid-2 p a {
  color: #04547D;
  text-decoration: underline;
  font-weight: bold;
}
main .flow .flow-container .trapezoid-container img.step {
  width: 120px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
}
main .flow .flow-container .flow-arrow {
  padding: 14px 0;
  text-align: center;
}
main .flow .flow-container .flow-arrow img {
  width: 22px;
  opacity: 50%;
}
main .flow .flow-container .flow-arrow .mga {
  margin: auto;
}

.box26 {
  position: relative;
  margin: 2em 0;
  padding: 50px 30px 35px 75px;
  border: solid 10px #04547d;
  width: 100%;
  max-width: 800px;
  margin: auto;
  position: relative;
}
.box26 h2 {
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 10px;
  line-height: 1.5;
}
.box26 p {
  margin: 0;
  padding: 0;
  line-height: 1.8;
  letter-spacing: 1;
  text-align: justify;
}
.box26 .merit-icon {
  background-color: #E5E5E5;
}
.box26 .merit-icon img {
  width: 130px;
  height: auto;
  position: absolute;
  top: 55px;
  left: -70px;
  z-index: 2;
}
.box26 .box {
  background-color: #f9f9f9;
  width: 30px;
  height: 60px;
  position: absolute;
  top: 30px;
  left: -20px;
}

.archive-link {
  padding: 20px;
  margin-top: 70px;
}
.archive-link a {
  padding: 30px;
  display: block;
  width: 100%;
  max-width: 400px;
  margin: auto;
}
.archive-link a:hover {
  opacity: 0.5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.archive-link a:hover .line01 {
  -webkit-transform: scale(0.5, 1);
          transform: scale(0.5, 1);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  -webkit-transition: 0.3s 0.1s;
  transition: 0.3s 0.1s;
}
.archive-link a:hover .circle {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: 0.3s 0.1s;
  transition: 0.3s 0.1s;
}
.archive-link a .recruit-archive {
  text-align: center;
  width: 100%;
  max-width: 300px;
  margin: 33px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.archive-link a .recruit-archive .to-archive {
  font-size: 20px;
  font-weight: bold;
  color: #04547D;
  padding-top: 5px;
}
.archive-link a .recruit-archive .icon__container {
  width: 20%;
  padding-bottom: 10px;
}
.archive-link a .recruit-archive .icon__container .link-icon {
  position: relative;
}
.archive-link a .recruit-archive .icon__container .link-icon .arrow-icon {
  position: relative;
  margin: 18px 13px 20px 0px;
  background: #04547d;
}
.archive-link a .recruit-archive .icon__container .link-icon .arrow-icon .line01 {
  height: 1px;
  width: 55px;
  position: absolute;
  top: -3px;
  right: -4px;
  background-color: #04547d;
  -webkit-transition: 0.3s 0.1s;
  transition: 0.3s 0.1s;
}
.archive-link a .recruit-archive .icon__container .link-icon .arrow-icon .line02 {
  position: absolute;
  top: -3px;
  right: -3px;
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  width: 6px;
  height: 1px;
  background-color: #04547d;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.archive-link a .recruit-archive .icon__container .link-icon .circle-icon {
  position: absolute;
  top: -17px;
  right: 0;
}
.archive-link a .recruit-archive .icon__container .link-icon .circle-icon .circle {
  display: inline-block;
  width: 26px;
  height: 26px;
  line-height: 80px;
  border-radius: 50%;
  border: solid 1px #04547d;
  -webkit-transition: 0.3s 0.1s;
  transition: 0.3s 0.1s;
}

@media screen and (max-width: 1000px) {
  .agent-header-grid {
    grid-template-columns: 1fr;
  }

  .box26 .merit-icon img {
    top: 0%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
  }

  .box26 {
    padding: 90px 25px 50px;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }

  .pc_view {
    display: none;
  }

  .sp_veiew {
    display: inline;
  }

  main .flow {
    margin-top: 0;
    padding: 70px 20px 0px;
  }
  main .flow .flow-wrapper .flow-container .trapezoid-container {
    display: block;
    -webkit-box-pack: none;
    -ms-flex-pack: center;
        justify-content: center;
    position: relative;
    height: 100%;
  }
  main .flow .flow-wrapper .flow-container .trapezoid-container .flow-trapezoid-1 {
    width: 100%;
    height: 200px;
    background: #ffb7b7;
    -webkit-clip-path: initial;
    clip-path: initial;
    position: static;
    left: 0;
    margin-right: 0;
  }
  main .flow .flow-wrapper .flow-container .trapezoid-container .flow-trapezoid-2 {
    width: 100%;
    max-width: 768px;
    height: 200px;
    background: #fff;
    -webkit-clip-path: initial;
    clip-path: initial;
    position: static;
    right: 0;
    margin-left: 0;
    padding: 60px 80px 50px 80px;
  }
}
@media screen and (max-width: 500px) {
  .buisiness {
    background-color: #04547d;
    padding: 70px 20px 70px;
  }
  .buisiness .buisiness__wrapper .buisiness-intro-text {
    text-align: left;
  }
  .buisiness .buisiness__wrapper .buisiness-intro-text p {
    width: 100%;
    max-width: 500px;
    margin: auto;
    line-height: 1.7;
    text-align: justify;
  }
  .buisiness .buisiness__wrapper .buisiness-content .section-title {
    width: 100%;
    max-width: 400px;
    text-align: center;
    margin: auto;
  }
  .buisiness .buisiness__wrapper .buisiness-content .section-title h2 {
    padding-top: 15px;
    font-size: 20px;
  }

  main .flow .flow-wrapper .title-img {
    padding-top: 70px;
  }
  main .flow .flow-wrapper .title-img img {
    width: 200px;
    height: auto;
  }

  main .flow {
    margin-top: 0;
    padding: 0px 20px;
  }

  main .flow {
    padding: 0px 20px;
  }
  main .flow .flow-wrapper .title-img h2 {
    font-size: 20px;
    top: 67%;
    width: 200px;
  }

  main .flow .flow-container .flow-arrow {
    padding: 14px 0;
    text-align: center;
  }

  main .flow .flow-container .trapezoid-container img.step {
    top: 33%;
  }

  main .flow .flow-wrapper .flow-container .trapezoid-container .flow-trapezoid-1 {
    height: 120px;
  }

  main .flow .flow-wrapper .flow-container .trapezoid-container .flow-trapezoid-2 {
    height: auto;
    padding: 40px 20px;
  }

  .archive-link {
    padding: 30px 20px 0;
  }
  .archive-link a {
    padding: 30px 0;
  }
  .archive-link a .recruit-archive {
    display: block;
  }
  .archive-link a .recruit-archive .icon__container {
    margin: auto;
  }
  .archive-link a .recruit-archive .to-archive {
    padding-bottom: 10px;
  }

  .contact .contact__wrapper a .icon__container .link-icon .circle-icon {
    padding-right: 45px;
  }

  .contact .contact__wrapper a .icon__container .link-icon .arrow-icon .line01 {
    right: -39px;
  }

  .contact .contact__wrapper a .icon__container .link-icon .arrow-icon .line02 {
    right: -39px;
  }

  .contact .contact__wrapper a .icon__container .link-icon .arrow-icon .line01 {
    width: 120px;
  }
}
.company-br-sp {
  display: none;
}

.company-header-grid {
  width: 100%;
  height: 50vh;
  display: grid;
  grid-template-columns: 1fr 270px;
  grid-template-rows: 100%;
  grid-template-areas: "agent nav";
}
@media screen and (max-height: 620px) {
  .company-header-grid {
    height: 310px !important;
  }
}

.company-header {
  background-color: rgba(4, 63, 92, 0.3137254902);
  position: relative;
  height: 50vh;
  left: 0;
  z-index: 1;
}
@media screen and (max-height: 620px) {
  .company-header {
    height: 310px;
  }
}

div.company {
  grid-area: agent;
  background-image: url(../img/company-mv-02.jpg);
  background-size: cover;
  background-position: 50% 10%;
}

.company {
  background-color: #515151;
  padding: 80px 20px 70px;
}
.company .company__wrapper {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  position: relative;
}
.company .company__wrapper .section-title-bg {
  width: 100%;
  max-width: 650px;
  margin: auto;
}
.company .company__wrapper .section-title-bg img {
  width: 100%;
  height: auto;
}
.company .company__wrapper .company-content {
  position: absolute;
  top: 0;
  display: -ms-flexbox;
  width: 100%;
  color: #ffffff;
}
.company .company__wrapper .company-content .section-title {
  width: 400px;
  text-align: center;
  margin: auto;
}
.company .company__wrapper .company-content .section-title h2 {
  padding-top: 55px;
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 3px;
}
.company .company__wrapper .company-intro-text {
  text-align: center;
  padding-top: 30px;
}
.company .company__wrapper .company-intro-text p {
  color: #ffffff;
  line-height: 1.7;
}

main {
  background: #F9F9F9;
}
main .company-introduction {
  padding: 200px 0 0;
}
main .company-introduction .company-introduction-wrapper {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: auto;
  position: relative;
}
main .company-introduction .company-introduction-wrapper .company-introduction-textarea {
  background-color: #ffffff;
  padding: 250px 100px 50px;
  text-align: center;
}
main .company-introduction .company-introduction-wrapper .company-introduction-textarea h2 {
  font-size: 24px;
  font-weight: bold;
  color: #04547D;
  padding-bottom: 15px;
}
main .company-introduction .company-introduction-wrapper .company-introduction-textarea p {
  font-size: 16px;
  color: #04547D;
  line-height: 1.8;
  width: 100%;
  max-width: 525px;
  margin: auto;
  font-weight: bold;
}
main .company-introduction .company-introduction-wrapper .title-img {
  text-align: center;
  position: relative;
  padding-bottom: 20px;
}
main .company-introduction .company-introduction-wrapper .title-img img {
  width: 300px;
}
main .company-introduction .company-introduction-wrapper .title-img h2 {
  font-size: 30px;
  font-weight: bold;
  color: #04547D;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(0%) translateX(-50%);
          transform: translateY(0%) translateX(-50%);
}
main .company-introduction .company-introduction-box {
  position: absolute;
  width: 100%;
  height: auto;
  top: -100px;
  left: 0;
}
main .company-introduction .company-introduction-container {
  width: 100%;
  max-width: 900px;
  margin: auto;
  position: relative;
}
main .company-introduction .company-introduction-container .trapezoid-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
main .company-introduction .company-introduction-container .trapezoid-container img {
  width: 100%;
  padding: 0 10px;
}
main .company-introduction .company-introduction-container .trapezoid-container .company-introduction-sub-title h3 {
  font-size: 20px;
  font-weight: bold;
  color: #04547D;
  padding-bottom: 12px;
}
main .company-introduction .company-introduction-container .trapezoid-container p {
  line-height: 1.5;
  letter-spacing: 1;
}
main .company-introduction .company-introduction-container .trapezoid-container p a {
  color: #04547D;
  text-decoration: underline;
}
main .company-introduction .company-introduction-arrow {
  padding: 25px 0;
  text-align: center;
}
main .company-introduction .company-introduction-arrow img {
  width: 30px;
  opacity: 50%;
}
main .company-introduction .company-introduction-arrow .mga {
  margin: auto;
}

.company-information {
  padding-top: 50px;
  width: 100%;
  max-width: 900px;
  margin: auto;
}
.company-information table {
  width: 100%;
}
.company-information table tr {
  border: solid 10px #f9f9f9;
}
.company-information table th {
  width: 25%;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  vertical-align: middle;
  background-color: #04547D;
  color: #ffffff;
  border-right: solid 10px #f9f9f9;
}
.company-information table td {
  width: 75%;
  padding: 15px 0 15px 30px;
  line-height: 1.5;
  background-color: #fff;
}

@media screen and (max-width: 1000px) {
  .company-header-grid {
    width: 100%;
    height: 50vh;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 100%;
    grid-template-areas: "agent";
  }
}
@media screen and (max-width: 768px) {
  table,
tbody,
tr,
td,
th {
    width: 100%;
    display: block;
  }

  .company-information {
    padding: 70px 20px 0px;
  }
  .company-information table tr {
    border: initial;
    border-bottom: solid 5px #f9f9f9;
  }
  .company-information table tr th {
    width: 100%;
    padding: 10px 0;
    border-right: initial;
    border-bottom: solid 5px #f9f9f9;
  }
  .company-information table tr td {
    width: 100%;
    padding: 10px 18px 10px 17px;
    font-size: 14px;
  }
  .company-information table tr td ul li {
    list-style: none;
    text-indent: -1em;
    padding-left: 1em;
  }
  .company-information table tr .company-address {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  main .company-introduction .company-introduction-container .trapezoid-container {
    height: initial;
  }

  main .company-introduction .company-introduction-wrapper .company-introduction-box .company-introduction-container .trapezoid-container img {
    width: 100%;
    max-width: 450px;
    height: auto;
    padding: 0 10px;
  }
}
@media screen and (max-width: 500px) {
  div.company {
    grid-area: agent;
    background-image: url(../img/sp-company-2.jpg);
    background-size: cover;
    background-position: 50% 10%;
  }

  .company-br-sp {
    display: inline;
  }

  main .company-introduction {
    padding: 120px 0 0;
  }

  main .company-introduction .company-introduction-container .trapezoid-container img {
    width: 100%;
    max-width: 350px;
  }

  .company .company__wrapper .company-content .section-title {
    width: 100%;
    max-width: 400px;
  }
  .company .company__wrapper .company-content .section-title h2 {
    padding-top: 15px;
    font-size: 20px;
  }

  .company .company__wrapper .company-intro-text p {
    text-align: center;
  }

  main .company-introduction .company-introduction-box {
    top: -60px;
  }

  main .company-introduction .company-introduction-wrapper .company-introduction-textarea {
    padding: 100px 20px 50px;
  }
  main .company-introduction .company-introduction-wrapper .company-introduction-textarea p {
    text-align: justify;
  }
  main .company-introduction .company-introduction-wrapper .company-introduction-textarea h2 {
    line-height: 1.8;
  }

  .page-move {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .page-move .to-top {
    padding-bottom: 15px;
  }
}
.contact-header-grid {
  width: 100%;
  height: 50vh;
  display: grid;
  grid-template-columns: 1fr 270px;
  grid-template-rows: 100%;
  grid-template-areas: "agent nav";
}
@media screen and (max-width: 1000px) {
  .contact-header-grid {
    width: 100%;
    height: 50vh;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 100%;
    grid-template-areas: "agent";
  }
}
@media screen and (max-height: 620px) {
  .contact-header-grid {
    height: 310px;
  }
}

.contact-header {
  background-color: rgba(4, 63, 92, 0.3137254902);
  position: relative;
  height: 50vh;
  left: 0;
  z-index: 1;
}
@media screen and (max-height: 620px) {
  .contact-header {
    height: 310px;
  }
}

div.contact {
  grid-area: agent;
  background-image: url(../img/contact-mv-02.jpg);
  background-size: cover;
  background-position: 50% 10%;
}
@media screen and (max-width: 500px) {
  div.contact {
    background-image: url(../img/sp-contact-mv2.jpg);
  }
}

.contact {
  background-color: #04547d;
  padding: 80px 20px 70px;
}
.contact .contact__wrapper {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  position: relative;
}
.contact .contact__wrapper .section-title-bg {
  width: 100%;
  max-width: 650px;
  margin: auto;
}
.contact .contact__wrapper .section-title-bg img {
  width: 100%;
  height: auto;
}
.contact .contact__wrapper .contact-content {
  position: absolute;
  top: 0;
  display: -ms-flexbox;
  width: 100%;
  color: #ffffff;
}
.contact .contact__wrapper .contact-content .section-title {
  width: 400px;
  text-align: center;
  margin: auto;
}
@media screen and (max-width: 500px) {
  .contact .contact__wrapper .contact-content .section-title {
    width: 100%;
    max-width: 400px;
  }
}
.contact .contact__wrapper .contact-content .section-title h2 {
  padding-top: 55px;
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 3px;
}
@media screen and (max-width: 500px) {
  .contact .contact__wrapper .contact-content .section-title h2 {
    padding-top: 15px;
    font-size: 20px;
  }
}
.contact .contact__wrapper .contact-intro-text {
  text-align: center;
  padding-top: 30px;
}
.contact .contact__wrapper .contact-intro-text p {
  color: #ffffff;
  line-height: 1.7;
}

.contact-form {
  background-color: #f9f9f9;
  padding: 92px 0 100px;
}
@media screen and (max-width: 960px) {
  .contact-form {
    padding: 70px 20px 100px;
  }
}
.contact-form form {
  max-width: 800px;
  margin: 0 auto;
}
.contact-form dl > * + * {
  margin-top: 20px;
}
.contact-form dt {
  color: #04547d;
  font-weight: 700;
  font-size: 18px;
}
.contact-form input:not([type=button]) {
  padding: 0 15px;
}
.contact-form textarea {
  width: 100%;
  height: 290px;
  padding: 10px 15px;
  line-height: 1.8;
}
@media screen and (max-width: 960px) {
  .contact-form textarea {
    height: 260px;
  }
}
.contact-form input:not([type=button]),
.contact-form textarea {
  background-color: #fff;
  border: 1px solid #a5a5a5;
}
.contact-form input:not([type=checkbox]) {
  width: 100%;
}
.contact-form input:not([type=checkbox]):not([type=button]) {
  height: 50px;
}
.contact-form .input-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 960px) {
  .contact-form .input-inner {
    display: block;
  }
}
.contact-form .input-inner .notebox {
  font-size: 12px;
  font-weight: bold;
  color: #ffffff;
  padding: 10px;
  margin-right: 8px;
  width: 6%;
}
.contact-form .input-inner .any {
  background-color: #515151;
  text-align: center;
}
.contact-form .input-inner .mandatory {
  background-color: #04547D;
  text-align: center;
}
.contact-form .input-inner dt {
  width: 26.625%;
}
@media screen and (max-width: 960px) {
  .contact-form .input-inner dt {
    width: 100%;
  }
}
.contact-form .input-inner dd {
  width: 73.375%;
}
@media screen and (max-width: 960px) {
  .contact-form .input-inner dd {
    width: 100%;
    margin-top: 8px;
  }
}
.contact-form .kind-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 12px;
}
@media screen and (max-width: 960px) {
  .contact-form .kind-list {
    display: block;
    padding-left: 0;
  }
}
.contact-form .kind-list li:nth-of-type(n + 2) {
  margin-left: 30px;
}
@media screen and (max-width: 960px) {
  .contact-form .kind-list li:nth-of-type(n + 2) {
    margin: 12px 0 0;
  }
}
.contact-form .kind-list label {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-form .kind-list label input {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.contact-form .cont-inner textarea {
  margin-top: 9px;
}
.contact-form .agreement {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 26px;
}
@media screen and (max-width: 960px) {
  .contact-form .agreement p {
    max-width: calc(100% - 20px);
    padding-left: 8px;
  }
}
@media screen and (max-width: 600px) {
  .contact-form .agreement {
    line-height: 1.5;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.contact-form .agreement input {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
@media screen and (max-width: 960px) {
  .contact-form .agreement input {
    margin-right: 0;
  }
}
.contact-form .agreement a {
  color: #04547d;
  font-weight: 700;
  text-decoration: underline;
}
.contact-form .btn-area {
  max-width: 388px;
  margin: 40px auto 0;
  position: relative;
}
.contact-form .btn-area .submit-btn {
  width: 100%;
}
.contact-form .btn-area .submit-btn input {
  height: 72px;
  background-color: #04547d;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.contact-form .btn-area .submit-btn input[type=button][disabled] {
  color: rgba(255, 255, 255, 0.4);
}
.contact-form .btn-area .contact_icon__container {
  width: 20%;
  position: absolute;
  top: 50%;
  left: 70%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  pointer-events: none;
}
@media screen and (max-width: 600px) {
  .contact-form .btn-area .contact_icon__container {
    display: none;
  }
}
.contact-form .btn-area .contact_icon__container .contact_link-icon {
  position: relative;
}
.contact-form .btn-area .contact_icon__container .contact_link-icon .contact_arrow-icon {
  position: relative;
  margin: 18px 100px 20px 0;
  background: #ffffff;
}
.contact-form .btn-area .contact_icon__container .contact_link-icon .contact_arrow-icon .contact_line01 {
  height: 1px;
  width: 65px;
  position: absolute;
  top: -8px;
  right: -122px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transition: 0.3s 0.1s;
  transition: 0.3s 0.1s;
  -webkit-transform-origin: right;
          transform-origin: right;
}
.contact-form .btn-area .contact_icon__container .contact_link-icon .contact_arrow-icon .contact_line02 {
  position: absolute;
  top: -8px;
  right: -122px;
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  width: 8px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.contact-form .btn-area .contact_icon__container .contact_link-icon .contact_circle-icon {
  position: absolute;
  top: -27px;
  right: -60px;
}
.contact-form .btn-area .contact_icon__container .contact_link-icon .contact_circle-icon .contact_circle {
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: solid 1px rgba(255, 255, 255, 0.5);
  -webkit-transition: 0.3s 0.1s;
  transition: 0.3s 0.1s;
}
.contact-form .btn-area:hover .is--enabled input {
  background-color: #5E91AC;
}
.contact-form .btn-area:hover .is--enabled + .contact_icon__container .contact_line01 {
  -webkit-transform: scale(0.5, 1);
          transform: scale(0.5, 1);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  -webkit-transition: 0.3s 0.1s;
  transition: 0.3s 0.1s;
  background-color: rgb(255, 255, 255);
}
.contact-form .btn-area:hover .is--enabled + .contact_icon__container .contact_line02 {
  background-color: rgb(255, 255, 255);
}
.contact-form .btn-area:hover .is--enabled + .contact_icon__container .contact_circle {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: 0.3s 0.1s;
  transition: 0.3s 0.1s;
  border: solid 1px rgb(255, 255, 255);
}

.outsourcing-pc-display {
  display: block;
}

.outsourcing-sp-display {
  display: none;
}

.outsourcing-header {
  background-color: rgba(4, 63, 92, 0.3137254902);
  position: relative;
  height: 50vh;
  left: 0;
  z-index: 1;
}
@media screen and (max-height: 620px) {
  .outsourcing-header {
    height: 310px;
  }
}

.outsourcing-header-grid {
  width: 100%;
  height: 50vh;
  display: grid;
  grid-template-columns: 1fr 270px;
  grid-template-rows: 100%;
  grid-template-areas: "outsourcing nav";
}
@media screen and (max-height: 620px) {
  .outsourcing-header-grid {
    height: 310px !important;
  }
}

div.outsourcing {
  grid-area: outsourcing;
  background-image: url(../img/pc-outsourcing-head-03.jpg);
  background-size: cover;
  background-position: 50% 10%;
}

.outsourcing {
  background-color: #515151;
  padding: 80px 20px 70px;
}
.outsourcing .outsourcing__wrapper {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  position: relative;
}
.outsourcing .outsourcing__wrapper .section-title-bg {
  width: 100%;
  max-width: 650px;
  margin: auto;
}
.outsourcing .outsourcing__wrapper .section-title-bg img {
  width: 100%;
  height: auto;
}
.outsourcing .outsourcing__wrapper .outsourcing-content {
  position: absolute;
  top: 0;
  display: -ms-flexbox;
  width: 100%;
  color: #ffffff;
}
.outsourcing .outsourcing__wrapper .outsourcing-content .section-title {
  width: 400px;
  text-align: center;
  margin: auto;
}
.outsourcing .outsourcing__wrapper .outsourcing-content .section-title h2 {
  padding-top: 55px;
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 3px;
}
.outsourcing .outsourcing__wrapper .outsourcing-intro-text {
  text-align: center;
  padding-top: 30px;
}
.outsourcing .outsourcing__wrapper .outsourcing-intro-text p {
  color: #ffffff;
  line-height: 1.7;
}

main {
  background: #F9F9F9;
}
main .service-content {
  padding: 85px 15px 0;
}
main .service-content .service-content-wrapper {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: auto;
}
main .service-content .service-content-wrapper .title-img {
  position: relative;
  padding: 66px 0 10px;
  font-size: 30px;
  font-weight: bold;
  color: #04547D;
  line-height: 1.8;
  letter-spacing: 1px;
  text-align: center;
  z-index: 10;
}
main .service-content .service-content-wrapper .title-img::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  width: 300px;
  height: 130px;
  background-image: url(../img/intersect.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -10;
}
@media screen and (max-width: 500px) {
  main .service-content .service-content-wrapper .title-img::after {
    width: 200px;
    height: 90px;
  }
}
main .service-content .service-content-wrapper .title-img h2 {
  color: #04547D;
}
main .service-content .service-content-wrapper .service-content-container {
  padding-top: 16px;
}
@media screen and (max-width: 500px) {
  main .service-content .service-content-wrapper .service-content-container {
    padding-top: 10px;
  }
}
main .service-content .service-content-wrapper .service-content-container .service-content-row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 16px;
}
main .service-content .service-content-wrapper .service-content-container .service-content-row .content-box {
  width: calc((100% - 18px) / 2);
  background-color: #04547D;
  padding: 16px 0 16px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main .service-content .service-content-wrapper .service-content-container .service-content-row .content-box img {
  width: 137px;
  height: auto;
}
main .service-content .service-content-wrapper .service-content-container .service-content-row .content-box .content-box-title {
  font-size: 20px;
  font-weight: bold;
  padding-left: 40px;
  color: #ffffff;
}
main .service-content .service-content-wrapper .service-content-container .service-content-row .content-box-note {
  width: calc((100% - 18px) / 2);
  padding: 16px 5px;
}
main .service-content .service-content-wrapper .service-content-container .service-content-row .content-box-note .note-head {
  font-size: 20px;
  font-weight: bold;
  color: #04547D;
  padding-bottom: 10px;
}
main .service-content .service-content-wrapper .service-content-container .service-content-row .content-box-note p {
  text-align: justify;
  line-height: 1.8;
}
main .business-scope {
  max-width: 800px;
  margin: 73px auto 0;
}
main .business-scope__title {
  position: relative;
  padding: 66px 0 10px;
  font-size: 30px;
  font-weight: bold;
  color: #04547D;
  line-height: 1.8;
  letter-spacing: 1px;
  text-align: center;
  z-index: 10;
}
@media screen and (max-width: 500px) {
  main .business-scope__title {
    font-size: 20px;
  }
}
main .business-scope__title::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  width: 300px;
  height: 130px;
  background-image: url(../img/intersect.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -10;
}
@media screen and (max-width: 500px) {
  main .business-scope__title::after {
    width: 200px;
    height: 90px;
  }
}
main .business-scope .kind {
  margin-top: 14px;
}
@media screen and (max-width: 500px) {
  main .business-scope .kind {
    margin-top: 10px;
  }
}
main .business-scope .kind:nth-of-type(n + 2) {
  margin-top: 50px;
}
main .business-scope .kind__title {
  background-color: #04547D;
  font-size: 20px;
  font-weight: bold;
  line-height: 40px;
  color: #fff;
  letter-spacing: 1px;
  text-align: center;
}
@media screen and (max-width: 500px) {
  main .business-scope .kind__title {
    font-size: 18px;
  }
}
main .business-scope .kind__list {
  margin-top: 14px;
}
@media screen and (max-width: 500px) {
  main .business-scope .kind__list {
    margin-top: 5px;
  }
}
main .business-scope .kind__list li:nth-of-type(n + 2) {
  margin-top: 14px;
}
@media screen and (max-width: 500px) {
  main .business-scope .kind__list li:nth-of-type(n + 2) {
    margin-top: 0px;
  }
}
main .business-scope .kind__list dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 140px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  main .business-scope .kind__list dl {
    display: block;
    min-height: auto;
  }
}
main .business-scope .kind__list dt {
  width: 56%;
  position: relative;
}
@media screen and (max-width: 768px) {
  main .business-scope .kind__list dt {
    width: 100%;
    min-height: 100px;
  }
}
main .business-scope .kind__list dt::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 140px;
  height: 100%;
  background-color: #04547D;
  -webkit-clip-path: polygon(0 0, 100% 0, 48.6% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 48.6% 100%, 0% 100%);
}
@media screen and (max-width: 768px) {
  main .business-scope .kind__list dt::after {
    width: 80px;
  }
}
main .business-scope .kind__list__title {
  position: absolute;
  top: 50%;
  left: 55px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  main .business-scope .kind__list__title {
    left: 22px;
  }
}
main .business-scope .kind__list__title::before {
  content: "";
  width: 110px;
  height: 110px;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  main .business-scope .kind__list__title::before {
    width: 80px;
    height: 80px;
  }
}
main .business-scope .kind__list__title span {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  color: #04547d;
  margin-left: -20px;
}
@media screen and (max-width: 768px) {
  main .business-scope .kind__list__title span {
    font-size: 16px;
    margin-left: -3px;
  }
}
main .business-scope .kind__list__title span span {
  display: inline-block;
  padding-left: 20px;
}
@media screen and (max-width: 500px) {
  main .business-scope .kind__list__title span span {
    padding-left: 2px;
  }
}
main .business-scope .kind__list__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 75px;
  width: 47%;
  background-color: #04547D;
  -webkit-clip-path: polygon(17.3% 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(17.3% 0, 100% 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 768px) {
  main .business-scope .kind__list__container {
    padding-left: 95px;
    width: 100%;
    min-height: 120px;
    -webkit-clip-path: none;
            clip-path: none;
  }
}
main .business-scope .kind__list dd {
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
}
@media screen and (max-width: 768px) {
  main .business-scope .kind__list dd {
    font-size: 14px;
  }
}
main .business-scope .kind__list dd .spacer {
  width: 1em;
  display: inline-block;
}
main .business-scope .kind:first-of-type li:first-of-type .kind__list__title::before {
  background-image: url(../img/os-svg-fresh.svg);
}
@media screen and (max-width: 768px) {
  main .business-scope .kind:first-of-type li:first-of-type .kind__list__title::before {
    background-image: url(../img/os-sp-svg-fresh.svg);
  }
}
main .business-scope .kind:first-of-type li:nth-of-type(2) .kind__list__title::before {
  background-image: url(../img/os-svg-mid.svg);
}
@media screen and (max-width: 768px) {
  main .business-scope .kind:first-of-type li:nth-of-type(2) .kind__list__title::before {
    background-image: url(../img/os-sp-svg-mid.svg);
  }
}
main .business-scope .kind:first-of-type li:nth-of-type(3) .kind__list__title::before {
  background-image: url(../img/os-svg-ecxective.svg);
}
@media screen and (max-width: 768px) {
  main .business-scope .kind:first-of-type li:nth-of-type(3) .kind__list__title::before {
    background-image: url(../img/os-sp-svg-ecxective.svg);
  }
}
main .business-scope .kind:nth-of-type(2) li:first-of-type .kind__list__title::before {
  background-image: url(../img/os-svg-insure.svg);
}
@media screen and (max-width: 768px) {
  main .business-scope .kind:nth-of-type(2) li:first-of-type .kind__list__title::before {
    background-image: url(../img/os-sp-svg-insure.svg);
  }
}
main .business-scope .kind:nth-of-type(2) li:nth-of-type(2) .kind__list__title::before {
  background-image: url(../img/os-svg-resources.svg);
}
@media screen and (max-width: 768px) {
  main .business-scope .kind:nth-of-type(2) li:nth-of-type(2) .kind__list__title::before {
    background-image: url(../img/os-sp-svg-resources.svg);
  }
}
main .business-scope .kind:nth-of-type(3) li:first-of-type .kind__list__title::before {
  background-image: url(../img/os-svg-culculate.svg);
}
@media screen and (max-width: 768px) {
  main .business-scope .kind:nth-of-type(3) li:first-of-type .kind__list__title::before {
    background-image: url(../img/os-sp-svg-culculate.svg);
  }
}
main .business-scope .kind:nth-of-type(3) li:nth-of-type(2) .kind__list__title::before {
  background-image: url(../img/os-svg-accounting.svg);
}
@media screen and (max-width: 768px) {
  main .business-scope .kind:nth-of-type(3) li:nth-of-type(2) .kind__list__title::before {
    background-image: url(../img/os-sp-svg-accounting.svg);
  }
}
main .btn-icon {
  width: 100%;
  max-width: 300px;
  margin: auto;
  padding: 100px 0;
}
main .btn-icon a {
  padding: 0 30px;
}

@media screen and (max-width: 1000px) {
  .outsourcing-header-grid {
    width: 100%;
    height: 50vh;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 100%;
    grid-template-areas: "outsourcing";
  }

  main .scope .scope-wrapper .scope-container .trapezoid-container .scope-bg-box img {
    width: 95px;
    left: 10%;
  }

  main .scope .scope-wrapper .scope-container .trapezoid-container .scope-bg-box h4 {
    position: absolute;
    left: 44%;
  }

  main .scope .scope-wrapper .scope-container .trapezoid-container .scope-bg-box ul {
    left: 71%;
  }

  main .scope .scope-wrapper .scope-container .trapezoid-container .scope-bg-box .ul_culculate {
    left: 70.5%;
  }

  main .scope .scope-wrapper .scope-container .trapezoid-container .scope-bg-box .ul_accounting {
    left: 77%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  main .scope .scope-wrapper .scope-container .trapezoid-container .scope-bg-box .ul_resources {
    left: 73%;
  }

  main .scope .scope-wrapper .scope-container .trapezoid-container .scope-bg-box .ul_insure {
    left: 75%;
  }

  main .scope .scope-wrapper .scope-container .trapezoid-container .scope-bg-box .ul_excective {
    left: 77%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  main .scope .scope-wrapper .scope-container .trapezoid-container .scope-bg-box .excective {
    left: 47%;
  }

  main .scope .scope-wrapper .scope-container .trapezoid-container .scope-bg-box .labor {
    left: 45%;
  }

  main .scope .scope-wrapper .scope-container .trapezoid-container .scope-bg-box .resources {
    left: 45%;
  }

  main .scope .scope-wrapper .scope-container .trapezoid-container .scope-bg-box .culculate {
    left: 59%;
  }

  main .scope .scope-wrapper .scope-container .trapezoid-container .scope-bg-box .support {
    left: 50%;
  }

  main .scope .scope-wrapper .scope-container .trapezoid-container .scope-bg-box .scope-trapezoid-1 {
    width: 440px;
    left: 35px;
  }
}
@media screen and (max-width: 768px) {
  .outsourcing-pc-display {
    display: none;
  }

  .outsourcing-sp-display {
    display: block;
  }

  main .service-content .service-content-wrapper .service-content-container .service-content-row {
    display: block;
    padding-bottom: 0;
  }

  main .service-content .service-content-wrapper .service-content-container .service-content-row .content-box {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 10px;
  }

  main .service-content .service-content-wrapper .service-content-container .service-content-row .content-box-note {
    width: 100%;
    max-width: 600px;
    margin: auto;
    padding: 16px 5px 0;
  }

  main .scope .scope-wrapper .scope-container .trapezoid-container {
    padding-bottom: 0;
  }

  main .outsourcing-sp-display .scope-wrapper .scope-container .trapezoid-container .scope-bg-box .scope-trapezoid-1 {
    width: 100%;
    -webkit-clip-path: polygon(0% 100%, 9% 0%, 100% 0%, 100% 100%);
            clip-path: polygon(0% 100%, 9% 0%, 100% 0%, 100% 100%);
  }

  main .scope .scope-wrapper .scope-container .trapezoid-container .scope-bg-box h4 {
    width: 50%;
    left: 78%;
  }

  main .scope .scope-wrapper .scope-container .trapezoid-container .scope-bg-box img {
    left: 13%;
  }

  .scope.scope-wrapper {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: auto;
  }
  .scope.scope-wrapper .title-img {
    text-align: center;
    position: relative;
    padding-bottom: 15px;
  }
  .scope.scope-wrapper .title-img img {
    width: 300px;
  }
  .scope.scope-wrapper .title-img h2 {
    font-size: 30px;
    font-weight: bold;
    color: #04547D;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(0%) translateX(-50%);
            transform: translateY(0%) translateX(-50%);
  }

  .list-container {
    width: 100%;
    background-color: #04547D;
  }
  .list-container ul {
    padding: 20px 0 20px 90px;
  }
  .list-container ul li {
    color: #ffffff;
    line-height: 1.8;
    text-indent: -1em;
    padding-left: 1em;
  }
  .list-container ul li span {
    display: inline-block;
  }
}
@media screen and (max-width: 600px) {
  .outsourcing .outsourcing__wrapper .outsourcing-content .section-title {
    width: 100%;
    max-width: 400px;
  }
  .outsourcing .outsourcing__wrapper .outsourcing-content .section-title h2 {
    padding-top: 40px;
  }
}
@media screen and (max-width: 500px) {
  .outsourcing .outsourcing__wrapper .outsourcing-content .section-title h2 {
    padding-top: 20px;
    font-size: 20px;
  }

  main .service-content .service-content-wrapper .title-img img {
    width: 200px;
    height: auto;
  }

  main .service-content .service-content-wrapper .service-content-container .service-content-row .content-box img {
    width: 110px;
  }

  main .service-content .service-content-wrapper .title-img h2 {
    font-size: 20px;
  }

  main .scope {
    padding: 0 15px;
  }

  main .scope .scope-wrapper .scope-container .scope-title {
    font-size: 18px;
  }

  main .service-content .service-content-wrapper .title-img img {
    width: 200px;
  }
  main .service-content .service-content-wrapper .title-img img h2 {
    font-size: 20px;
  }

  main .scope {
    padding: 73px 15px 0;
  }

  main .scope .scope-wrapper .title-img img {
    width: 200px;
    height: auto;
  }
  main .scope .scope-wrapper .title-img h2 {
    font-size: 20px;
  }

  main .service-content .service-content-wrapper .service-content-container .service-content-row .content-box h3 {
    padding-left: 27px;
    font-size: clamp(16px, 4vw, 18px);
    line-height: 1.8;
  }

  main .outsourcing-sp-display .scope-wrapper .scope-container .trapezoid-container .scope-bg-box {
    height: 110px;
  }
  main .outsourcing-sp-display .scope-wrapper .scope-container .trapezoid-container .scope-bg-box .scope-trapezoid-1 {
    width: 89%;
    left: initial;
    right: 0;
    -webkit-clip-path: polygon(0% 100%, 16% 0%, 100% 0%, 100% 100%);
            clip-path: polygon(0% 100%, 16% 0%, 100% 0%, 100% 100%);
  }
  main .outsourcing-sp-display .scope-wrapper .scope-container .trapezoid-container .scope-bg-box h4 span {
    display: inline-block;
    color: #04547D;
    font-weight: bold;
    line-height: 1.8;
  }

  main .scope .scope-wrapper .scope-container .trapezoid-container .scope-bg-box img {
    width: 80px;
    height: auto;
    left: 20%;
  }

  main .scope .scope-wrapper .scope-container .trapezoid-container .scope-bg-box h4 {
    width: 70%;
    left: 110%;
    font-size: 16px;
  }

  main .scope .scope-wrapper .scope-container .trapezoid-container .scope-bg-box {
    height: 110px;
  }

  .list-container ul li {
    color: #ffffff;
    font-size: 14px;
    text-indent: -1.2em;
    padding-left: 1em;
  }
  .list-container ul li span {
    display: inline-block;
    color: #ffffff;
  }
}
.access {
  padding: 80px 20px;
  position: relative;
}
.access .access__wrapper {
  width: 100%;
  max-width: 1000px;
  margin: auto;
}
.access .access__wrapper .access-txt {
  line-height: 1.7;
}
.access .access__wrapper .access-txt .company-name {
  font-size: 22px;
  font-weight: 600;
  color: #333333;
  letter-spacing: 1px;
}
.access .map {
  width: 57%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

footer {
  background-color: #333333;
}
footer .footer__wrapper {
  width: 100%;
  max-width: 800px;
  margin: auto;
}
footer .footer__wrapper ul.footer__nav {
  padding: 60px 0;
  border-bottom: 1px solid #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
footer .footer__wrapper ul.footer__nav li a {
  color: #ffffff;
  font-weight: bold;
}
footer .footer__wrapper ul.footer__nav li a:hover {
  color: #999;
}
footer .footer__wrapper .copyright {
  text-align: center;
  padding: 20px 0;
}
footer .footer__wrapper .copyright small {
  color: #ffffff;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  footer .footer__wrapper ul.footer__nav {
    padding: 60px 5px;
    height: 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .footer__wrapper ul.footer__nav li {
    padding-bottom: 20px;
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */