@charset "utf-8";
@import url("https://unpkg.com/sanitize.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");
@import url("animation.css");
@import url("import/attachment.css");
@import url("inview.css");

:root {
  --primary-color: #235b85;
  --secondary-color: #2c79ac;
  --secondary02-color: #249ABB;
  --primary-text-color: #ffffff;
}

*::selection {
  background-color: rgba(216, 216, 216, 1);
  color: #000;
}

*::-moz-selection {
  background-color: rgba(216, 216, 216, 1);
  color: #000;
}
html {
  scroll-behavior: smooth;
}

body, html {
  font-size: 18px;
}

p {
  font-size: 1rem;
}

.color_pri {
  color: var(--primary-color);
}

@media screen and (max-width: 900px) {
  body, html {
    font-size: 16px;
  }
}


/* -----------------------------------
  common
 ----------------------------------- */

section.--top {
  padding-top: 100px;
}

.c-inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

main h3 i {
  font-style: normal;
  display: block;
}

main h3 span {
  font-size: .4em;
}

#pageImg h2 {
  width: 100%;
}

.cv_btn,
.cv_btn-page {
  width: 90px;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: .8em;
  background: var(--secondary02-color);
  border-radius: 10px 0 0 10px;
  padding: 3em 0;
  letter-spacing: .1em;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}

.cv_btn:hover,
.cv_btn-page:hover {
  background: #2171A3;
}

.cv_btn.active,
.cv_btn-page.active {
  opacity: 1;
  visibility: visible;
}


.cv_btn span,
.cv_btn-page span {
  display: block;
  font-family: "ten-mincho", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 24px;
  line-height: 1em;
}

.cv_btn i,
.cv_btn-page i {
  font-size: 1.2em;
}

.ta1 th {
  background: transparent;
}

.list-normal .list.--rev {
  flex-direction: row-reverse;
}

.list-normal .list.--rev figure {
  margin-right: 0;
  margin-left: 2rem;
}

.list-normal .list p {
  font-size: 1rem;
}

.list-grid .btn a {
  font-size: .9em;
}

.ta1 .add br {
  display: none;
}

@media screen and (max-width: 900px) {



  main>article, main>section {
    padding: 50px 8%;
  }

  main h3 {
    font-size: min(7vw, 2.5rem);
  }

  main h3 span {
    font-size: .6em;
  }

  section.--top {
    padding-top: 70px;
  }

  figure {
    text-align: center;
  }

  .list-normal .list p,
  .list-grid .list .text p {
    font-size: 16px;
  }

  .list-normal .list h4 {
    font-size: min(5.5vw, 1.3rem);
  }

  .ta1 tr {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .ta1 th,
  .ta1 td {
    width: 100%;
  }

  .ta1 th {
    padding-bottom: 0;
  }

  .ta1 td {
    padding-top: 0;
  }

  .ta1 .add {
    line-height: 1.5em;
  }

  .ta1 .add br {
    display: block;
  }

}


/* -----------------------------------
  header
 ----------------------------------- */

header {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 4%;
}

#logo.header_logo {
  width: 20%;
}

.header_logo a {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: .5em;
  font-size: 20px;
  font-size: 16px;
}

.header_logo img {
  width: 84px;
  object-fit: contain;
}

.header_logo span {
  display: inline-block;
  padding-top: .1em;
  line-height: 1em;
}

.p #menubar>nav>ul {
  margin-left: 0;
  padding-left: 5%;
  font-size: .9em;
}

@media screen and (max-width:1180px) {
  .p #menubar>nav>ul {
    font-size: .8em;
  }
}


/* 検索窓 */
.search_wd {
  width: 25%;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 650px) {
  .search_wd {
    display: none;
  }
}

.search_wd .search_wd_inner {
  display: inline-block;
  width: 100%;
}

