@charset "UTF-8";
/* Scss Document */
@import "common.css";
/* Scss Document */
/*メディアクエリ*/
/**************************/
html {
  font-size: 62.5%; /* 16px x 0.625 = 10px(=1rem) */
}
@media screen and (max-width: 1060px) {
  html {
    font-size: 62.5%; /* 16px x 0.625 = 10px(=1rem) */
  }
}
@media screen and (max-width: 750px) {
  html {
    font-size: 62.5%; /* 16px x 0.625 = 10px(=1rem) */
  }
}

body {
  position: relative;
  margin: 0 auto;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  color: #1a2025;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-feature-settings: "palt";
  font-weight: 500;
  /*max-width: 2000px;*/
}

a {
  color: #003380;
  opacity: 1;
  transition: opacity 0.3s;
  text-decoration: none;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
}

a:hover {
  opacity: 0.6;
  transition: opacity 0.3s;
}

.pc {
  width: 100%;
}
@media screen and (max-width: 750px) {
  .pc {
    display: none;
  }
}

.sp {
  width: 100%;
  display: none;
}
@media screen and (max-width: 750px) {
  .sp {
    display: block;
  }
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.clearfix:before {
  content: "";
  display: block;
  clear: both;
}

.clearfix {
  display: block;
}

.colorBlue {
  color: #00a0e9;
}

.colorYellow {
  color: #bd9145;
}

.colorRed {
  color: #d12d33;
}

.colorOrange {
  color: #fb7e53;
}

.colorGray {
  color: #484848;
}

.txtS {
  font-size: 0.8em;
}

.txtL {
  font-size: 1.2em;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.indent2 {
  margin-left: 1em;
}

.txtThr {
  text-decoration: line-through;
}

hr {
  max-width: 500px;
  margin: 0 auto;
  border: 0;
  border-top: 1px solid #ddd;
}

.hr2 {
  max-width: 500px;
  margin: 0 auto;
  border: 0;
  border-top: double #ccc;
}

.pcNone {
  display: inline-block;
}
@media screen and (max-width: 750px) {
  .pcNone {
    display: none;
  }
}

.spNone {
  display: none;
}
@media screen and (max-width: 750px) {
  .spNone {
    display: inline-block;
  }
}

.pcNoneB {
  display: block;
}
@media screen and (max-width: 750px) {
  .pcNoneB {
    display: none;
  }
}

.spNoneB {
  display: none;
}
@media screen and (max-width: 750px) {
  .spNoneB {
    display: block;
  }
}

body {
  animation: fadeIn 1s ease 0s 1 normal;
  -webkit-animation: fadeIn 1s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/********

    all

**********/
/*
font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro','Noto Serif JP',serif;
*/
.navList {
  display: flex;
  justify-content: center;
  margin: 4em auto 0;
  flex-wrap: wrap;
}
@media screen and (max-width: 1060px) {
  .navList {
    margin: 2.3em auto 0;
  }
}
.navList li {
  font-size: 2.1rem;
}
@media screen and (max-width: 1060px) {
  .navList li {
    font-size: 1.8rem;
    margin-top: 0.8em;
  }
}
.navList li::after {
  content: "｜";
  display: inline-block;
  margin: 0 0.3em;
}
.navList li:last-child::after {
  display: none;
}
.navList li a {
  border-bottom: 2px solid #8a97b8;
  transition: 0.3s all;
}
.navList li a:hover {
  border-bottom: #fff 2px solid;
  opacity: 1;
}

/*navList*/
/********

    header

**********/
.navWrap {
  position: relative;
  z-index: 100;
  margin: 0 auto 0;
  z-index: auto;
} /*navWrap*/
/*ハンバーガーメニュー*/
.fixNav {
  position: fixed;
  display: block;
  height: 34px;
  right: 45px;
  top: 45px;
  width: 62px;
  z-index: 1000;
  cursor: pointer;
}
@media screen and (max-width: 1060px) {
  .fixNav {
    top: 50px;
  }
}
@media screen and (max-width: 750px) {
  .fixNav {
    top: 23px;
    right: 5.33%;
    width: 62px;
    height: 34px;
  }
}

.fixNav.active {
  width: 70px;
  height: 70px;
}
@media screen and (max-width: 1060px) {
  .fixNav.active {
    width: 50px;
    height: 50px;
  }
}

.nav__line {
  background: #003380;
  border-radius: 5px;
  display: block;
  height: 4px;
  position: absolute;
  transition: transform 0.3s;
  width: 100%;
  border-radius: 5px;
}

.nav__line.white {
  background: #fff;
  transition: transform 0.3s;
}

.nav__line--center {
  top: 15px;
}
@media screen and (max-width: 1060px) {
  .nav__line--center {
    top: 15px;
  }
}

.nav__line--bottom {
  bottom: 0;
}

.nav__line--top.active {
  background: #003380;
  top: 15px;
  transform: rotate(45deg);
}
@media screen and (max-width: 1060px) {
  .nav__line--top.active {
    top: 13px;
  }
}

.nav__line--center.active {
  opacity: 0;
}

.nav__line--bottom.active {
  background: #003380;
  top: 15px;
  bottom: auto;
  transform: rotate(135deg);
}
@media screen and (max-width: 1060px) {
  .nav__line--bottom.active {
    top: 13px;
  }
}

.gnav {
  background: rgba(255, 255, 255, 0.95);
  display: none;
  height: 100%;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 510;
  /*gnav_nav*/
}
.gnav .gnav__wrap {
  height: 100vh;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  margin: auto;
  right: 0;
  bottom: 0;
}
.gnav .gnav__nav {
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 1060px) {
  .gnav .gnav__nav {
    padding: 5.33% 0;
    width: 100%;
  }
}
.gnav .gnav__nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.gnav .gnav__nav .logo {
  width: 142px;
  margin: 0 auto 45px;
}
@media screen and (max-width: 1060px) {
  .gnav .gnav__nav .logo {
    width: 82px;
  }
}
.gnav .gnav__nav .list {
  /*>li*/
}
.gnav .gnav__nav .list > li {
  margin: 40px auto 0;
}
.gnav .gnav__nav .list > li > a {
  position: relative;
  font-size: 2rem;
  color: #1a2025;
  padding: 0 0 0 20px;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .gnav .gnav__nav .list > li > a {
    padding: 0 0 0 18px;
  }
}
.gnav .gnav__nav .list > li > a::before {
  display: inline-block;
  position: absolute;
  top: 0.4em;
  left: 0;
  content: "";
  width: 10px;
  height: 10px;
  margin: 0;
  border-top: 4px solid #dfdfdf;
  border-right: 4px solid #dfdfdf;
  transform: rotate(45deg);
}
@media screen and (max-width: 750px) {
  .gnav .gnav__nav .list > li > a::before {
    top: 0.4em;
  }
}
.gnav .gnav__nav .list > li > a:hover, .gnav .gnav__nav .list > li > a.active {
  color: #003380;
  opacity: 1;
  font-weight: bold;
}
.gnav .gnav__nav .list > li > a:hover::before, .gnav .gnav__nav .list > li > a.active::before {
  border-top: 4px solid #fe6133;
  border-right: 4px solid #fe6133;
}
.gnav .gnav__nav .list .listIn {
  margin: 20px auto 0;
}
.gnav .gnav__nav .list .listIn li {
  margin: 1.5em 0.5em;
}
.gnav .gnav__nav .list .listIn li a {
  font-size: 1.7rem;
  color: #1a2025;
}

/*gnav*/
header {
  position: relative;
  /*second*/
}
header h1.ttl {
  position: absolute;
  width: 142px;
  top: 45px;
  left: 45px;
  z-index: 10;
}
@media screen and (max-width: 1060px) {
  header h1.ttl {
    top: 50px;
  }
}
@media screen and (max-width: 750px) {
  header h1.ttl {
    width: 82px;
    left: 5.33%;
    top: 23px;
  }
}
header.second {
  height: 152px;
  /*ttlWrap*/
  /*bgWrap*/
}
@media screen and (max-width: 750px) {
  header.second {
    height: 80px;
  }
}
header.second .ttlWrap {
  display: flex;
  align-items: center;
  padding: 45px 0 0 45px;
}
@media screen and (max-width: 750px) {
  header.second .ttlWrap {
    padding: 23px 0 0 5.33%;
  }
}
header.second .ttlWrap h1.ttl {
  position: relative;
  top: 0;
  left: 0;
}
header.second .ttlWrap .txtBox {
  margin: 0 0 0 30px;
}
@media screen and (max-width: 750px) {
  header.second .ttlWrap .txtBox {
    display: none;
  }
}
header.second .ttlWrap .txtBox .txt {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", "Noto Serif JP", serif;
  font-size: 4.5rem;
}
header.second .ttlWrap .txtBox .txt2 {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", "Noto Serif JP", serif;
  font-size: 1.56rem;
  margin: 0.4em 0 0;
}
header.second .bgWrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 59.85%;
  height: 152px;
  z-index: -1;
}
@media screen and (max-width: 750px) {
  header.second .bgWrap {
    width: 66.26%;
    height: 80px;
  }
}
header.second .bgWrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 98px;
  height: 152px;
  z-index: 1;
  background: url(../images/head_img_deco1.png) no-repeat 0 0/98px 152px;
}
@media screen and (max-width: 750px) {
  header.second .bgWrap::before {
    width: 51px;
    height: 80px;
    background: url(../images/head_img_deco1_sp.png) no-repeat 0 0/51px 80px;
  }
}
header.second .bgWrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 98px);
  height: 152px;
  z-index: 1;
  background: url(../images/head_img_deco2.png) repeat-x 0 0/auto 152px;
}
@media screen and (max-width: 750px) {
  header.second .bgWrap::after {
    width: calc(100% - 51px);
    height: 80px;
    background: url(../images/head_img_deco2_sp.png) repeat-x 0 0/auto 80px;
  }
}

