@charset "UTF-8";
/* 文字コードの指定 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Noto+Serif+JP:wght@400;600;700;900&family=Oleo+Script&family=Poppins:wght@700&display=swap");
@import url("https://use.fontawesome.com/releases/v6.2.1/css/all.css");
html {
  font-size: 62.5%;
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  html {
    font-size: 1vw;
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: calc(10 / 375 * 100vw);
  }
}

body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}

* {
  line-height: 1.2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  color: #454545;
  text-decoration: none;
}

a:hover {
  opacity: 0.5;
}

img {
  max-width: 100%;
}

i,
em {
  font-style: normal;
}

u {
  text-decoration: none;
}

li {
  list-style: none;
}

main {
  padding: 7.6rem 0 0;
}

@media screen and (max-width: 767px) {
  main {
    padding-top: 6rem;
  }
}

.container {
  padding: 0 1.6rem;
  overflow: hidden;
  position: relative;
  opacity: 0;
  -webkit-animation: fadeIn 3s ease;
          animation: fadeIn 3s ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

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

@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}

.bg-blue {
  background: #d0e7ff;
}

.bg_image {
  width: 100vw;
  height: 40rem;
  background-image: url(../images/bg_image.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: .5;
}

@media screen and (max-width: 767px) {
  .bg_image {
    height: 24rem;
  }
}

.contents_width {
  width: 100%;
  padding: 0 1.6rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .contents_width {
    padding: 0;
  }
}

.contents_title {
  font-size: 4rem;
  line-height: 1;
  text-align: center;
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  .contents_title {
    font-size: 2.6rem;
    line-height: calc(39 / 26);
  }
}

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

.animate__animated {
  opacity: 0;
}

.no-sp {
  display: block;
}

.no-pc {
  display: none;
}

@media screen and (max-width: 767px) {
  .no-pc {
    display: block;
  }
}

.uppercase {
  text-transform: uppercase;
}

.or-space {
  display: block;
}

.cv_button {
  margin: 4.2rem 0 0;
  width: 30rem;
  padding: 2rem;
  border-radius: .5rem;
  background-color: #d3f356;
  -webkit-box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.16);
          box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.16);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  color: #454545;
  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;
}

.flash_button {
  overflow: hidden;
  -webkit-transition: -webkit-transform .2s ease;
  transition: -webkit-transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease;
}

.flash_button:hover {
  opacity: 1;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.flash_button:hover::before {
  -webkit-animation: shine .8s ease;
          animation: shine .8s ease;
}

.flash_button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.5)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
  -webkit-transform: skew(-25deg);
          transform: skew(-25deg);
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.header {
  width: 100%;
  padding: 0;
  height: 7.6rem;
  position: fixed;
  top: 0;
  background: #fff;
  z-index: 1000;
}

@media screen and (max-width: 767px) {
  .header {
    height: 6rem;
    overflow: visible;
  }
}

.header .contents_width {
  padding: 0 0 0 2.5rem;
}

@media screen and (max-width: 767px) {
  .header .contents_width {
    padding-left: 2.5rem;
  }
}

.header h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 31.1rem;
  height: 7.6rem;
}

@media screen and (max-width: 767px) {
  .header h1 {
    max-width: 22.5rem;
    height: 6rem;
  }
}

@media screen and (max-width: 767px) {
  .header .pc-nav {
    display: none;
  }
}

.header .hamburger-nav {
  display: none;
}

@media screen and (max-width: 767px) {
  .header .hamburger-nav {
    display: none;
    background: #fff;
    position: absolute;
    top: 6rem;
    left: 0;
    width: 100%;
    z-index: 100;
  }
}

.header .nav ul {
  height: 7.6rem;
  gap: 5rem;
  margin: 0 5rem 0 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 767px) {
  .header .nav ul {
    display: block;
    height: auto;
    margin: 0;
    padding: 1rem 2.6rem;
  }
}

.header .nav ul li a {
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 0;
  position: relative;
  padding: 0.7rem 0;
}

@media screen and (max-width: 767px) {
  .header .nav ul li a {
    display: block;
    font-size: 1.4rem;
    line-height: calc(21 / 14);
    padding: 0.4rem 0;
    font-weight: 500;
  }
}

.header .nav ul li a:hover {
  opacity: 1;
}

.header .nav ul li a:hover::after {
  width: 100%;
}

.header .nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  display: block;
  height: 2px;
  background: #000;
  -webkit-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

@media screen and (max-width: 767px) {
  .header .nav ul li a::after {
    display: none;
  }
}

.header .nav .nav_button {
  width: 26.4rem;
  height: 7.6rem;
  background: #003d7a;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  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;
  -webkit-transition: background-color, color 0.2s ease;
  transition: background-color, color 0.2s ease;
}

@media screen and (max-width: 767px) {
  .header .nav .nav_button {
    display: none;
  }
}

.header .nav .nav_button:hover {
  background: #fff;
  color: #003d7a;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .header .hamburger_icon {
    padding-right: 1.6rem;
    height: 6rem;
    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;
    cursor: pointer;
  }
}

.header .hamburger_icon svg {
  font-size: 4rem;
}

.top {
  height: 50rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .top {
    padding: 14rem 0 4rem;
    height: auto;
    background: linear-gradient(13deg, #006cca, #003d7a 67%, transparent 67%), url(../images/main_photo.jpg);
    background-position: top center;
    background-size: 100% auto;
  }
}

.top::before, .top::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(115deg, #006cca, #003d7a 55.5%, transparent 55.5%);
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .top::before, .top::after {
    display: none;
  }
}

.top::after {
  width: 55%;
  height: 100%;
  left: auto;
  top: auto;
  right: 0;
  bottom: 0;
  background: url(../images/main_photo.jpg) no-repeat right top/cover;
  z-index: 5;
}

.top .contents_width {
  height: 50rem;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 5rem;
  max-width: 130rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .top .contents_width {
    height: auto;
    padding: 0 2rem;
  }
}

.top h2 {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .top h2 {
    font-size: 2.6rem;
    font-weight: 700;
  }
}

.top h2 span {
  display: block;
}

@media screen and (max-width: 767px) {
  .top h2 span {
    margin: 1rem 0 0;
    padding: 0.5rem 0.2rem;
    background: #fff;
    color: #000;
    display: inline-block;
  }
  .top h2 span:nth-last-of-type(n + 2) {
    margin-top: 0;
  }
}

.top p {
  margin: 3.2rem 0 0;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: calc(28 / 16);
  color: #fff;
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {
  .top p {
    margin: 2rem 0 0;
    font-size: 1.5rem;
    line-height: calc(27 / 15);
    font-weight: 500;
    display: inline;
  }
}

.top .check {
  margin: 2rem 0 0;
}

@media screen and (max-width: 767px) {
  .top .check {
    margin-top: 2.7rem;
  }
  .top .check li {
    margin: 0;
    display: inline-block;
  }
}

.top .check li p {
  margin: 0;
  display: inline-block;
}

.top .check li::before {
  font-family: 'Font Awesome 6 Free';
  content: "\f058";
  margin-right: 0.5rem;
  font-weight: normal;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .top .check li::before {
    padding: 0.5rem 0 0;
    font-size: 1.5rem;
  }
}

.top a {
  margin-top: 4rem;
}

@media screen and (max-width: 767px) {
  .top a {
    margin: 3.1rem auto 0;
  }
}

.top .character {
  position: absolute;
  bottom: 7rem;
  left: 39rem;
  width: 10rem;
  height: auto;
}

@media screen and (max-width: 767px) {
  .top .character {
    top: -12rem;
    left: 2rem;
    right: auto;
    width: 6rem;
  }
}

.top_sub {
  width: 100%;
  height: 29rem;
  background-image: url(../images/slide_3.jpg);
  background-size: 100% auto;
  background-position: center;
}

@media screen and (max-width: 767px) {
  .top_sub {
    height: 19rem;
  }
}

.top_sub .contents_width {
  position: relative;
  width: 100%;
  height: 100%;
}

.top_sub .contents_width h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .top_sub .contents_width h1 {
    font-size: 2.6rem;
  }
}

.top_form {
  background-position: center bottom;
}

@media screen and (max-width: 767px) {
  .top_form {
    background-size: cover;
  }
}

.slide {
  background: #d0e7ff;
  padding: 7rem 0;
}

@media screen and (max-width: 767px) {
  .slide {
    padding: 5rem 0;
  }
}

.slide h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: calc(39 / 26);
  color: #222;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .slide h2 {
    font-size: 1.5rem;
    line-height: calc(30 / 15);
  }
}

.slide h2 b {
  font-weight: inherit;
  font-size: 4rem;
  line-height: 1;
  color: #035AA6;
  padding: 0 0.2rem;
  vertical-align: -0.3rem;
}

@media screen and (max-width: 767px) {
  .slide h2 b {
    font-size: 2.6rem;
    vertical-align: -0.2rem;
  }
}

.slide .swiper {
  max-width: 123.2rem;
  margin: 4rem auto 0;
  padding: 0 1.6rem;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .slide .swiper {
    padding: 0 2.6rem;
  }
}

.slide .swiper-slide {
  height: 23.6rem !important;
  width: auto !important;
}

.slide .swiper-slide img {
  width: auto;
  height: 100%;
  border-radius: 1rem;
}

.slide .infinite-slider .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.slide p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: calc(23 / 16);
  margin-top: 1rem;
}

.slide p:nth-of-type(1) {
  margin-top: 5rem;
}

@media screen and (max-width: 767px) {
  .slide p {
    margin: 2.6rem 0 0;
    font-size: 1.4rem;
    line-height: calc(21 / 15);
  }
}

.work {
  padding: 9.8rem 0 10rem 0;
}

@media screen and (max-width: 767px) {
  .work {
    padding: 3rem 0 4.3rem;
  }
}

.work .contents_width {
  max-width: 110.8rem;
}

@media screen and (max-width: 767px) {
  .work .contents_width {
    width: 85.3%;
  }
}

.work ul {
  margin: 0 auto;
  padding: 8rem 0 0;
  gap: 2rem;
}

@media screen and (max-width: 767px) {
  .work ul {
    padding: 3.3rem 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.work ul li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 1rem;
  background: #0AA6A6;
  text-align: center;
  padding: 6rem 3rem 4.5rem;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

@media screen and (max-width: 767px) {
  .work ul li {
    padding: 4rem 0 3.1rem;
  }
}

.work ul li:nth-child(2) {
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
}

.work ul li:nth-child(3) {
  -webkit-animation-delay: .6s;
          animation-delay: .6s;
}

.work ul li .work_image {
  width: 16.8rem;
  height: 16.8rem;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.work ul li .work_1 {
  background-image: url(../images/work_1.jpg);
}

.work ul li .work_2 {
  background-image: url(../images/work_2.jpg);
}

.work ul li .work_3 {
  background-image: url(../images/work_3.jpg);
}

.work ul li p {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: calc(23 / 16);
  color: #fff;
  margin: 3.8rem auto 0;
}

@media screen and (max-width: 767px) {
  .work ul li p {
    font-size: 1.4rem;
    line-height: calc(21 /14);
    margin: 2rem auto 2.4rem;
  }
}

.work ul li p em {
  font-size: 2.3rem;
  line-height: calc(28 / 23);
  font-weight: 900;
  display: block;
}

@media screen and (max-width: 767px) {
  .work ul li p em {
    padding: 1rem 0 0;
    font-size: 1.6rem;
    line-height: calc(24 / 16);
  }
}

.work-footer {
  margin: 7rem 0 0;
  padding: 0 3.2rem;
  gap: 4.6rem;
}

@media screen and (max-width: 767px) {
  .work-footer {
    margin: 6rem 0 0;
    padding: 0 1.3rem;
    display: block;
  }
}

.work-footer img {
  width: 31.1rem;
  height: auto;
}

@media screen and (max-width: 767px) {
  .work-footer img {
    width: 22.5rem;
    display: block;
    margin: 0 auto;
  }
}

.work-footer p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: calc(23 / 16);
}

@media screen and (max-width: 767px) {
  .work-footer p {
    margin: 2.6rem 0 0;
    font-size: 1.4rem;
    line-height: calc(21 / 15);
  }
}

.benefit {
  padding: 9.8rem 0 10rem 0;
}

@media screen and (max-width: 767px) {
  .benefit {
    padding: 3rem 0 4.3rem;
  }
}

.benefit .contents_width {
  max-width: 110.8rem;
}

@media screen and (max-width: 767px) {
  .benefit .contents_width {
    width: 85.3%;
  }
}

.benefit h3 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: calc(39 / 26);
  color: #222;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .benefit h3 {
    font-size: 1.5rem;
    line-height: calc(30 / 15);
  }
}

.benefit h3 b {
  font-weight: inherit;
  font-size: 4rem;
  line-height: 1;
  color: #035AA6;
  padding: 0 0.2rem;
  vertical-align: -0.3rem;
}

@media screen and (max-width: 767px) {
  .benefit h3 b {
    font-size: 2.6rem;
    vertical-align: -0.2rem;
  }
}

.benefit_wrapper {
  margin-top: 5rem;
  gap: 2rem;
}

@media screen and (max-width: 767px) {
  .benefit_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.benefit_wrapper:nth-of-type(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  .benefit_wrapper:nth-of-type(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.benefit_wrapper picture {
  width: 50%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .benefit_wrapper picture {
    width: 100%;
  }
}

.benefit_wrapper .benefit_txt {
  width: 50%;
  height: auto;
  display: block;
  margin: auto 0 0;
}

@media screen and (max-width: 767px) {
  .benefit_wrapper .benefit_txt {
    width: 100%;
  }
}

.benefit_wrapper .benefit_txt h4 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 3rem;
}

@media screen and (max-width: 767px) {
  .benefit_wrapper .benefit_txt h4 {
    font-size: 1.6rem;
  }
}

.benefit_wrapper .benefit_txt p {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: calc(36 / 18);
  margin-top: 1rem;
}

@media screen and (max-width: 767px) {
  .benefit_wrapper .benefit_txt p {
    font-size: 1.5rem;
  }
}

.step {
  padding: 9.6rem 0 10rem;
}

@media screen and (max-width: 767px) {
  .step {
    padding: 3.6rem 2rem 4rem;
  }
}

.step .step_lead {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: calc(27 / 18);
  text-align: center;
}

.step ol {
  margin: 7.5rem auto 0;
  max-width: 76.3rem;
}

@media screen and (max-width: 767px) {
  .step ol {
    margin-top: 2.5rem;
  }
}

.step ol li {
  border: 1px solid #003d7a;
  margin: 6rem 0 0;
  padding: 2.3rem 0;
  position: relative;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

@media screen and (max-width: 767px) {
  .step ol li {
    margin: 0 0 5.6rem;
    padding: 2rem 0;
  }
}

.step ol li:nth-of-type(n + 2)::before {
  left: 50%;
  top: -1.2rem;
  content: "\f063";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  font-size: 3.5rem;
  line-height: 1;
  color: #003d7a;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
}

.step ol li:last-of-type {
  margin-bottom: 0;
}

.step ol li p {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: calc(23 / 16);
  padding: 0 5.7rem 0 25.2rem;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .step ol li p {
    padding: 0 1.5rem 0 12.5rem;
    font-size: 1.4rem;
    line-height: calc(22 / 14);
  }
}

.step ol li u {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 21rem;
  height: 100%;
  padding: 0 4rem 0 0;
  top: 0;
  left: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  background-image: linear-gradient(114deg, #003d7a 80%, transparent 80%);
}

@media screen and (max-width: 767px) {
  .step ol li u {
    width: 11.5rem;
    font-size: 1.6rem;
    padding-right: 2rem;
    background-image: linear-gradient(100deg, #003d7a 80%, transparent 80%);
  }
}

.step .wrapper {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3rem;
  margin-top: 8rem;
}

@media screen and (max-width: 767px) {
  .step .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.step .wrapper .cv_button {
  background-color: #003d7a;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .step .wrapper .cv_button {
    margin: 0 auto;
  }
}

.company {
  padding: 0 0 10rem 0;
}

@media screen and (max-width: 767px) {
  .company {
    padding: 3rem 0 4.3rem;
  }
}

.company .contents_width {
  max-width: 110.8rem;
}

@media screen and (max-width: 767px) {
  .company .contents_width {
    width: 85.3%;
  }
}

.company .contents_width .wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 8rem;
  gap: 3rem;
}

@media screen and (max-width: 767px) {
  .company .contents_width .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 3rem;
  }
}

.company .contents_width .wrapper img {
  width: calc(50% - 1.5rem);
  height: 34rem;
}

@media screen and (max-width: 767px) {
  .company .contents_width .wrapper img {
    display: none;
  }
}

.company .contents_width .wrapper .company_info {
  width: calc(50% - 1.5rem);
}

@media screen and (max-width: 767px) {
  .company .contents_width .wrapper .company_info {
    width: 100%;
  }
}

.company .contents_width .wrapper .company_info h4 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #003d7a;
  background: #d0e7ff;
  border-bottom: 1px solid #9bb9d8;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
}

@media screen and (max-width: 767px) {
  .company .contents_width .wrapper .company_info h4 {
    font-size: 2.4rem;
  }
}

.company .contents_width .wrapper .company_info dl {
  font-size: 1.6rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid #c3c3c3;
}

@media screen and (max-width: 767px) {
  .company .contents_width .wrapper .company_info dl {
    font-size: 1.4rem;
    padding: 1rem 0;
  }
}

.company .contents_width .wrapper .company_info dl dt {
  width: 25%;
  font-weight: 400;
}

.company .contents_width .wrapper .company_info dl dd {
  width: 75%;
  text-align: left;
  font-weight: 500;
}

.company .contents_width .wrapper iframe {
  width: 100%;
  height: 35rem;
}

@media screen and (max-width: 767px) {
  .company .contents_width .wrapper iframe {
    height: 19rem;
  }
}

.footer {
  display: block;
  text-align: center;
}

.footer img {
  display: block;
  width: 31.1rem;
  margin: 0 auto 5rem;
}

@media screen and (max-width: 767px) {
  .footer img {
    width: 22.5rem;
    margin-bottom: 2rem;
  }
}

.recruit {
  padding: 9.8rem 0 0 0;
}

@media screen and (max-width: 767px) {
  .recruit {
    padding: 3.6rem 2rem 4rem;
  }
}

.recruit .contents_width {
  max-width: 110.8rem;
}

@media screen and (max-width: 767px) {
  .recruit .contents_width {
    width: 100%;
    margin: 0;
  }
}

.recruit .contents_width h2 {
  color: #003d7a;
  line-height: 1;
}

.recruit .contents_width h2 span {
  font-size: 2.6rem;
  font-weight: 500;
  color: #222;
}

@media screen and (max-width: 767px) {
  .recruit .contents_width h2 span {
    font-size: 1.5rem;
  }
}

.recruit .contents_width h2 span::before, .recruit .contents_width h2 span::after {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 0.1rem;
  background-color: #222;
  margin: 1.2rem;
}

@media screen and (max-width: 767px) {
  .recruit .contents_width h2 span::before, .recruit .contents_width h2 span::after {
    display: none;
  }
}

.recruit .contents_width .wrapper {
  gap: 5rem;
  padding-top: 3rem;
}

@media screen and (max-width: 767px) {
  .recruit .contents_width .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 0;
    padding-top: 1.6rem;
  }
}

.recruit .contents_width .wrapper .text_area {
  width: calc(100% - 23rem);
  padding: 5rem 0;
}

@media screen and (max-width: 767px) {
  .recruit .contents_width .wrapper .text_area {
    width: 100%;
    padding-top: 1.2rem;
  }
}

.recruit .contents_width .wrapper .text_area p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: calc(23 / 16);
  padding: 1rem 0;
}

@media screen and (max-width: 767px) {
  .recruit .contents_width .wrapper .text_area p {
    font-size: 1.5rem;
    line-height: calc(21 / 15);
  }
}

.recruit .contents_width .wrapper img {
  width: 18rem;
  height: auto;
}

@media screen and (max-width: 767px) {
  .recruit .contents_width .wrapper img {
    width: 8rem;
    margin: 0 0 0 auto;
  }
}

.recruit .contents_width .cv_button {
  margin: 5rem auto 0;
  color: #fff;
  background: #003d7a;
}

.recruit_info {
  margin-top: 5rem;
}

.recruit_info h3 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: calc(38 / 32);
  color: #003d7a;
  padding: 1rem 3rem;
  border-bottom: 1px solid #9bb9d8;
}

@media screen and (max-width: 767px) {
  .recruit_info h3 {
    font-size: 1.8rem;
    padding-left: 1.6rem;
  }
}

.recruit_info dl {
  padding: 1.6em 0 1.6rem 3rem;
  border-bottom: 1px solid #c3c3c3;
}

@media screen and (max-width: 767px) {
  .recruit_info dl {
    padding-left: 0.6rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.recruit_info dl dt {
  width: 25%;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: calc(27 / 16);
}

@media screen and (max-width: 767px) {
  .recruit_info dl dt {
    width: 100%;
    padding-bottom: 1.6rem;
    border-bottom: 1px dotted #c3c3c3;
  }
}

.recruit_info dl dd {
  width: 75%;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: calc(27 / 16);
}

@media screen and (max-width: 767px) {
  .recruit_info dl dd {
    font-size: 1.5rem;
    line-height: calc(21 / 15);
    width: 100%;
    padding-top: 1.6rem;
  }
}

.recruit-form {
  padding: 9.8rem 0 0;
}

@media screen and (max-width: 767px) {
  .recruit-form {
    padding: 3rem 0 4.3rem;
  }
}

.recruit-form .contents_width {
  max-width: 110.8rem;
}

@media screen and (max-width: 767px) {
  .recruit-form .contents_width {
    width: 85.3%;
  }
}

.recruit-form .contents_width h2 {
  margin-bottom: 3rem;
}

.recruit-form .contents_width .center {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 1rem 0;
}

.recruit-form .contents_width .wrapper {
  margin: 5rem 0;
}

.recruit-form .contents_width .wrapper h3 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #003d7a;
  background: #d0e7ff;
  border-bottom: 1px solid #9bb9d8;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
}

@media screen and (max-width: 767px) {
  .recruit-form .contents_width .wrapper h3 {
    font-size: 2.4rem;
  }
}

.recruit-form .contents_width .wrapper .privacypolicy {
  width: 100%;
  height: 18rem;
  overflow: auto;
  padding: 1.5rem 1.5rem 0;
  margin: 3rem 0;
  border: 1px solid #c3c3c3;
}

.recruit-form .contents_width .wrapper .privacypolicy h4 {
  line-height: calc(39 / 23);
}

@media screen and (max-width: 767px) {
  .recruit-form .contents_width .wrapper .privacypolicy h4 {
    font-size: 1.5rem;
  }
}

.recruit-form .contents_width .wrapper .privacypolicy p {
  line-height: calc(37 / 16);
}

@media screen and (max-width: 767px) {
  .recruit-form .contents_width .wrapper .privacypolicy p {
    font-size: 1.4rem;
    line-height: calc(21 / 14);
  }
}

.recruit-form .contents_width form {
  padding: 2rem;
  background: #f3f3f3;
}

@media screen and (max-width: 767px) {
  .recruit-form .contents_width form {
    padding: 0;
  }
}

.recruit-form .contents_width form .form-style {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.6rem;
  border-bottom: 1px solid #c3c3c3;
}

@media screen and (max-width: 767px) {
  .recruit-form .contents_width form .form-style {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.recruit-form .contents_width form .form-style label {
  width: 25%;
  padding: 1.5rem;
}

@media screen and (max-width: 767px) {
  .recruit-form .contents_width form .form-style label {
    width: 100%;
  }
}

.recruit-form .contents_width form .form-style label .required {
  float: right;
  color: #f0f0f0;
  font-weight: 500;
  background-color: #ce052c;
  padding: 0.1rem 0.5rem;
  border-radius: 0.3rem;
}

@media screen and (max-width: 767px) {
  .recruit-form .contents_width form .form-style label .required {
    float: none;
    margin-left: 1rem;
    font-size: 1.4rem;
  }
}

.recruit-form .contents_width form .form-style input,
.recruit-form .contents_width form .form-style textarea {
  width: 75%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1.5rem;
  color: #222;
  background-color: #e5e5e5;
  min-height: 5.2rem;
  font-size: 1.4rem;
  line-height: 1.8;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

@media screen and (max-width: 767px) {
  .recruit-form .contents_width form .form-style input,
  .recruit-form .contents_width form .form-style textarea {
    width: 100%;
  }
}

.recruit-form .contents_width form .form-style .radio-label {
  width: 25%;
  padding: 1.5rem;
}

@media screen and (max-width: 767px) {
  .recruit-form .contents_width form .form-style .radio-label {
    width: 100%;
  }
}

.recruit-form .contents_width form .form-style .radio-input {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  width: 75%;
}

@media screen and (max-width: 767px) {
  .recruit-form .contents_width form .form-style .radio-input {
    width: 100%;
  }
}

.recruit-form .contents_width form .form-style .radio-input .mwform-radio-field {
  width: auto;
}

.recruit-form .contents_width form .form-style .radio-input .mwform-radio-field label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .recruit-form .contents_width form .form-style .radio-input .mwform-radio-field label {
    padding: 0;
  }
}

.recruit-form .contents_width form .form-style .radio-input input {
  width: auto;
  margin: 0 1.6rem;
}

.recruit-form .contents_width form .form-style .form-control:focus {
  background-color: #fff;
}

.recruit-form .contents_width form .form-style .mwform-tel-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 25%;
}

@media screen and (max-width: 767px) {
  .recruit-form .contents_width form .form-style .mwform-tel-field {
    width: 90%;
  }
}

.recruit-form .contents_width form .submit-button {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5rem;
}

@media screen and (max-width: 767px) {
  .recruit-form .contents_width form .submit-button {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    padding: 5rem 0;
  }
}

.recruit-form .contents_width form .cv_button {
  background: #003d7a;
  color: #fff;
  margin: 5rem 0;
}

@media screen and (max-width: 767px) {
  .recruit-form .contents_width form .cv_button {
    margin: 0 auto;
  }
}
/*# sourceMappingURL=style.css.map */