.search_wd form {
  width: 100%;
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 3px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search_wd form input {
  border: none;
  padding: 5px 10px;
  font-size: 16px;
  border-radius: 4px 0 0 4px;
  width: calc(100% - 70px);
  outline: none;
}

.search_wd form input::placeholder {
  color: #aaa;
}

.search_wd form button {
  border: none;
  padding: 4px 20px;
  font-size: 14px;
  color: #fff;
  background-color: #2c79ac;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search_wd form button:hover {
  background-color: #2e4e92;
}

@media screen and (max-width: 900px) {
  #logo.header_logo {
    width: 36%;
  }

  .header_logo span {
    padding-top: .2em;
  }

  #menubar > nav > ul > li.ddmenu_parent > ul > li > a {
    font-size: .80em;
  }

  .search_wd {
    width: 45%;
  }

  #search_hdr,
  #menubar_hdr {
    top: 18px;
  }

  .p #menubar>nav>ul {
    font-size: 1em;
  }

  #menubar > nav > ul > li.ddmenu_parent > ul > .spVer {
    display: block!important;
  }
}

@media screen and (max-width: 651px) {
  header {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  #logo.header_logo {
    width: 73%;
  }

  .header_logo img {
    width: 6.5em;
  }

  .header_logo span {
    font-size: .85rem;
  }
}

/* -----------------------------------
  footer
 ----------------------------------- */

#footermenu {
  font-size: .95em;
}

.fl_menu {
  display: none;
}

.footer_txt {
  font-size: .8em;
  /* display: inline-block; */
    text-align: center;
    background: #ededed;
    margin: 25px 0 0;
    padding: 20px 0;
}

.footer_txt span {
  display: block;
  text-align: center;
  margin-top: -5px;
}

.footer_txt span img {
  width: 222px;
}

#footermenu li a:hover {
  text-decoration: none;
  color: #249abb;
}

/* -----------------------------------
  top
 ----------------------------------- */

#mainimg-box {
  padding-top: 50%;
}

#mainimg-box .idx_mv-copy {
  font-size: 3rem;
  width: 100%;
  text-align: center;
  padding-left: 5%;
  padding-right: 5%;
}

.idx_list .list {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}


.idx_list .list h4 {
  min-height: 3em;
  display: flex;
  margin-bottom: 0 !important;
}

.idx_list .list .text {
  width: 100%;
}

.idx_list .list .text p {
  width: 100%;
  min-height: 5em;
  text-align: left;
  font-size: 1rem;
}

.idx_list .btn {
  margin: 0;
  width: 100%;
}

.idx_list.--dl .list h4 {
  height: 4em;
}


@media screen and (max-width: 900px) {

  #mainimg-box {
    height: 90vh;
  }

  .cv_btn,
  .cv_btn-page {
    display: none;
  }

  .fl_menu {
    width: 100%;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #fff;
    padding: 0;
    margin: 0;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 200;
  }

  .fl_menu-item {
    width: calc(50% - .5px);
    text-align: center;
  }

  .fl_menu-item a {
    display: block;
    padding-top: 1em;
    padding-bottom: 1em;
    font-size: 14px;
    background: var(--secondary02-color);
    color: #fff;
    text-decoration: none;
    font-weight: 400;
  }

  .fl_menu-item a:hover {
    background: var(--primary-color);
  }

  .pagetop a {
    bottom: 57px;
  }

  footer {
    padding-bottom: 75px;
  }

  #mainimg-box .idx_mv-copy {
    font-size: 6vw;
  }

  .idx_list .list+.list {
    margin-top: 40px;
  }

  .idx_list .list .text p {
    min-height: auto;
    font-size: 16px;
  }

  .idx_list .list h4 {
    margin-bottom: .5em !important;
    font-size: 18px;
  }

  .idx_list.--dl .list figure {
    width: 70%;
    max-width: 450px;
  }

  .idx_list.--dl .list h4,
  .idx_list .list h4 {
    height: inherit;
    min-height: auto;
  }

  .idx_list.--dl .list:last-of-type .text p {
    display: none;
  }

}

@media screen and (max-width: 564px) {
  body {
    padding-bottom: 0;
  }

  #mainimg {
    height: calc(100% - 3rem);
  }

  #mainimg-box {
    height: 90vh;
  }
}

/* -----------------------------------
  greeting
 ----------------------------------- */