/*header*/
/********

    footer

**********/
footer {
  position: relative;
  color: #fff;
  margin: 120px auto 0;
  /*ftrBox*/
}
@media screen and (max-width: 750px) {
  footer {
    margin: 75px auto 0;
  }
}
footer .pagetop {
  min-height: 57px;
  text-align: center;
  background: url(../images/ftr_bg1.jpg) no-repeat center center/cover;
}
footer .pagetop a {
  position: relative;
  text-align: center;
  margin: 14px auto 0;
  display: block;
  padding: 14px 0;
}
footer .pagetop a::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 30px;
  height: 30px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
}
footer .ftrBox {
  display: flex;
  justify-content: space-between;
  min-height: 350px;
  padding: 30px 45px;
  background: url(../images/ftr_bg2.jpg) no-repeat center center/cover;
  /*dataBox*/
  /*bnrBox*/
}
@media screen and (max-width: 750px) {
  footer .ftrBox {
    display: block;
    padding: 40px 5.33%;
  }
}
footer .ftrBox a {
  color: #fff;
}
footer .ftrBox .dataBox .btnTop {
  font-size: 1.4rem;
}
footer .ftrBox .dataBox .txt {
  font-size: 1.6rem;
  margin: 45px 0 0 0;
  line-height: 1.4em;
}
footer .ftrBox .dataBox .txt2 {
  font-size: 1.4rem;
  line-height: 1.4em;
}
footer .ftrBox .dataBox .txt3 {
  font-size: 1.2rem;
  margin: 45px 0 0 0;
  line-height: 1.4em;
}
footer .ftrBox .bnrBox {
  margin: 45px 0 0 0;
}
footer .ftrBox .bnrBox ul li {
  position: relative;
  margin: 0 0 10px;
}
footer .ftrBox .bnrBox ul li a {
  display: block;
  width: 348px;
  height: 89px;
  color: #424242;
  border: 1px solid #fff;
}
@media screen and (max-width: 750px) {
  footer .ftrBox .bnrBox ul li a {
    width: 100%;
    height: 23.46vw;
  }
}
footer .ftrBox .bnrBox ul li a .txt {
  text-align: right;
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-weight: bold;
  font-size: 1.4rem;
}
footer .ftrBox .bnrBox ul li a .txt span {
  font-size: 3.4rem;
  font-family: "Poppins", sans-serif;
  margin: 0 0 5px;
  display: inline-block;
}
footer .ftrBox .bnrBox ul li:nth-child(1) a {
  background: url(../images/bnr_contact.jpg) no-repeat;
}
@media screen and (max-width: 750px) {
  footer .ftrBox .bnrBox ul li:nth-child(1) a {
    background: url(../images/bnr_contact_sp.jpg) no-repeat 0 0/100% 23.46vw;
  }
}
footer .ftrBox .bnrBox ul li:nth-child(2) a {
  background: url(../images/bnr_recruit.jpg) no-repeat;
}
@media screen and (max-width: 750px) {
  footer .ftrBox .bnrBox ul li:nth-child(2) a {
    background: url(../images/bnr_recruit_sp.jpg) no-repeat 0 0/100% 23.46vw;
  }
}

/*footer*/
#company footer {
  margin-top: 230px;
}
@media screen and (max-width: 750px) {
  #company footer {
    margin-top: 75px;
  }
}

#results footer {
  margin-top: 210px;
}
@media screen and (max-width: 750px) {
  #results footer {
    margin-top: 75px;
  }
}

#contact footer {
  margin-top: 155px;
}
@media screen and (max-width: 750px) {
  #contact footer {
    margin-top: 75px;
  }
}

/********

    top

**********/
#top {
  /*mvWrap*/
  /*worksWrap*/
  /*newsWrap*/
}
#top .mvWrap {
  display: flex;
  height: 556px;
  /*swiperWrap*/
}
@media screen and (max-width: 1370px) {
  #top .mvWrap {
    display: block;
  }
}
@media screen and (max-width: 1060px) {
  #top .mvWrap {
    height: auto;
  }
}
#top .mvWrap .txtBox {
  width: 100%;
  margin: 239px auto 0;
  text-align: center;
}
@media screen and (max-width: 1370px) {
  #top .mvWrap .txtBox {
    width: auto;
    position: absolute;
    top: 239px;
    left: 30px;
    margin: 0;
    text-align: left;
    z-index: 10;
  }
}
@media screen and (max-width: 1060px) {
  #top .mvWrap .txtBox {
    position: relative;
    top: 0;
    left: 0;
    margin: 0 auto;
    text-align: center;
    padding: 150px 0 0 0;
  }
}
@media screen and (max-width: 750px) {
  #top .mvWrap .txtBox {
    padding: 108px 5.33% 0;
  }
}
#top .mvWrap .txtBox .txtBoxIn {
  display: inline-block;
  text-align: left;
}
@media screen and (max-width: 750px) {
  #top .mvWrap .txtBox .txtBoxIn {
    display: block;
  }
}
#top .mvWrap .txtBox .txtBoxIn .txt {
  font-size: 7.95rem;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", "Noto Serif JP", serif;
  line-height: 1.2em;
}
@media screen and (max-width: 750px) {
  #top .mvWrap .txtBox .txtBoxIn .txt {
    font-size: 4.9rem;
  }
}
#top .mvWrap .txtBox .txtBoxIn .txt2 {
  font-size: 2.7rem;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", "Noto Serif JP", serif;
  line-height: 1.4em;
}
@media screen and (max-width: 750px) {
  #top .mvWrap .txtBox .txtBoxIn .txt2 {
    font-size: 2.1rem;
    margin: 15px 0 0 0;
  }
}
#top .mvWrap .txtBox .txtBoxIn .txt3 {
  font-size: 1.8rem;
  line-height: 1.6em;
  margin: 30px 0 0 0;
}
@media screen and (max-width: 750px) {
  #top .mvWrap .txtBox .txtBoxIn .txt3 {
    font-size: 1.6rem;
  }
}
#top .mvWrap .swiperWrap {
  position: relative;
  width: 842px; /*60.14%*/
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1060px) {
  #top .mvWrap .swiperWrap {
    width: 95%;
    margin: 50px 0 0 auto;
  }
}
@media screen and (max-width: 750px) {
  #top .mvWrap .swiperWrap {
    margin: 57px 0 0 auto;
  }
}
#top .mvWrap .swiperWrap .swiper {
  position: relative;
}
#top .mvWrap .swiperWrap .swiper::before {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  content: "";
  width: 503px;
  height: 556px;
  display: block;
  background: url(../images/slider_deco2.png) repeat-x;
}
@media screen and (max-width: 1060px) {
  #top .mvWrap .swiperWrap .swiper::before {
    width: 59.74%;
    height: 100%;
    background: url(../images/slider_deco2.png) repeat-x 0 0/503px 100%;
  }
}
#top .mvWrap .swiperWrap .swiper::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  content: "";
  width: 339px;
  height: 556px;
  display: block;
  background: url(../images/slider_deco.png) no-repeat 0 0/339px 556px;
}
@media screen and (max-width: 1060px) {
  #top .mvWrap .swiperWrap .swiper::after {
    width: 40.26%;
    height: 100%;
    background: url(../images/slider_deco.png) no-repeat 0 0/100% 100%;
  }
}
#top .mvWrap .swiperWrap .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  opacity: 1;
  background: #fff;
}
#top .mvWrap .swiperWrap .swiper-pagination-bullet-active {
  background: #003380;
}
#top .mvWrap .swiperWrap .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, #top .mvWrap .swiperWrap .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 6px;
}
#top .mvWrap .swiperWrap .swiper-horizontal > .swiper-pagination-bullets, #top .mvWrap .swiperWrap .swiper-pagination-bullets.swiper-pagination-horizontal, #top .mvWrap .swiperWrap .swiper-pagination-custom, #top .mvWrap .swiperWrap .swiper-pagination-fraction {
  left: auto;
  right: 40px;
  width: 614px;
}
@media screen and (max-width: 1060px) {
  #top .mvWrap .swiperWrap .swiper-horizontal > .swiper-pagination-bullets, #top .mvWrap .swiperWrap .swiper-pagination-bullets.swiper-pagination-horizontal, #top .mvWrap .swiperWrap .swiper-pagination-custom, #top .mvWrap .swiperWrap .swiper-pagination-fraction {
    width: auto;
    right: 0;
    left: 0;
  }
}
#top .worksWrap {
  /*navBox*/
}
@media screen and (max-width: 750px) {
  #top .worksWrap {
    margin: 0 5%;
  }
}
#top .worksWrap .navBox {
  margin: 50px auto 0;
}
@media screen and (max-width: 1060px) {
  #top .worksWrap .navBox {
    display: none;
  }
}
#top .worksWrap .navBox ul {
  text-align: center;
  justify-content: center;
}
#top .worksWrap .navBox ul li {
  display: inline-block;
  margin: 0 33px;
}
#top .worksWrap .navBox ul li a {
  position: relative;
  display: block;
  font-size: 1.8rem;
  color: #1a2025;
  padding: 26px 0.5em;
}
#top .worksWrap .navBox ul li a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  display: block;
  background: #fe6133;
  border-radius: 20px;
  width: 100%;
  height: 13px;
  opacity: 0;
  transition: opacity 0.3s;
}
#top .worksWrap .navBox ul li a:hover {
  opacity: 1;
  transition: opacity 0.3s;
}
#top .worksWrap .navBox ul li a:hover::after {
  opacity: 1;
}
#top .worksWrap .navBox ul li a.active::after {
  opacity: 1;
}
#top .worksWrap .newyear2026 {
  display: flex;
  width: 1130px;
  margin: 110px auto 0;
}
@media screen and (max-width: 1210px) {
  #top .worksWrap .newyear2026 {
    margin: 110px 40px 0;
    width: auto;
  }
}
@media screen and (max-width: 750px) {
  #top .worksWrap .newyear2026 {
    display: block;
    margin: 15vw auto 0;
  }
}
#top .worksWrap .newyear2026 .img {
  width: 44.86%;
  margin: 10px 0 0;
}
@media screen and (max-width: 1370px) {
  #top .worksWrap .newyear2026 .img {
    width: 35%;
  }
}
@media screen and (max-width: 750px) {
  #top .worksWrap .newyear2026 .img {
    width: 45%;
    margin: 0 auto 0;
  }
}
#top .worksWrap .newyear2026 .txt {
  flex: 1;
  margin: 0 0 0 9.16%;
}
@media screen and (max-width: 750px) {
  #top .worksWrap .newyear2026 .txt {
    margin: 10vw auto 0;
  }
}
#top .worksWrap .newyear2026 .txt p {
  margin: 0 0 1.7em;
  line-height: 1.97em;
  font-size: 1.8rem;
  text-align: left;
}
@media screen and (max-width: 750px) {
  #top .worksWrap .newyear2026 .txt p {
    font-size: 1.6rem;
    margin: 0 0 1.5em;
  }
}
#top .worksWrap .newyear2026 .txt .right {
  display: flex;
  justify-content: flex-end;
}
#top .worksWrap .newyear2026 .txt .right p {
  font-size: 1.6rem;
  display: inline-block;
  margin-left: auto;
  text-align: left;
}
@media screen and (max-width: 750px) {
  #top .worksWrap .newyear2026 .txt .right p {
    margin-top: 1em;
  }
}
#top .worksWrap > .logo {
  width: 447px;
  margin: 160px auto 0;
}
@media screen and (max-width: 750px) {
  #top .worksWrap > .logo {
    margin: 83px auto 0;
    max-width: 208px;
  }
}
#top .worksWrap .worksBox {
  display: flex;
  flex-direction: row-reverse;
  margin: 80px auto 0;
  max-width: 1370px;
}
@media screen and (max-width: 1370px) {
  #top .worksWrap .worksBox {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  #top .worksWrap .worksBox {
    margin: 90px auto 0;
  }
}
#top .worksWrap .worksBox .ttlBox {
  width: 360px;
  text-align: center;
  margin: 158px 40px 0 0;
}
@media screen and (max-width: 1370px) {
  #top .worksWrap .worksBox .ttlBox {
    margin: 158px auto 0;
  }
}
@media screen and (max-width: 750px) {
  #top .worksWrap .worksBox .ttlBox {
    margin: 0 auto 0;
    width: auto;
  }
}
#top .worksWrap .worksBox .ttlBox .ttl {
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: 4.7rem;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", "Noto Serif JP", serif;
  line-height: 1.2em;
  padding: 0 10px 10px;
}
@media screen and (max-width: 750px) {
  #top .worksWrap .worksBox .ttlBox .ttl {
    font-size: 3.8rem;
  }
}
#top .worksWrap .worksBox .ttlBox .ttl::before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #003380;
}
#top .worksWrap .worksBox .ttlBox .ttl::after {
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #003380;
}
#top .worksWrap .worksBox .ttlBox .txt {
  font-size: 1.8rem;
  line-height: 1.5em;
  margin: 2.7rem 0 0 0;
}
@media screen and (max-width: 750px) {
  #top .worksWrap .worksBox .ttlBox .txt {
    font-size: 1.6rem;
  }
}
#top .worksWrap .worksBox .ttlBox .btn {
  width: 332px;
  margin: 40px auto 0;
}
@media screen and (max-width: 750px) {
  #top .worksWrap .worksBox .ttlBox .btn {
    width: 84%;
  }
}
#top .worksWrap .worksBox .ttlBox .btn a {
  display: block;
  background: #003380;
  color: #fff;
  font-weight: bold;
  font-size: 1.9rem;
  border-radius: 3px;
  padding: 0.5em 1.5em;
}
@media screen and (max-width: 750px) {
  #top .worksWrap .worksBox .ttlBox .btn a {
    font-size: 1.7rem;
  }
}
#top .worksWrap .worksBox .worksBoxIn {
  width: 915px;
  margin: 0 49px 0 0;
}
@media screen and (max-width: 1370px) {
  #top .worksWrap .worksBox .worksBoxIn {
    max-width: 915px;
    width: 100%;
    margin: 50px auto 0;
  }
}
@media screen and (max-width: 1060px) {
  #top .worksWrap .worksBox .worksBoxIn {
    width: 480px;
  }
}
@media screen and (max-width: 750px) {
  #top .worksWrap .worksBox .worksBoxIn {
    width: auto;
  }
}
#top .worksWrap .worksBox .worksBoxIn ul {
  display: flex;
  /*li*/
}
@media screen and (max-width: 1060px) {
  #top .worksWrap .worksBox .worksBoxIn ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 750px) {
  #top .worksWrap .worksBox .worksBoxIn ul {
    justify-content: space-between;
  }
}
#top .worksWrap .worksBox .worksBoxIn ul li {
  width: 140px;
  margin: 0 15px 0 0;
}
@media screen and (max-width: 1060px) {
  #top .worksWrap .worksBox .worksBoxIn ul li {
    margin: 0 7px 0;
  }
}
@media screen and (max-width: 750px) {
  #top .worksWrap .worksBox .worksBoxIn ul li {
    width: 31%;
    margin: 0;
  }
}
#top .worksWrap .worksBox .worksBoxIn ul li:nth-child(1) {
  margin: 59px 15px 0 0;
}
@media screen and (max-width: 1060px) {
  #top .worksWrap .worksBox .worksBoxIn ul li:nth-child(1) {
    margin: 0 7px 0;
  }
}
@media screen and (max-width: 750px) {
  #top .worksWrap .worksBox .worksBoxIn ul li:nth-child(1) {
    margin: 0 0 0;
  }
}
#top .worksWrap .worksBox .worksBoxIn ul li:nth-child(2) {
  margin: 172px 15px 0 0;
}
@media screen and (max-width: 1060px) {
  #top .worksWrap .worksBox .worksBoxIn ul li:nth-child(2) {
    margin: 53px 7px 0;
  }
}
@media screen and (max-width: 750px) {
  #top .worksWrap .worksBox .worksBoxIn ul li:nth-child(2) {
    margin: 53px 0 0;
  }
}
#top .worksWrap .worksBox .worksBoxIn ul li:nth-child(3) {
  margin: 85px 15px 0 0;
}
@media screen and (max-width: 1060px) {
  #top .worksWrap .worksBox .worksBoxIn ul li:nth-child(3) {
    margin: 26px 7px 0;
  }
}
@media screen and (max-width: 750px) {
  #top .worksWrap .worksBox .worksBoxIn ul li:nth-child(3) {
    margin: 26px 0 0;
  }
}
#top .worksWrap .worksBox .worksBoxIn ul li:nth-child(4) {
  margin: 137px 15px 0 0;
}
@media screen and (max-width: 1060px) {
  #top .worksWrap .worksBox .worksBoxIn ul li:nth-child(4) {
    margin: -15px 7px 0;
  }
}
@media screen and (max-width: 750px) {
  #top .worksWrap .worksBox .worksBoxIn ul li:nth-child(4) {
    margin: -15px 0 0;
  }
}
@media screen and (max-width: 1060px) {
  #top .worksWrap .worksBox .worksBoxIn ul li:nth-child(5) {
    margin: 26px 7px 0;
  }
}
@media screen and (max-width: 750px) {
  #top .worksWrap .worksBox .worksBoxIn ul li:nth-child(5) {
    margin: 26px 0 0;
  }
}
#top .worksWrap .worksBox .worksBoxIn ul li:nth-child(6) {
  margin: 101px 15px 0 0;
}
@media screen and (max-width: 1060px) {
  #top .worksWrap .worksBox .worksBoxIn ul li:nth-child(6) {
    margin: -9px 7px 0;
  }
}
@media screen and (max-width: 750px) {
  #top .worksWrap .worksBox .worksBoxIn ul li:nth-child(6) {
    margin: -9px 0 0;
  }
}
#top .worksWrap .worksBox .worksBoxIn ul li .txt {
  background: #003380;
  width: 100%;
  padding: 0.7em 0;
  font-weight: bold;
  color: #fff;
  font-size: 1.9rem;
  text-align: center;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