.list-half.--gr .list {
  align-items: flex-start;
}

.greet_int-txt {
  text-align: center;
}

.greet_int-txt p {
  display: inline-block;
  text-align: left;
}

.greet_int-txt p span {
  display: block;
  line-height: .8em;
}

.list-half.--gr .image-r {
  width: 100%;
  margin-left: 0;
  margin-top: 2em;
  margin-bottom: 1em;
}

.list-half.--gr .image-r figure {
  max-width: 250px;
  width: 100%;
  margin: 0 auto;
}

.list-half.--gr .image-r figure+figure {
  margin-top: .5em;
}

.image-r .name img {
  border-radius: 0;
  box-shadow: none;
  margin-top: 1em;
}

.ta1.--career caption {
  background: transparent;
  color: #333;
  caption-side: top; /* 下 */
  text-align: left; /* 左 */
  padding: 15px 15px 0;
  margin-bottom: 1.2em;

}

.ta1.--career th {
  line-height: 1.4em;
  background: none;
  width: 17%;
}

.ta1.--career th span {
  color: var(--primary-color);
  font-size: 1em;
  margin-bottom: .5em;
}

.ta1.--career td {
  width: 83%;
}

.ta1.--career td h5 {
  line-height: 1.4em;
  margin-bottom: .3em;
}


@media screen and (max-width: 900px) {
  .greet_name {
    text-align: center;
  }

  .list-half.--gr .image-r {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }

  .list-half.--gr .image-r figure {
    margin: 0 auto;
  }

  .list-half.--gr .list {
    margin-bottom: 0;
  }

  .ta1.--career th,
  .ta1.--career td {
    width: 100%;
  }

  .ta1.--career th {
    margin-bottom: 1em;
  }

  .ta1.--career th span {
    margin-right: 1em;
  }

  .ta1.--career th br {
    display: none;
  }

  .ta1.--career caption {
    padding: 0 5px;
    line-height: 1em;
  }
}

/* -----------------------------------
  service
 ----------------------------------- */
 #sv1,#sv2,#sv2-b,#sv3,#sv4 {
  padding-top: 12rem;
  margin-top: -12rem;
  }
  
.ser_link {
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0 auto 2em;
  padding: 0;
}

.ser_link-item {
  width: calc(100% / 5 - .5em);
}

.ser_link-anc {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  line-height: 1.5em;
  width: 100%;
  height: 100%;
  text-decoration: none;
  padding-top: 1em;
  padding-bottom: 1em;
  border: 1px solid #333;
  text-align: center;
}

.ser_link-anc:hover {
  background: var(--secondary02-color);
  color: #fff;
  border-color: var(--secondary02-color);
}

main .ser_sec-ttl {
  background: #2c79ac;
  color: #fff;
  width: 100vw;
  margin: 0 calc(50% - 50vw) 1em;
  padding-top: .3em;
  padding-bottom: .3em;
  font-size: 2.2rem;
}

.ser_cont-ttl {
  position: relative;
  font-size: 24px;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 5px solid #dddddd;
  margin-bottom: 30px!important;
}

.ser_cont-ttl::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 5px;
  background-color: #387ccc;
  background: var(--secondary02-color);
}

.ser_flowWrap {
  display: flex;
  gap: 1em;
}

.flow>li .icon {
  top: -4px;
}

.ser_flowWrap .flow {
  width: 100%;
  padding-left: 30vw;
}

.ser_flowWrap .flow::before {
  left: 30vw;
}

.ser_flowWrap .flow dd ul {
  padding-left: 1em;
}

.ser_flowWrap .flow dd li {
  position: relative;
}

.ser_flowWrap .flow dd li::before {
  content: "・";
  position: absolute;
  left: -1em;
}

.ser_cont-subttl {
  font-size: 20px;
  display: block;
  border-radius: 10px;
  text-align: center;
  padding-top: .5em;
  padding-bottom: .5em;
  background: #E7F1F3;
  color: #2171A3;
  font-family: "ten-mincho", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  margin-bottom: 15px;
}