@media screen and (max-width: 750px) {
  #top .worksWrap .worksBox .worksBoxIn ul li .txt {
    font-size: 1.4rem;
  }
}
#top .newsWrap {
  margin: 144px auto 0;
  /*newsBox*/
}
@media screen and (max-width: 1060px) {
  #top .newsWrap {
    margin: 144px 5% 0;
  }
}
@media screen and (max-width: 750px) {
  #top .newsWrap {
    margin: 129px 5% 0;
  }
}
#top .newsWrap .newsBox {
  max-width: 1268px;
  margin: 0 auto;
  display: flex;
}
@media screen and (max-width: 1370px) {
  #top .newsWrap .newsBox {
    display: block;
  }
}
#top .newsWrap .newsBox .ttlBox {
  width: 360px;
  text-align: center;
  margin: 35px 100px 0 0;
}
@media screen and (max-width: 1370px) {
  #top .newsWrap .newsBox .ttlBox {
    margin: 35px auto 0;
  }
}
#top .newsWrap .newsBox .ttlBox .ttl {
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: 4.7rem;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", "Noto Serif JP", serif;
  line-height: 1.2em;
  padding: 0 10px 10px;
}
@media screen and (max-width: 750px) {
  #top .newsWrap .newsBox .ttlBox .ttl {
    font-size: 3.8rem;
  }
}
#top .newsWrap .newsBox .ttlBox .ttl::before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #003380;
}
#top .newsWrap .newsBox .ttlBox .ttl::after {
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #003380;
}
#top .newsWrap .newsBox .ttlBox .txt {
  font-size: 1.8rem;
  line-height: 1.5em;
  margin: 2.7rem 0 0 0;
}
@media screen and (max-width: 750px) {
  #top .newsWrap .newsBox .ttlBox .txt {
    font-size: 1.6rem;
  }
}
#top .newsWrap .newsBox .ttlBox .btn {
  width: 332px;
  margin: 40px auto 0;
}
@media screen and (max-width: 750px) {
  #top .newsWrap .newsBox .ttlBox .btn {
    width: 84%;
  }
}
#top .newsWrap .newsBox .ttlBox .btn a {
  display: block;
  background: #003380;
  color: #fff;
  font-weight: bold;
  font-size: 1.9rem;
  border-radius: 3px;
  padding: 0.5em 1.5em;
}
@media screen and (max-width: 750px) {
  #top .newsWrap .newsBox .ttlBox .btn a {
    font-size: 1.7rem;
  }
}
#top .newsWrap .newsBox .newsBoxIn {
  width: 828px;
}
@media screen and (max-width: 1370px) {
  #top .newsWrap .newsBox .newsBoxIn {
    width: auto;
    max-width: 828px;
    margin: 50px auto 0;
  }
}
#top .newsWrap .newsBox .newsBoxIn .box {
  display: flex;
  margin: 0 0 30px;
  padding: 0 1.8em;
}
@media screen and (max-width: 750px) {
  #top .newsWrap .newsBox .newsBoxIn .box {
    display: block;
    margin: 0 0 24px;
    padding: 0;
  }
}
#top .newsWrap .newsBox .newsBoxIn .box .date {
  font-size: 1.5rem;
  width: 132px;
  line-height: 1.4em;
}
@media screen and (max-width: 750px) {
  #top .newsWrap .newsBox .newsBoxIn .box .date {
    width: auto;
    font-size: 1.3rem;
  }
}
#top .newsWrap .newsBox .newsBoxIn .box .ttl {
  font-size: 1.6rem;
  flex: 1;
  margin: 0 0 0 50px;
}
@media screen and (max-width: 750px) {
  #top .newsWrap .newsBox .newsBoxIn .box .ttl {
    font-size: 1.4rem;
    margin: 0.4em 0 0 0;
  }
}
#top .newsWrap .newsBox .newsBoxIn .box .ttl a {
  color: #1a2025;
  line-height: 1.4em;
}
#top .newsWrap .newsBox .newsBoxIn .box.pickup {
  background: #3f4449;
  color: #fff;
  border-radius: 3px;
  padding: 1.8em;
}
@media screen and (max-width: 750px) {
  #top .newsWrap .newsBox .newsBoxIn .box.pickup {
    margin: 0 -2.3% 24px;
    padding: 1em;
  }
}
#top .newsWrap .newsBox .newsBoxIn .box.pickup a {
  color: #fff;
}

/*#top*/
/********

    second all

**********/
.mainB {
  margin: 5%;
}

.main {
  max-width: 1190px;
  margin: 140px auto 0;
  display: flex;
  align-items: flex-start;
  /*contents*/
}
@media screen and (max-width: 1250px) {
  .main {
    margin: 73px auto 0;
    display: block;
  }
}
.main .contents {
  width: 840px;
  margin: 0;
  text-align: center;
  /*ttl*/
}
@media screen and (max-width: 1250px) {
  .main .contents {
    margin: 0 auto;
    max-width: 840px;
    width: auto;
  }
}
.main .contents h2.ttl {
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: 4.7rem;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", "Noto Serif JP", serif;
  line-height: 1.2em;
  padding: 0 10px 7px;
}
@media screen and (max-width: 750px) {
  .main .contents h2.ttl {
    font-size: 3.8rem;
  }
}
.main .contents h2.ttl::before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #003380;
}
.main .contents h2.ttl::after {
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #003380;
}
.main .side {
  position: sticky;
  top: 20px;
  margin: 0 0 0 70px;
  /*listBox*/
}
@media screen and (max-width: 1250px) {
  .main .side {
    display: block;
    position: relative;
    top: 0;
    margin: 108px auto 0;
  }
}
.main .side .listBox {
  /*.first*/
}
@media screen and (max-width: 1250px) {
  .main .side .listBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 925px) {
  .main .side .listBox {
    position: relative;
  }
}
.main .side .listBox li {
  position: relative;
  font-size: 2.1rem;
}
@media screen and (max-width: 1250px) {
  .main .side .listBox li {
    border-top: none;
  }
}
@media screen and (max-width: 925px) {
  .main .side .listBox li {
    width: 50%;
  }
}
.main .side .listBox li:nth-child(even) {
  border-left: none;
}
.main .side .listBox li a {
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 2.1rem;
  color: #000508;
  display: block;
}
.main .side .listBox li a:hover {
  font-weight: 700;
  color: #003380;
  opacity: 1;
}
.main .side .listBox li.first {
  margin: 0 0 1em;
  padding: 0 0 0 24px;
}
@media screen and (max-width: 1250px) {
  .main .side .listBox li.first {
    margin: 0;
    padding: 0;
  }
}
.main .side .listBox li.first > a {
  color: #1a2025;
  display: block;
}
@media screen and (max-width: 1250px) {
  .main .side .listBox li.first > a {
    padding: 0.5em 0.5em 0.5em 1.5em;
  }
}
.main .side .listBox li.first > a::before {
  opacity: 0;
  display: inline-block;
  position: absolute;
  top: 0.3em;
  left: 0;
  content: "";
  width: 10px;
  height: 10px;
  margin: 0;
  border-top: 4px solid #fe6133;
  border-right: 4px solid #fe6133;
  transform: rotate(45deg);
  transition: opacity 0.3s;
}
@media screen and (max-width: 1250px) {
  .main .side .listBox li.first > a::before {
    opacity: 1;
    border-top: 4px solid #dfdfdf;
    border-right: 4px solid #dfdfdf;
    top: 0.75em;
    left: 0.5em;
  }
}
.main .side .listBox li.first > a:hover {
  color: #003380;
  opacity: 1;
}
.main .side .listBox li.first > a:hover::before {
  opacity: 1;
}
.main .side .listBox li.first.active > a {
  color: #003380;
  opacity: 1;
  font-weight: bold;
}
.main .side .listBox li.first.active > a::before {
  opacity: 1;
}
@media screen and (max-width: 1250px) {
  .main .side .listBox li.first.active > a::before {
    border-top: 4px solid #fe6133;
    border-right: 4px solid #fe6133;
  }
}
.main .side .listBox .listBoxIn {
  margin: 0 0 0 0.5em;
}
.main .side .listBox .listBoxIn li.second {
  margin: 0.6em 0 0;
  padding: 0 0 0 15px;
}
.main .side .listBox .listBoxIn li.second::before {
  content: "-";
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1250px) {
  .main .side .listBox .listBoxIn li.second {
    width: auto;
    border: none;
    margin: 0 0 0.5em 1em;
  }
  .main .side .listBox .listBoxIn li.second a {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 925px) {
  .main .side .listBox.navDeco .first:nth-of-type(5) {
    position: absolute;
    top: 4em;
    right: 0;
  }
  .main .side .listBox.navDeco .first:nth-of-type(6) {
    position: absolute;
    top: 6em;
    right: 0;
  }
}

#contact.kakunin .main,
#contact.thanks .main {
  display: block;
  margin: 73px auto 0;
}

/********

    works

**********/
#works {
  /*contents*/
}
#works header .bgWrap {
  background: url(../images/head_img_works.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 750px) {
  #works header .bgWrap {
    background: url(../images/head_img_works_sp.jpg) no-repeat center center/cover;
  }
}
#works .contents {
  margin-bottom: 50px;
  /*btnWrap*/
  /*worksWrap*/
  /*corporateWrap*/
}
#works .contents .btnWrap {
  margin: 165px auto 0;
}
@media screen and (max-width: 750px) {
  #works .contents .btnWrap {
    margin: 88px auto 0;
  }
}
#works .contents .btnWrap .txt {
  font-size: 1.8rem;
  margin: 25px auto 0;
}
@media screen and (max-width: 750px) {
  #works .contents .btnWrap .txt {
    font-size: 1.6rem;
  }
}
#works .contents .btnWrap .btn {
  width: 332px;
  margin: 40px auto 0;
}
@media screen and (max-width: 750px) {
  #works .contents .btnWrap .btn {
    width: 84%;
  }
}
#works .contents .btnWrap .btn a {
  display: block;
  background: #003380;
  color: #fff;
  font-weight: bold;
  font-size: 1.9rem;
  border-radius: 3px;
  padding: 0.5em 1.5em;
}
@media screen and (max-width: 750px) {
  #works .contents .btnWrap .btn a {
    font-size: 1.7rem;
    padding: 0.7em;
  }
}
#works .contents .worksWrap {
  /*box*/
}
#works .contents .worksWrap .mainTxt {
  margin: 60px auto 80px;
  font-size: 1.8rem;
  text-align: left;
  line-height: 1.7em;
}
@media screen and (max-width: 750px) {
  #works .contents .worksWrap .mainTxt {
    margin: 43px auto 0;
    font-size: 1.8rem;
  }
}
#works .contents .worksWrap .box {
  display: flex;
  text-align: left;
  margin: 60px auto 0;
}
@media screen and (max-width: 750px) {
  #works .contents .worksWrap .box {
    display: block;
    margin: 50px auto 0;
  }
}
#works .contents .worksWrap .box .img {
  width: 370px;
}
@media screen and (max-width: 750px) {
  #works .contents .worksWrap .box .img {
    width: auto;
  }
}
#works .contents .worksWrap .box .des {
  flex: 1;
  margin: 3px 0 0 38px;
}
@media screen and (max-width: 750px) {
  #works .contents .worksWrap .box .des {
    margin: 20px 0 0 0;
  }
}
#works .contents .worksWrap .box .des .ttl {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", "Noto Serif JP", serif;
  font-size: 3.4rem;
}
@media screen and (max-width: 750px) {
  #works .contents .worksWrap .box .des .ttl {
    font-size: 2.8rem;
  }
}
#works .contents .worksWrap .box .des .txt {
  font-size: 1.6rem;
  line-height: 1.5em;
  margin: 18px 0 0 0;
}
@media screen and (max-width: 750px) {
  #works .contents .worksWrap .box .des .txt {
    font-size: 1.6rem;
  }
}
#works .contents .worksWrap .box.box2 {
  flex-direction: row-reverse;
}
#works .contents .worksWrap .box.box2 .des {
  margin: 3px 38px 0 0;
}
@media screen and (max-width: 750px) {
  #works .contents .worksWrap .box.box2 .des {
    margin: 20px 0 0 0;
  }
}
#works .contents .corporateWrap {
  margin: 60px auto 0;
  /*box*/
}
#works .contents .corporateWrap .box {
  display: flex;
  align-items: center;
  text-align: left;
  margin: 0 auto;
}
@media screen and (max-width: 1060px) {
  #works .contents .corporateWrap .box {
    margin: 50px auto 0;
  }
}
@media screen and (max-width: 750px) {
  #works .contents .corporateWrap .box {
    display: block;
    margin: 50px auto 0;
  }
}
#works .contents .corporateWrap .box .img {
  width: 318px;
}
@media screen and (max-width: 750px) {
  #works .contents .corporateWrap .box .img {
    width: 80%;
    max-width: 318px;
    margin: 0 auto;
  }
}
#works .contents .corporateWrap .box .des {
  flex: 1;
  margin: 3px 0 0 38px;
}
@media screen and (max-width: 750px) {
  #works .contents .corporateWrap .box .des {
    margin: 20px 0 0 0;
  }
}
#works .contents .corporateWrap .box .des .ttl {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", "Noto Serif JP", serif;
  font-size: 3.4rem;
}
@media screen and (max-width: 750px) {
  #works .contents .corporateWrap .box .des .ttl {
    font-size: 2.8rem;
    text-align: center;
  }
}
#works .contents .corporateWrap .box .des .txt {
  font-size: 1.6rem;
  line-height: 1.5em;
  margin: 18px 0 0 0;
}
@media screen and (max-width: 750px) {
  #works .contents .corporateWrap .box .des .txt {
    font-size: 1.6rem;
    margin: 20px 0 0 0;
  }
}
#works .contents .corporateWrap .box.box2 {
  flex-direction: row-reverse;
}
#works .contents .corporateWrap .box.box2 .des {
  margin: 3px 38px 0 0;
}
@media screen and (max-width: 750px) {
  #works .contents .corporateWrap .box.box2 .des {
    margin: 20px 0 0 0;
  }
}