.ser_cont-itemttl {
  display: inline-block;
  font-family: "ten-mincho", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 20px;
  color: #37373A;
  margin-bottom: 20px;
  margin-top: 1.7em;
  padding-left: 2.5em;
  padding-right: 2.5em;
  position: relative;
}

.ser_cont-itemttl::before,
.ser_cont-itemttl::after {
  content: "";
  display: block;
  height: 1em;
  width: 1px;
  background: #37373A;
  position: absolute;
  transform: rotate(30deg);
  top: 0;
  bottom: 0;
  margin: auto;
}

.ser_cont-itemttl::before {
  left: 0;
}

.ser_cont-itemttl::after {
  right: 0;
}

.ta1_ser-ttlWrap {
  display: flex;
}

.ta1_ser-ttl {
  width: 50%;
  color: #fff;
  font-weight: 700;
  padding-top: .5em;
  padding-bottom: .5em;
  background: var(--secondary02-color);
  text-align: center;
  letter-spacing: .02em;
  margin-bottom: 0;
}

.ta1_ser-ttl+.ta1_ser-ttl {
  border-left: 1px solid #fff;
}

.ta1.--ser {
  margin-bottom: 0;
}

.ta1.--ser th {
  width: 50%;
  font-weight: 700;
  background: #F9F9FB;
  padding-left: 5%;
}

.ta1.--ser td {
  width: 50%;
  text-align: center;
  font-weight: 700;
}