/*#works*/
/********

    company

**********/
#company {
  /*messageWrap*/
  /*companyWrap*/
  /*storyWrap*/
}
#company header .bgWrap {
  background: url(../images/head_img_company.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 750px) {
  #company header .bgWrap {
    background: url(../images/head_img_company_sp.jpg) no-repeat center center/cover;
  }
}
#company .messageWrap {
  font-size: 1.8rem;
  line-height: 1.7em;
}
#company .messageWrap .txt {
  margin: 60px 0 0;
  text-align: left;
}
@media screen and (max-width: 750px) {
  #company .messageWrap .txt {
    margin: 40px 0 0;
  }
}
#company .messageWrap .name {
  margin: 70px 0 0 0;
  text-align: right;
}
@media screen and (max-width: 750px) {
  #company .messageWrap .name {
    margin: 60px 0 0;
  }
}
#company .companyWrap {
  margin: 120px 0 0;
  /*tblBox*/
}
#company .companyWrap .tblBox {
  text-align: left;
  margin: 50px 0 0;
  width: 100%;
}
@media screen and (max-width: 750px) {
  #company .companyWrap .tblBox {
    margin: 25px 0 0;
  }
}
#company .companyWrap .tblBox tr td {
  padding: 0.8em 0.5em;
}
#company .companyWrap .tblBox tr td:nth-child(1) {
  font-size: 1.8rem;
  border-bottom: 4px solid #003380;
  width: 175px;
}
@media screen and (max-width: 750px) {
  #company .companyWrap .tblBox tr td:nth-child(1) {
    font-size: 1.4rem;
    width: 85px;
  }
}
#company .companyWrap .tblBox tr td:nth-child(2) {
  font-size: 2.15rem;
  border-bottom: 4px solid #d2d2d2;
}
@media screen and (max-width: 750px) {
  #company .companyWrap .tblBox tr td:nth-child(2) {
    font-size: 1.6rem;
  }
}
#company .storyWrap .timelineBox {
  position: relative;
  margin: 60px 0 0;
  text-align: left;
}
@media screen and (max-width: 750px) {
  #company .storyWrap .timelineBox {
    margin: 40px 0 0;
  }
}
#company .storyWrap .timelineBox::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 218px;
  width: 4px;
  height: 100%;
  background: #d2d2d2;
  border-radius: 10px;
  z-index: -1;
}
@media screen and (max-width: 750px) {
  #company .storyWrap .timelineBox::before {
    left: 115px;
    width: 3px;
  }
}
#company .storyWrap .timelineBox li {
  display: flex;
  /*num*/
}
#company .storyWrap .timelineBox li .num {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 160px;
  padding: 15px 0;
}
@media screen and (max-width: 750px) {
  #company .storyWrap .timelineBox li .num {
    width: 9.6em;
    padding: 10px 0;
  }
}
#company .storyWrap .timelineBox li .num::after {
  content: "●";
  position: absolute;
  right: -70px;
  top: 22px;
  font-size: 20px;
  color: #003380;
}
@media screen and (max-width: 750px) {
  #company .storyWrap .timelineBox li .num::after {
    right: -28px;
    top: 21px;
    font-size: 15px;
  }
}
#company .storyWrap .timelineBox li .num .year,
#company .storyWrap .timelineBox li .num .month {
  font-size: 3.4rem;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", "Noto Serif JP", serif;
}
@media screen and (max-width: 750px) {
  #company .storyWrap .timelineBox li .num .year,
  #company .storyWrap .timelineBox li .num .month {
    font-size: 2rem;
    line-height: 1.6em;
  }
}
#company .storyWrap .timelineBox li .num .year span,
#company .storyWrap .timelineBox li .num .month span {
  font-size: 2.1rem;
}
@media screen and (max-width: 750px) {
  #company .storyWrap .timelineBox li .num .year span,
  #company .storyWrap .timelineBox li .num .month span {
    font-size: 1.2rem;
  }
}
#company .storyWrap .timelineBox li .txt {
  margin: 5px 0 0 0;
  padding: 15px 0 15px 115px;
  font-size: 1.9rem;
  flex: 1;
  line-height: 1.6em;
}
@media screen and (max-width: 750px) {
  #company .storyWrap .timelineBox li .txt {
    font-size: 1.6rem;
    padding: 10px 0 10px 50px;
  }
}
#company .storyWrap .timelineBox dt {
  text-align: right;
  width: 17.5em;
  display: flex;
  justify-content: space-between;
  padding: 0.5em 1em 0.5em 0.5em;
  position: relative;
}
#company .storyWrap .timelineBox dt .year,
#company .storyWrap .timelineBox dt .month {
  font-size: 3.4rem;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", "Noto Serif JP", serif;
}
#company .storyWrap .timelineBox dt .year span,
#company .storyWrap .timelineBox dt .month span {
  font-size: 2.1rem;
}
#company .storyWrap .timelineBox dt::after {
  content: "●";
  position: absolute;
  right: -0.55em;
  top: 5px;
  font-size: 22px;
  color: green;
}
#company .storyWrap .timelineBox dd {
  width: calc(100% - 8.5em);
  padding: 0.5em 2em 3em;
  border-left: 2px solid #ccc;
  font-size: 1.9rem;
}

/*#company*/
/********

    recruit

**********/
#recruit {
  /*header*/
  /*contents*/
}
#recruit header .bgWrap {
  background: url(../images/head_img_recruit.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 750px) {
  #recruit header .bgWrap {
    background: url(../images/head_img_recruit_sp.jpg) no-repeat center center/cover;
  }
}
#recruit .contents {
  margin-bottom: 50px;
  /*btnWrap*/
  /*worksWrap*/
}
#recruit .contents .btnWrap {
  margin: 125px auto 0;
}
@media screen and (max-width: 750px) {
  #recruit .contents .btnWrap {
    margin: 88px auto 0;
  }
}
#recruit .contents .btnWrap .txt {
  font-size: 1.8rem;
  margin: 25px auto 0;
}
@media screen and (max-width: 750px) {
  #recruit .contents .btnWrap .txt {
    font-size: 1.6rem;
  }
}
#recruit .contents .btnWrap .btn {
  width: 332px;
  margin: 40px auto 0;
}
@media screen and (max-width: 750px) {
  #recruit .contents .btnWrap .btn {
    width: 84%;
  }
}
#recruit .contents .btnWrap .btn a {
  display: block;
  background: #003380;
  color: #fff;
  font-weight: bold;
  font-size: 1.9rem;
  border-radius: 3px;
  padding: 0.5em 1.5em;
}
@media screen and (max-width: 750px) {
  #recruit .contents .btnWrap .btn a {
    font-size: 1.7rem;
    padding: 0.7em;
  }
}
#recruit .contents .recruitWrap {
  /*box*/
}
#recruit .contents .recruitWrap .mainTxt {
  margin: 60px auto 80px;
  font-size: 1.6rem;
  text-align: left;
  line-height: 1.7em;
}
@media screen and (max-width: 750px) {
  #recruit .contents .recruitWrap .mainTxt {
    margin: 43px auto 0;
    font-size: 1.8rem;
  }
}
#recruit .contents .recruitWrap .mainTxt p {
  margin: 0 0 30px;
}
#recruit .contents .recruitWrap .box {
  display: flex;
  justify-content: space-between;
  text-align: left;
  margin: 40px auto 0;
}
@media screen and (max-width: 750px) {
  #recruit .contents .recruitWrap .box {
    display: block;
  }
}
#recruit .contents .recruitWrap .box .img {
  max-width: 410px;
  width: 49%;
}
@media screen and (max-width: 750px) {
  #recruit .contents .recruitWrap .box .img {
    width: 85%;
    margin: 10px auto 0;
  }
}

/*#recruit*/
/********

    news

**********/
#news {
  /*header*/
  /*contents*/
}
#news header .bgWrap {
  background: url(../images/head_img_works.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 750px) {
  #news header .bgWrap {
    background: url(../images/head_img_works_sp.jpg) no-repeat center center/cover;
  }
}
#news .contents {
  margin-bottom: 50px;
  /*newsWrap*/
}
#news .contents .newsWrap {
  text-align: left;
  margin: 50px 0 0;
  /*box*/
}
#news .contents .newsWrap h3.ttl {
  font-size: 3.4rem;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", "Noto Serif JP", serif;
  margin: 75px 0 40px;
}
@media screen and (max-width: 750px) {
  #news .contents .newsWrap h3.ttl {
    margin: 50px 0 10px;
    font-size: 2.8rem;
  }
}
#news .contents .newsWrap .box {
  padding: 1.8em 0;
  border-bottom: 2px solid #7d7d7d;
  /*pickup*/
}
#news .contents .newsWrap .box .flex {
  display: flex;
}
@media screen and (max-width: 750px) {
  #news .contents .newsWrap .box .flex {
    display: block;
  }
}
#news .contents .newsWrap .box .flex .date {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 9em;
  margin: 5px 0 0;
}
@media screen and (max-width: 750px) {
  #news .contents .newsWrap .box .flex .date {
    font-size: 1.4rem;
  }
}
#news .contents .newsWrap .box .flex .ttl {
  font-size: 2.3rem;
  font-weight: bold;
  line-height: 1.2em;
}
@media screen and (max-width: 750px) {
  #news .contents .newsWrap .box .flex .ttl {
    margin: 0.5em 0 0;
    font-size: 2rem;
  }
}
#news .contents .newsWrap .box .flex .ttl a {
  font-weight: bold;
  color: #1a2025;
}
#news .contents .newsWrap .box .txt {
  font-size: 1.8rem;
  margin: 0.5em 0 0;
  line-height: 1.7em;
}
@media screen and (max-width: 750px) {
  #news .contents .newsWrap .box .txt {
    font-size: 1.6rem;
  }
}
#news .contents .newsWrap .box.pickup {
  background: #3f4449;
  border-radius: 5px;
  color: #fff;
  padding: 1.8em 2.2em;
}
#news .contents .newsWrap .box.pickup .ttl a {
  color: #fff;
}