.ser_cont-list {
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.ser_cont-list_item {
  width: calc(100% / 5 - .5em);
  background: #E7F1F3;
}

.ser_cont-list.--7 .ser_cont-list_item {
  width: calc(100% / 7 - .5em);
}

.ser_cont-list_item figure {
  min-height: 100px;
}


.ser_cont-list_txt {
  text-align: center;
  font-size: min(.85vw, 16px);
  font-weight: 700;
  color: #2171A3;
  padding-left: 4%;
  padding-right: 4%;
  line-height: 1.4em;
}

.ser_cont-listsq {
  padding-left: 1.3em;
  margin: 0;
}

.ser_cont-listsq_item {
  position: relative;
}

.ser_cont-listsq_item p {
  margin: 0;
}

.ser_cont-listsq_item+.ser_cont-listsq_item {
  margin-top: 1em;
}

.ser_cont-listsq_item::before {
  content: "■";
  color: #2171A3;
  position: absolute;
  left: -1.3em;
  top: 0;
  font-size: .8em;
  padding-top: .2em;
}

.ser_feat-cont span br {
  display: none;
}

@media screen and (max-width: 1100px) {

  .ser_link-anc {
    font-size: 14px;
    padding-left: .2em;
    padding-right: .2em;
  }

  .ser_flowWrap {
    gap: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .ser_flowWrap .flow {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
  }

  .ser_flowWrap .flow:first-of-type {
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 900px) {

  #sv1,#sv2,#sv2-b,#sv3,#sv4 {
    padding-top: 16rem;
    margin-top: -16rem;
    }

  .ser_link {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: .5em 0;
    margin-bottom: 50px;
  }

  .ser_link-item {
    width: calc(50% - .5em);
  }

  .ser_link-anc {
    padding-left: 4%;
    padding-right: 4%;
    font-size: min(5vw, 14px);
  }

  main .ser_sec-ttl {
    font-size: min(6vw, 2.5rem);
  }

  main .ser_sec-ttl.--small {
    font-size: min(5vw, 2.5rem);
  }

  .ser_cont-ttl {
    font-size: min(5vw, 1.6rem);
    margin-top: 0;
  }

  .ser_feat-cont .box-011:last-of-type {
    margin-bottom: 0;
  }

  .ser_flowWrap .flow {
    padding-left: 22vw;
  }

  .ser_flowWrap .flow::before {
    left: 22vw;
  }

  .flow>li dl {
    padding-left: 40px;
  }

  .flow>li dl::after {
    width: 25px;
  }

  .flow > li .icon {
    padding-left: 10px;
    padding-right: 10px;
    left: -90px;
  }

  .flow>li dl dt {
    font-size: 18px;
    line-height: 1.4em;
  }

  .ser_flowWrap .flow dd li {
    font-size: 16px;
  }

  .ser_cont-itemttl {
    margin-top: 10px;
    margin-bottom: 0;
  }

  .ta1_ser-ttl {
    line-height: 1.4em;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 4%;
    padding-right: 4%;
  }

  .ta1.--ser tr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .ta1.--ser th,
  .ta1.--ser td {
    padding-top: 1em;
    padding-bottom: 1em;
  }

  .ta1.--ser th {
    padding-left: 4%;
    padding-right: 4%;
    line-height: 1.4em;
  }

  .ta1.--ser td {
    line-height: 1em;
  }

  .ser_cont-list {
    -ms-flex-wrap: wrap;
  	flex-wrap: wrap;
    gap: 1em 0;
  }

  .ser_cont-list_item,
  .ser_cont-list.--7 .ser_cont-list_item  {
    width: calc(50% - .5em);
  }

  .ser_cont-list_txt {
    font-size: min(2.5vw, 14px);
  }

  .list-normal .list.--rev figure {
    margin-left: 0;
  }
}

@media screen and (max-width: 524px) {

  .ser_link-item {
    width: 100%;
  }

  .ser_feat-cont span br {
    display: inline;
  }

  .box-011 span {
    line-height: 1.4em;
    padding-top: .4em;
    padding-bottom: .3em;
  }

  .box-011:first-of-type,
  .box-011:nth-child(2) {
    padding-top: 2.5em;
  }

  .ser_cont-list_item figure {
    min-height: none;
  }

}


/* -----------------------------------
  company
 ----------------------------------- */

.comp_map {
  height: 450px;
}

@media screen and (max-width: 900px) {
  .comp_map {
    height: 300px;
  }
}

/* -----------------------------------
  contact
 ----------------------------------- */

.contact_pp {
  padding: 0 4em 2em;
  border: 1px solid #999999;
  overflow: auto;
  width: 100%;
  height: 300px;
}

.contact_pp-ttl {
  font-size: 1.2rem;
}

.agreeCheckbox {
  display: flex;
  gap: .5em;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 1.5em;
}

.agreeCheckbox input {
  width: 1.5rem;
  height: 1.5rem;
}

.contact-form {
  display: block;
  width: 100%;
  box-sizing: border-box;
  border-top: 1px solid #999999;
}

.contact-form tbody {
  display: block;
}

table.contact-form tr th {
  padding-left: 1em;
  width: 30%;
  font-weight: 700;
  font-size: 1rem;
}

table.contact-form tr td {
  width: 70%;
  font-size: 1rem;
}

.contact-form .check {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1em 2em;
}

.contact-form .check li {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: .5em;
}

.contact-form input,
.contact-form textarea {
  padding: .5em;
  font-size: 14px;
  max-width: 600px;
}

input[type="submit"] {
  background: var(--secondary02-color);
  transition: all .3s;
}

input[type="submit"]:hover {
  background: var(--primary-color);
}

.rq {
  color: red !important;
  font-size: 12px !important;
  padding-left: .3em;
  padding-right: .3em;
}

.thanks_cont {
  text-align: center;
}

.thanks_cont-inner {
  display: inline-block;
  text-align: left;
}

.btn_to-top {
  margin-top: 2em;
}

.btn_to-top a {
  margin: 0 auto;
  padding: .9em 2.5em;
  border: none;
  border-radius: 5px;
  background-color: var(--secondary02-color);
  color: #fff;
  font-weight: 600;
  font-size: 1em;
  text-decoration: none;
}

.btn_to-top a:hover {
  background: var(--primary-color);
  opacity: 1;
}

@media screen and (max-width: 900px) {
  .contact_pp {
    padding: 0 2em 2em;
  }

  .contact-form tr {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  table.contact-form tr th {
    border-bottom: none;
    width: 100%;
    padding-left: 5px;
    padding-bottom: 0;
  }

  table.contact-form tr td {
    width: 100%;
  }

  .contact-form input[type=text],
  .contact-form textarea {
    width: 100%;
  }
}