/*#news*/
/********

    results

**********/
#results {
  /*resultsWrap*/
  /*companyWrap*/
  /*storyWrap*/
}
#results header .bgWrap {
  background: url(../images/head_img_company.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 750px) {
  #results header .bgWrap {
    background: url(../images/head_img_company_sp.jpg) no-repeat center center/cover;
  }
}
#results .resultsWrap {
  font-size: 1.8rem;
  line-height: 1.7em;
}
#results .resultsWrap > .txt {
  margin: 60px 0 20px;
  text-align: left;
}
@media screen and (max-width: 750px) {
  #results .resultsWrap > .txt {
    margin: 40px 0 0;
  }
}
#results .resultsWrap .box {
  text-align: left;
  padding: 2.5em 0 2em;
  border-bottom: 1px solid #7d7d7d;
}
#results .resultsWrap .box h3.date {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", "Noto Serif JP", serif;
  font-size: 3.4rem;
}
@media screen and (max-width: 750px) {
  #results .resultsWrap .box h3.date {
    font-size: 2.8rem;
    text-align: center;
  }
}
#results .resultsWrap .box .txt {
  margin: 1.5em 0 0;
}
#results .resultsWrap .box .txt p {
  font-size: 1.95rem;
  line-height: 2em;
}
#results .resultsWrap .name {
  margin: 70px 0 0 0;
  text-align: right;
}
@media screen and (max-width: 750px) {
  #results .resultsWrap .name {
    margin: 60px 0 0;
  }
}
#results .companyWrap {
  margin: 120px 0 0;
  /*tblBox*/
}
#results .companyWrap .tblBox {
  text-align: left;
  margin: 50px 0 0;
  width: 100%;
}
@media screen and (max-width: 750px) {
  #results .companyWrap .tblBox {
    margin: 25px 0 0;
  }
}
#results .companyWrap .tblBox tr td {
  padding: 0.8em 0.5em;
}
#results .companyWrap .tblBox tr td:nth-child(1) {
  font-size: 1.8rem;
  border-bottom: 4px solid #003380;
  width: 175px;
}
@media screen and (max-width: 750px) {
  #results .companyWrap .tblBox tr td:nth-child(1) {
    font-size: 1.4rem;
    width: 85px;
  }
}
#results .companyWrap .tblBox tr td:nth-child(2) {
  font-size: 2.15rem;
  border-bottom: 4px solid #d2d2d2;
}
@media screen and (max-width: 750px) {
  #results .companyWrap .tblBox tr td:nth-child(2) {
    font-size: 1.6rem;
  }
}
#results .storyWrap .timelineBox {
  position: relative;
  margin: 60px 0 0;
  text-align: left;
}
@media screen and (max-width: 750px) {
  #results .storyWrap .timelineBox {
    margin: 40px 0 0;
  }
}
#results .storyWrap .timelineBox::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 218px;
  width: 4px;
  height: 100%;
  background: #d2d2d2;
  border-radius: 10px;
  z-index: -1;
}
@media screen and (max-width: 750px) {
  #results .storyWrap .timelineBox::before {
    left: 115px;
    width: 3px;
  }
}
#results .storyWrap .timelineBox li {
  display: flex;
  /*num*/
}
#results .storyWrap .timelineBox li .num {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 160px;
  padding: 15px 0;
}
@media screen and (max-width: 750px) {
  #results .storyWrap .timelineBox li .num {
    width: 9.6em;
    padding: 10px 0;
  }
}
#results .storyWrap .timelineBox li .num::after {
  content: "●";
  position: absolute;
  right: -70px;
  top: 22px;
  font-size: 20px;
  color: #003380;
}
@media screen and (max-width: 750px) {
  #results .storyWrap .timelineBox li .num::after {
    right: -28px;
    top: 21px;
    font-size: 15px;
  }
}
#results .storyWrap .timelineBox li .num .year,
#results .storyWrap .timelineBox li .num .month {
  font-size: 3.4rem;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", "Noto Serif JP", serif;
}
@media screen and (max-width: 750px) {
  #results .storyWrap .timelineBox li .num .year,
  #results .storyWrap .timelineBox li .num .month {
    font-size: 2rem;
    line-height: 1.6em;
  }
}
#results .storyWrap .timelineBox li .num .year span,
#results .storyWrap .timelineBox li .num .month span {
  font-size: 2.1rem;
}
@media screen and (max-width: 750px) {
  #results .storyWrap .timelineBox li .num .year span,
  #results .storyWrap .timelineBox li .num .month span {
    font-size: 1.2rem;
  }
}
#results .storyWrap .timelineBox li .txt {
  margin: 5px 0 0 0;
  padding: 15px 0 15px 115px;
  font-size: 1.9rem;
  flex: 1;
  line-height: 1.6em;
}
@media screen and (max-width: 750px) {
  #results .storyWrap .timelineBox li .txt {
    font-size: 1.6rem;
    padding: 10px 0 10px 50px;
  }
}
#results .storyWrap .timelineBox dt {
  text-align: right;
  width: 17.5em;
  display: flex;
  justify-content: space-between;
  padding: 0.5em 1em 0.5em 0.5em;
  position: relative;
}
#results .storyWrap .timelineBox dt .year,
#results .storyWrap .timelineBox dt .month {
  font-size: 3.4rem;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", "Noto Serif JP", serif;
}
#results .storyWrap .timelineBox dt .year span,
#results .storyWrap .timelineBox dt .month span {
  font-size: 2.1rem;
}
#results .storyWrap .timelineBox dt::after {
  content: "●";
  position: absolute;
  right: -0.55em;
  top: 5px;
  font-size: 22px;
  color: green;
}
#results .storyWrap .timelineBox dd {
  width: calc(100% - 8.5em);
  padding: 0.5em 2em 3em;
  border-left: 2px solid #ccc;
  font-size: 1.9rem;
}

/*#results*/
/********

    contact

**********/
#contact {
  /*messageWrap*/
}
#contact.thanks .thanksWrap {
  margin: 100px auto 0;
}
@media screen and (max-width: 750px) {
  #contact.thanks .thanksWrap {
    margin: 0 auto;
  }
}
#contact.thanks .thanksWrap .txt1 {
  font-size: 2.5rem;
  margin: 0 0 2em;
  line-height: 1.3em;
}
#contact.thanks .thanksWrap .txt2 {
  font-size: 1.8rem;
  line-height: 1.8em;
}
#contact.kakunin {
  /*btnBox*/
}
#contact.kakunin .contactWrap > .txt {
  width: 70%;
  margin-right: auto;
  margin-left: auto;
}
#contact.kakunin .formTable {
  width: 70%;
  text-align: left;
  margin: 20px auto 0;
}
#contact.kakunin .formTable tr:last-of-type {
  display: none;
}
#contact.kakunin .formTable th {
  padding: 0.7em;
  border-bottom: 2px solid #003380;
}
#contact.kakunin .formTable td {
  padding: 0.7em;
  border-bottom: 2px solid #d2d2d2;
}
#contact.kakunin .btnBox {
  margin: 65px auto 0;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  #contact.kakunin .btnBox {
    margin: 50px auto 0;
    display: block;
  }
}
#contact.kakunin .btnBox .btn {
  margin: 5px;
  width: 270px;
}
@media screen and (max-width: 750px) {
  #contact.kakunin .btnBox .btn {
    width: 70%;
  }
}
#contact.kakunin .btnBox .btn input {
  cursor: pointer;
  text-decoration: none;
  background: #003380;
  width: 270px;
  font-size: 1.9rem;
  font-weight: bold;
  color: #fff;
  padding: 0.3em 1em;
  border: none;
  border-radius: 3px;
  transition: opacity 0.3s;
}
@media screen and (max-width: 750px) {
  #contact.kakunin .btnBox .btn input {
    font-size: 1.7rem;
    width: 100%;
  }
}
#contact.kakunin .btnBox .btn input:hover {
  opacity: 0.6;
}
#contact.kakunin .btnBox .btn.kakuninBack input {
  background: #4c6a97;
}
#contact header .bgWrap {
  background: url(../images/head_img_company.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 750px) {
  #contact header .bgWrap {
    background: url(../images/head_img_company_sp.jpg) no-repeat center center/cover;
  }
}
#contact .contactWrap {
  font-size: 1.8rem;
  line-height: 1.7em;
  /*formBox*/
}
#contact .contactWrap .txt {
  margin: 60px 0 0;
  text-align: left;
}
@media screen and (max-width: 750px) {
  #contact .contactWrap .txt {
    margin: 40px 0 0;
  }
}
#contact .contactWrap .formBox {
  text-align: left;
  margin: 60px auto 0;
  /*item*/
  /*policyBox*/
  /*btnBox*/
}
#contact .contactWrap .formBox :focus {
  outline: none;
}
@media screen and (max-width: 750px) {
  #contact .contactWrap .formBox {
    margin: 20px auto 0;
  }
}
#contact .contactWrap .formBox .item {
  display: flex;
  /*inputBox*/
}
@media screen and (max-width: 750px) {
  #contact .contactWrap .formBox .item {
    position: relative;
    display: block;
    margin: 0;
    padding: 1.3em 0 2em;
  }
  #contact .contactWrap .formBox .item:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-bottom: 2px solid #d2d2d2;
  }
  #contact .contactWrap .formBox .item:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    border-bottom: 2px solid #003380;
  }
}
#contact .contactWrap .formBox .item .label {
  width: 13em;
  border-bottom: 2px solid #003380;
  margin: 12px 0 0;
  padding: 20px 15px;
  font-size: 1.8rem;
}
@media screen and (max-width: 750px) {
  #contact .contactWrap .formBox .item .label {
    border: none;
    padding: 0;
  }
}
#contact .contactWrap .formBox .item .inputBox {
  width: 100%;
  border-bottom: 2px solid #d2d2d2;
  padding: 20px 15px;
  /*input*/
  /*textarea*/
}
@media screen and (max-width: 750px) {
  #contact .contactWrap .formBox .item .inputBox {
    border: none;
    margin: 0.3em 0 0;
    padding: 0;
  }
}
#contact .contactWrap .formBox .item .inputBox ::placeholder {
  color: #1a2025;
  font-size: 2.1rem;
}
@media screen and (max-width: 750px) {
  #contact .contactWrap .formBox .item .inputBox ::placeholder {
    font-size: 1.8rem;
  }
}
#contact .contactWrap .formBox .item .inputBox input {
  background: #ececec;
  border: none;
  border-radius: 3px;
  width: 100%;
  font-size: 2.1rem;
  color: #1a2025;
  padding: 0.4em 0.6em;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
@media screen and (max-width: 750px) {
  #contact .contactWrap .formBox .item .inputBox input {
    font-size: 1.8rem;
  }
}
#contact .contactWrap .formBox .item .inputBox textarea {
  background: #f0f1f0;
  border: none;
  border-radius: 3px;
  width: 100%;
  min-height: 177px;
  font-size: 2.1rem;
  color: #535353;
  padding: 0.4em 0.6em;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
@media screen and (max-width: 750px) {
  #contact .contactWrap .formBox .item .inputBox textarea {
    min-height: 170px;
    font-size: 1.6rem;
  }
}
#contact .contactWrap .formBox .item.message .label,
#contact .contactWrap .formBox .item.message .inputBox {
  border: none;
}
@media screen and (max-width: 750px) {
  #contact .contactWrap .formBox .item:last-child::before, #contact .contactWrap .formBox .item:last-child::after {
    border: none;
  }
}
#contact .contactWrap .formBox .policyBox {
  margin: 30px auto 0;
  text-align: center;
}
#contact .contactWrap .formBox .policyBox .txt {
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.6em;
}
#contact .contactWrap .formBox .policyBox .txt a {
  text-decoration: underline;
  color: #1a2025;
}
#contact .contactWrap .formBox .policyBox .box {
  position: relative;
  margin: 50px auto 0;
}
@media screen and (max-width: 750px) {
  #contact .contactWrap .formBox .policyBox .box {
    margin: 20px auto 0;
  }
}
#contact .contactWrap .formBox .policyBox .box input[type=checkbox] {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
}
#contact .contactWrap .formBox .policyBox .box .checkbox01 {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 0 0 0 35px;
  position: relative;
  width: auto;
}
#contact .contactWrap .formBox .policyBox .box .checkbox01::before {
  background: #fff;
  border: 1px solid #3f4449;
  border-radius: 3px;
  content: "";
  display: block;
  width: 23px;
  height: 23px;
  left: 0;
  margin-top: -12px;
  position: absolute;
  top: 50%;
}
#contact .contactWrap .formBox .policyBox .box .checkbox01::after {
  border-right: 4px solid #003380;
  border-bottom: 4px solid #003380;
  content: "";
  display: block;
  width: 10px;
  height: 15px;
  left: 7px;
  margin-top: -10px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
}
#contact .contactWrap .formBox .policyBox .box input[type=checkbox]:checked + .checkbox01::after {
  opacity: 1;
}
#contact .contactWrap .formBox .btnBox {
  margin: 65px auto 0;
}
@media screen and (max-width: 750px) {
  #contact .contactWrap .formBox .btnBox {
    margin: 50px auto 0;
  }
}
#contact .contactWrap .formBox .btnBox .btn {
  margin: 0 auto;
  width: 332px;
}
@media screen and (max-width: 750px) {
  #contact .contactWrap .formBox .btnBox .btn {
    width: 70%;
  }
}
#contact .contactWrap .formBox .btnBox .btn input {
  cursor: pointer;
  text-decoration: none;
  background: #003380;
  width: 332px;
  font-size: 1.9rem;
  font-weight: bold;
  color: #fff;
  padding: 0.3em 1em;
  border: none;
  border-radius: 3px;
  transition: opacity 0.3s;
}
@media screen and (max-width: 750px) {
  #contact .contactWrap .formBox .btnBox .btn input {
    font-size: 1.7rem;
    width: 100%;
  }
}
#contact .contactWrap .formBox .btnBox .btn input:hover {
  opacity: 0.6;
}
#contact .contactWrap .formBox .errorTxt {
  color: #a92020;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0.3em 0 0 0;
}

/*#contact*/
/********

    privacy

**********/
#privacy {
  /*header*/
  /*contents*/
}
#privacy header .bgWrap {
  background: url(../images/head_img_works.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 750px) {
  #privacy header .bgWrap {
    background: url(../images/head_img_works_sp.jpg) no-repeat center center/cover;
  }
}
#privacy .contents {
  margin-bottom: 50px;
  /*newsWrap*/
}
#privacy .contents .privacyWrap {
  text-align: left;
  margin: 50px 0 0;
  /*box*/
}
#privacy .contents .privacyWrap h3.ttl {
  font-size: 3.4rem;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", "Noto Serif JP", serif;
  margin: 75px 0 0;
}
@media screen and (max-width: 750px) {
  #privacy .contents .privacyWrap h3.ttl {
    margin: 50px 0 0;
    font-size: 2.8rem;
  }
}
#privacy .contents .privacyWrap .box {
  padding: 1.8em 0;
}
#privacy .contents .privacyWrap .box .txt {
  font-size: 1.8rem;
  margin: 0.5em 0 0;
  line-height: 1.7em;
}
@media screen and (max-width: 750px) {
  #privacy .contents .privacyWrap .box .txt {
    font-size: 1.6rem;
  }
}
#privacy .contents .privacyWrap .box ul {
  font-size: 1.8rem;
  line-height: 1.4em;
  margin: 0.5em 0;
  padding: 0 0 0 3rem;
}
@media screen and (max-width: 750px) {
  #privacy .contents .privacyWrap .box ul {
    font-size: 1.6rem;
  }
}
#privacy .contents .privacyWrap .box ul li {
  text-indent: -1.5rem;
  margin: 1rem 0;
}

/*#news*//*# sourceMappingURL=style.css.map */