@charset "UTF-8";
a {
  text-decoration: none;
}

a:visited {
  color: inherit; /* クリック前の色を保持 */
}

.no-underline {
  text-decoration: none;
  color: inherit;
}

:root {
  --main-color: #0292d3;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

.header {
  height: 120px;
  background-color: #fff;
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: repeat(12, 1fr);
  place-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.header .header-first {
  grid-column: span 3;
}
.header .header-first:hover {
  cursor: pointer;
}
.header .header-first .header-first-content {
  font: 700 40px "Noto Sans JP";
  display: flex;
  flex-direction: column;
}
.header .header-first .header-first-content .ffff {
  font: 700 16px "Noto Sans JP";
  margin-left: 9px;
}
.header .header-second {
  grid-column: span 6;
  display: flex;
  gap: 7em;
  font: 700 16px "Noto Sans JP";
  color: #5c5c5c;
  position: relative;
}
.header .header-second .dropdown-container .header-second-text-02 {
  cursor: pointer;
  display: flex;
}
.header .header-second .dropdown-container .header-dropdown-01 {
  display: none;
  position: absolute;
  top: 22px;
  left: 120px;
  background-color: white;
  border: 1px solid #ccc;
  z-index: 10000;
  width: 200px;
  border-radius: 5px;
}
.header .header-second .dropdown-container .header-dropdown-01 a {
  display: block;
  padding: 10px;
  text-decoration: none;
}
.header .header-second .dropdown-container .header-dropdown-01 a:hover {
  background-color: #e0e0e0;
  border-radius: 5px;
  color: black;
}
.header .header-second .dropdown-container:hover .header-dropdown-01 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 0px;
}
.header .header-third {
  grid-column: span 1;
  display: flex;
  gap: 5px;
  font-weight: bold;
}
.header .header-third:hover {
  cursor: pointer;
}
.header .header-third .header-third-jp {
  color: #0292d3;
}
.header .header-third .header-third-en {
  color: #5c5c5c;
}
.header .header-third .header-third-en:hover {
  color: #000;
}
.header .header-fourth {
  grid-column: span 2;
  display: grid;
  place-items: center;
}
.header .header-fourth .header-fourth-text {
  background-color: var(--main-color);
  padding: 1em 1.5em;
  border-radius: 30px;
  font: 700 16px "Noto Sans JP";
  color: #fff;
  transition: all 0.3s ease;
}
.header .header-fourth .header-fourth-text:hover {
  cursor: pointer;
  background-color: #fff;
  color: var(--main-color);
  border: 2px solid var(--main-color);
}
.header .burger {
  width: 44px;
  height: 15px;
  display: none;
}
.header .burger:hover {
  cursor: pointer;
}
.header .burger > span {
  display: block;
  width: 70%;
  height: 2px;
  background-color: #000;
}
.header .burger > span:nth-child(1) {
  transform: translateY(-0.5rem);
}
.header .burger > span:nth-child(3) {
  transform: translateY(0.5rem);
}

.top {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about {
  margin-top: 120px;
  width: 100%;
}
.about .about-pic {
  display: flex;
}
.about .about-pic img {
  width: 1200px;
  height: 1200px;
}
.about .about-pic .about-discription {
  width: 30%;
  margin-right: 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font: 400 16px "Noto Sans JP";
  line-height: 200%;
}
.about .about-pic .about-discription .about-btn {
  font: 700 32px "Noto Sans JP";
  margin-top: 128px;
  padding: 0.8em 2em;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 100px;
}

.service {
  width: 90%;
  margin: 0 auto;
}
.service .service-title {
  font: 700 64px Arial, Helvetica, sans-serif;
}
.service .service-subtitle {
  font: 500 24px "Noto Sans JP";
  margin-bottom: 64px;
}
.service .service-content {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  gap: 30px;
  width: 100%;
  height: calc(100% - 202px);
}
.service .service-content .service-content-card {
  border: 1px solid #cacaca;
  border-radius: 5px;
  font: 500 24px "Noto Sans JP";
  width: 316px;
  height: 476px;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.035), 0px 0px 10px rgba(0, 0, 0, 0.07);
  padding: 30px;
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  grid-template-columns: 1fr;
}
.service .service-content .service-content-card .service-content-card-detail-01 {
  display: flex;
  align-items: center;
  grid-row: span 1;
}
.service .service-content .service-content-card .service-content-card-detail-01 .icon-01 {
  font-size: 50px;
}
.service .service-content .service-content-card-detail-02 {
  font-size: 16px;
  line-height: 200%;
  grid-row: span 3;
}
.service .service-content .service-content-card-detail-03 {
  grid-row: span 1;
}

.news {
  height: calc(100vh - 120px);
  margin-top: 120px;
  padding: 64px 0 0 128px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(4, 1fr);
}
.news .news-title {
  font: 700 64px Arial, Helvetica, sans-serif;
  grid-row: span 2/span 2;
}
.news .news-btn {
  grid-row: span 2/span 2;
  grid-column-start: 1;
  grid-row-start: 3;
}
.news .news-btn span {
  background-color: #0a2785;
  color: #fff;
  font: 700 24px "Noto Sans JP";
  padding: 1em 2em;
  border-radius: 100px;
}
.news .news-card {
  grid-column: span 4/span 4;
  grid-row: span 4/span 4;
  grid-column-start: 2;
  grid-row-start: 1;
  background-color: #0a2785;
  border-start-start-radius: 50px;
  padding: 64px 128px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 50px;
}
.news .news-card .news-card-detail {
  border-bottom: 1px solid #fff;
  color: #fff;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr 2fr; /* 上1段と下2段をくっつける */
}
.news .news-card .news-card-detail .news-card-detail-03 {
  display: grid;
  align-items: center;
}

.recruit {
  height: 100%;
  padding: 64px 128px;
  background-image: linear-gradient(90deg, rgb(65, 164, 253), rgb(14, 244, 255));
  border-radius: 50px;
}
.recruit .recruit-title {
  font: 700 64px Arial, Helvetica, sans-serif;
  margin-bottom: 64px;
  color: #fff;
}
.recruit .recruit-content {
  padding: 64px 128px;
}
.recruit .recruit-content .recruit-text-01 {
  color: #fff;
  font: 700 64px "Noto Sans JP";
  margin-bottom: 64px;
}
.recruit .recruit-content .recruit-text-02 {
  color: #fff;
  font: 400 16px "Noto Sans JP";
}
.recruit .recruit-btn {
  display: flex;
  justify-content: end;
}
.recruit .recruit-btn span {
  background-color: #0a2785;
  color: #fff;
  font: 700 32px "Noto Sans JP";
  padding: 1em 2em;
  border-radius: 100px;
}

.contact {
  width: 100%;
  height: 919px;
  background-image: url("../../../public/006.png");
  background-repeat: no-repeat;
  color: #fff;
}
.contact .contact-title {
  font: 700 64px Arial, Helvetica, sans-serif;
  display: flex;
  justify-content: center;
  padding: 64px;
}
.contact .contact-subtitle {
  font: 700 32px Arial, Helvetica, sans-serif;
  display: flex;
  justify-content: center;
}
.contact .contact-tag {
  padding: 64px 128px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact .contact-tag .contact-tag-01 {
  display: flex;
  gap: 30px;
  margin-bottom: 32px;
}
.contact .contact-tag .contact-tag-01 .contact-tag-padding-01 {
  padding: 0.5em 2em;
  background-color: #6c6d6b;
  color: #f2f2f2;
  border-radius: 50px;
}
.contact .contact-tag .contact-tag-02 {
  display: flex;
  gap: 30px;
}
.contact .contact-tag .contact-tag-02 .contact-tag-padding-02 {
  padding: 0.5em 1em;
  background-color: #6c6d6b;
  color: #f2f2f2;
  border-radius: 50px;
}
.contact .contact-line {
  border: 1px solid #fff;
}
.contact .contact-text {
  padding: 0 256px;
  display: flex;
  justify-content: center;
  font-size: 32px;
  font-weight: 700px;
  margin-top: 64px;
}
.contact .contact-btn {
  display: grid;
  align-items: end;
  justify-content: center;
  margin-top: 64px;
}
.contact .contact-btn span {
  background-color: var(--main-color);
  color: #fff;
  font: 700 32px "Noto Sans JP";
  padding: 1em 2em;
  border-radius: 100px;
}

.footer {
  background-color: #e9e9e9;
  height: 480px;
  padding: 64px 128px;
  font: 500 16px "Noto Sans JP";
}
.footer .footer-title {
  display: flex;
  align-items: center;
  margin-bottom: 64px;
  font: 700 32px "Noto Sans JP";
}
.footer .footer-title img {
  width: 50px;
  height: 50px;
}
.footer .footer-content {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: repeat(3, 1fr);
}
.footer .footer-content .address {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer .footer-content .service-cat {
  padding: 0 64px;
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(2, 1fr);
}
.footer .footer-content .footer-face {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer .footer-res {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: repeat(3, 1fr);
}
.footer .footer-end {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}

.about-section {
  width: 90%;
  margin: 120px auto 0 auto;
}
.about-section .about-section-subtitle-Philosophy {
  color: #3a75bb;
  font: 700 64px "Noto Sans JP";
  margin-bottom: 64px;
}
.about-section .a .b {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  place-items: center;
  margin-bottom: 64px;
  font: 700 16px "Noto Sans JP";
}
.about-section .a .b .card-abc {
  border: 1px solid #cacaca;
  width: 300px;
  height: 200px;
  padding: 50px;
  border-radius: 10px;
  line-height: 200%;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.035), 0px 0px 10px rgba(0, 0, 0, 0.07);
  display: grid;
  place-items: center;
}
.about-section .a .c {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  place-items: center;
  margin-bottom: 64px;
  font: 700 16px "Noto Sans JP";
}
.about-section .a .c .card-abc {
  border: 1px solid #cacaca;
  width: 400px;
  height: 200px;
  padding: 50px;
  border-radius: 10px;
  line-height: 200%;
  display: grid;
  place-items: center;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.035), 0px 0px 10px rgba(0, 0, 0, 0.07);
}
.about-section .about-section-subtitle {
  color: #3a75bb;
  padding: 64px 0;
  font: 700 64px "Noto Sans JP";
}
.about-section .about-section-content {
  display: grid;
  grid-template-rows: repeat(11, 1fr);
  grid-template-columns: repeat(10, 1fr);
  align-items: center;
}
.about-section .about-section-content .about-section-content-UL-01 {
  border-bottom: 1px solid #3a75bb;
  padding: 30px;
  grid-column: span 3;
  font: 500 16px "Noto Sans JP";
  color: #3a75bb;
  height: 300px;
  display: grid;
  place-items: center;
}
.about-section .about-section-content .about-section-content-UL-02 {
  border-bottom: 1px solid #cacaca;
  padding: 30px;
  grid-column: span 7;
  font: 500 16px "Noto Sans JP";
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-section .about-section-map {
  color: #3a75bb;
  font: 700 64px "Noto Sans JP";
  margin: 64px 0;
}
.about-section .googlemap {
  display: flex;
  margin: 0 auto;
  margin-bottom: 64px;
}

.service-section {
  width: 90%;
  margin: 120px auto 0 auto;
}
.service-section .service-section-subtitle {
  color: var(--main-color);
  font: 700 16px "Noto Sans JP";
}
.service-section .service-section-title {
  font: 700 48px "Noto Sans JP";
}
.service-section .service-section-content {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  place-items: center;
}
.service-section .service-section-content .service-section-card {
  border: 1px solid #cacaca;
  border-radius: 5px;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.035), 0px 0px 10px rgba(0, 0, 0, 0.07);
  width: 700px;
  height: 400px;
  display: grid;
  align-items: center;
  justify-content: center;
  padding: 32px 64px;
  margin-bottom: 64px;
}
.service-section .service-section-content .service-section-card .service-section-card-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.service-section .service-section-content .service-section-card .service-section-card-detail .code-code {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font: 700 24px "Noto Sans JP";
}
.service-section .service-section-content .service-section-card .service-section-card-detail .code-explain {
  margin-top: 32px;
}

.service02-section {
  width: 90%;
  margin: 120px auto 0 auto;
}
.service02-section .service-section-subtitle {
  color: var(--main-color);
  font: 700 16px "Noto Sans JP";
}
.service02-section .service02-section-title {
  font: 700 48px "Noto Sans JP";
}
.service02-section .service02-section-content {
  margin-top: 64px;
}
.service02-section .service02-section-content .sub-ice {
  font: 700 32px "Noto Sans JP";
  margin-top: 64px;
  color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service02-section .service02-section-content .ice {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  margin-top: 64px;
}
.service02-section .service02-section-content .ice .icce {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.service02-section .service02-section-content .ice .icce .ice-img-img {
  width: 400px;
  height: 400px;
  margin: 0 auto;
}
.service02-section .service02-section-content .ice .icce .ice-img-02 .ice-img-02-title {
  display: flex;
  justify-content: center;
  margin: 32px 0;
}
.service02-section .service02-section-content .ice .icce .ice-img-02 .ice-img-02-title > span {
  padding: 1em 3em;
  background-color: var(--main-color);
  color: #fff;
  font: 700 16px "Noto Sans JP";
  border-radius: 5px;
}
.service02-section .service02-section-content .ice .icce .ice-img-02 .ice-img-02-explain {
  padding: 32px;
}

.service03-section {
  width: 90%;
  margin: 120px auto 0 auto;
}
.service03-section .service03-section-subtitle {
  color: var(--main-color);
  font: 700 16px "Noto Sans JP";
}
.service03-section .service03-section-title {
  font: 700 48px "Noto Sans JP";
}
.service03-section .service03-section-content {
  margin-top: 64px;
}
.service03-section .service03-section-content .service03-section-contetn-card {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin-bottom: 128px;
}
.service03-section .service03-section-content .service03-section-contetn-card .service03-section-card-title-01 {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Meiryo", sans-serif;
  font-size: 20px;
  border: 1px solid #cacaca;
  padding: 32px 64px;
  border-radius: 5px;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.035), 0px 0px 10px rgba(0, 0, 0, 0.07);
}
.service03-section .service03-section-content .service03-section-contetn-card .service03-section-card-title-01 .service03-section-contetn-card-01 {
  margin-top: 64px;
}
.service03-section .service03-section-content .service03-section-contetn-card .service03-section-card-title-01 .service03-section-contetn-card-01 img {
  width: 60%;
  height: 60%;
  margin: 0 auto;
}
.service03-section .service03-section-content .service03-section-contetn-card .service03-section-card-title-01 .service03-section-contetn-card-01 .service03-section-content-btns {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin-top: 64px;
}
.service03-section .service03-section-content .service03-section-contetn-card .service03-section-card-title-01 .service03-section-contetn-card-01 .service03-section-content-btns .service03-section-content-btn {
  padding: 1em 2em;
  background-color: #ffd814;
  color: #323c12;
  font: 700 16px "Noto Sans JP";
  border-radius: 10px;
}
.service03-section .service03-section-content .service03-section-contetn-card .service03-section-card-title-02 {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Meiryo", sans-serif;
  font-size: 20px;
  border: 1px solid #cacaca;
  padding: 32px 64px;
  border-radius: 5px;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.035), 0px 0px 10px rgba(0, 0, 0, 0.07);
}
.service03-section .service03-section-content .service03-section-contetn-card .service03-section-card-title-02 .service03-section-contetn-card-02 {
  margin-top: 64px;
}
.service03-section .service03-section-content .service03-section-contetn-card .service03-section-card-title-02 .service03-section-contetn-card-02 img {
  width: 60%;
  height: 60%;
  margin: 0 auto;
}
.service03-section .service03-section-content .service03-section-contetn-card .service03-section-card-title-02 .service03-section-contetn-card-02 .service03-section-content-btns {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin-top: 64px;
}
.service03-section .service03-section-content .service03-section-contetn-card .service03-section-card-title-02 .service03-section-contetn-card-02 .service03-section-content-btns .service03-section-content-btn {
  padding: 1em 2em;
  background-color: #ffd814;
  color: #323c12;
  font: 700 16px "Noto Sans JP";
  border-radius: 10px;
}

.service04-section {
  width: 90%;
  margin: 120px auto 0 auto;
}
.service04-section .service04-section-subtitle {
  color: var(--main-color);
  font: 700 16px "Noto Sans JP";
}
.service04-section .service04-section-title {
  font: 700 48px "Noto Sans JP";
}
.service04-section .service04-section-content {
  margin-top: 64px;
  align-items: center;
}
.service04-section .service04-section-content .lang {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-bottom: 64px;
}
.service04-section .service04-section-content .lang .lang-img {
  width: 400px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  gap: 10px;
  border: 1px solid #cacaca;
  font-weight: 700;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.035), 0px 0px 10px rgba(0, 0, 0, 0.07);
}
.service04-section .service04-section-content .service-section-04 {
  margin: 64px 0;
}
.service04-section .service04-section-content .service-section-04 .service-section-04-img {
  display: grid;
  place-items: center;
}
.service04-section .service04-section-content .service-section-04 .service-section-04-img .his {
  margin-bottom: 64px;
  border-radius: 5px;
  display: inline-block;
  padding: 1em 2em;
  background-color: var(--main-color);
  color: #fff;
  font: 700 16px "Noto Sans JP";
}
.service04-section .service04-section-content .service-section-04 .service-section-04-img-02 {
  display: grid;
  place-items: center;
}
.service04-section .service04-section-content .service-section-04 .service-section-04-img-02 img {
  width: 1000px;
  height: 1000px;
  -o-object-fit: contain;
     object-fit: contain;
}
.service04-section .service04-section-content .service-section-04 .service-section-04-img-02 .his {
  margin-bottom: 64px;
  border-radius: 5px;
  display: inline-block;
  padding: 1em 2em;
  background-color: var(--main-color);
  color: #fff;
  font: 700 16px "Noto Sans JP";
}
.service04-section .service04-section-content .paf {
  margin-bottom: 64px;
}

.service05-section {
  width: calc(100% - 320px);
  margin: 120px auto 0 auto;
}
.service05-section .service05-section-subtitle {
  font: 700 16px "Noto Sans JP";
  padding-top: 64px;
  color: var(--main-color);
}
.service05-section .service05-section-title {
  font: 700 48px "Noto Sans JP";
}
.service05-section .service05-section-content {
  width: 90%;
  margin: 0 auto;
  margin-top: 64px;
  align-items: center;
}
.service05-section .service05-section-content .zzz {
  display: grid;
  place-items: center;
  font: 700 32px "Noto Sans JP";
}
.service05-section .service05-section-content .service-section-05 {
  display: flex;
  justify-content: center;
  margin: 64px 0;
  gap: 50px;
}
.service05-section .service05-section-content .service-section-05 .service-section-05-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  font: 700 16px "Noto Sans JP";
}
.service05-section .service05-section-content .service-section-05 .service-section-05-img .xxx {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.service05-section .service05-section-content .service-section-05 .service-section-05-img img {
  width: 300px;
  height: 300px;
  border: 1px solid #cacaca;
  border-radius: 50%;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.035), 0px 0px 5px rgba(0, 0, 0, 0.07);
  padding: 0 20px;
}
.service05-section .service05-section-content .hhh {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}

.service06-section {
  width: calc(100% - 320px);
  height: 100vh;
  margin: 120px auto 0 auto;
}
.service06-section .service06-section-title {
  font: 700 48px "Noto Sans JP";
  padding-top: 64px;
}
.service06-section .service06-section-content {
  margin-top: 64px;
}
.service06-section .service06-section-content .web {
  display: flex;
  justify-content: space-between;
  margin-top: 64px;
}
.service06-section .service06-section-content .web .web-img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.service06-section .service06-section-content .web .web-img img {
  width: 500px;
  height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
}

.news-section {
  width: 90%;
  margin: 0 auto;
}
.news-section .news-section-title {
  font: 700 16px "Noto Sans JP";
  padding-top: 64px;
  margin: 120px auto 0 auto;
}
.news-section .news-section-subtitle {
  margin: 0 auto;
  color: #3a75bb;
  font: 700 64px "Noto Sans JP";
}
.news-section .news-section-content {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: center;
  margin-top: 64px;
  gap: 20px;
}
.news-section .news-section-content .news-section-content-card {
  display: grid;
  place-items: center;
}
.news-section .news-section-content .news-section-content-card .news-section-content-card-text {
  background-color: #cccccc;
  border-end-end-radius: 10px;
  border-end-start-radius: 10px;
  line-height: 200%;
  padding: 10px;
  width: 400px;
}
.news-section .news-section-content .news-section-content-card .news-section-content-card-text .news-section-content-card-text-date {
  font-size: 12px;
  font-weight: bold;
}
.news-section .news-section-content .news-section-content-card img {
  width: 400px;
  height: 200px;
  border-start-start-radius: 10px;
  border-start-end-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}

.article001 {
  margin-top: 120px;
  width: 80%;
  margin: 120px auto;
}
.article001 .article001-title {
  font-size: 48px;
  margin: 64px 0;
}
.article001 .article001-text {
  margin-top: 64px;
}
.article001 .article001-img {
  width: 600px;
  height: 300px;
  background-color: lightgray;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 64px 0;
}

.service-recruit-section {
  width: 90%;
  margin: 120px auto 0 auto;
}
.service-recruit-section .service-recruit-section-title {
  font: 700 16px "Noto Sans JP";
  padding-top: 64px;
}
.service-recruit-section .service-recruit-section-subtitle {
  color: #3a75bb;
  font: 700 64px "Noto Sans JP";
  margin-bottom: 64px;
}
.service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 150px;
  place-items: center;
}
.service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-recruit-section-content-new {
  border: 1px solid #000;
  padding: 30px;
  border-radius: 30px;
  margin-bottom: 64px;
  width: 560px;
  height: 580px;
}
.service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-recruit-section-content-new .service-section-content-new-01 {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-recruit-section-content-new .service-section-content-new-01 .aa {
  border: 1px solid #000000;
  padding: 30px;
  width: 80px;
  height: 80px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-recruit-section-content-new .service-section-content-new-01 .aa img {
  width: 50px;
  height: 50px;
}
.service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-recruit-section-content-new .service-section-content-new-01 .service-section-content-title {
  font-size: 18px;
}
.service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-recruit-section-content-new .service-section-content-new-01 .service-section-content-text-0 {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-recruit-section-content-new .service-section-content-new-01 .service-section-content-text-0 .service-section-content-text-01 {
  padding: 1em 2em;
  background-color: #e7e7e7;
  color: #4e83c2;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
}
.service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-recruit-section-content-new .service-section-content-new-02 {
  height: 300px;
}
.service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-recruit-section-content-new .service-section-content-new-03 {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  place-items: center;
}
.service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-recruit-section-content-new .service-section-content-new-03 .service-section-content-new-03-btn {
  padding: 1em 3em;
  border: 1px solid #000;
  border-radius: 50px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-recruit-section-content-new .service-section-content-new-03 .service-section-content-new-03-btn .bb {
  font-size: 14px;
}
.service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-section-content-old {
  border: 1px solid #000;
  padding: 30px;
  border-radius: 30px;
  margin-bottom: 64px;
  width: 560px;
  height: 580px;
}
.service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-section-content-old .service-section-content-old-01 {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-section-content-old .service-section-content-old-01 .aa {
  font-size: 32px;
  border: 1px solid #000000;
  padding: 30px;
  width: 80px;
  height: 80px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-section-content-old .service-section-content-old-01 .service-section-content-title {
  font-size: 18px;
}
.service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-section-content-old .service-section-content-old-01 .service-section-content-text {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-section-content-old .service-section-content-old-01 .service-section-content-text .service-section-content-text-01 {
  padding: 1em 2em;
  background-color: #e7e7e7;
  color: #4e83c2;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
}
.service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-section-content-old .service-section-content-old-02 {
  height: 300px;
}
.service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-section-content-old .service-section-content-old-03 {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  place-items: center;
}
.service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-section-content-old .service-section-content-old-03 .service-section-content-old-03-btn {
  padding: 1em 3em;
  border: 1px solid #000;
  border-radius: 50px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-section-ng-content {
  width: calc(100% - 320px);
  margin: 0 auto;
  margin-top: 120px;
  padding: 64px 128px;
}
.contact-section-ng-content .about-section-ng-title {
  font: 700 16px "Noto Sans JP";
  padding-top: 64px;
}
.contact-section-ng-content .about-section-ng-subtitle {
  color: #3a75bb;
  font: 700 64px "Noto Sans JP";
}
.contact-section-ng-content .about-section-ng-content {
  display: grid;
  grid-template-rows: repeat(11, 1fr);
  grid-template-columns: repeat(10, 1fr);
  align-items: center;
}
.contact-section-ng-content .about-section-ng-content .about-section-content-UL-01-ng {
  border-bottom: 1px solid #3a75bb;
  padding: 30px;
  grid-column: span 3;
  font: 500 16px "Noto Sans JP";
  color: #3a75bb;
  height: 205px;
}
.contact-section-ng-content .about-section-ng-content .about-section-content-UL-02-ng {
  border-bottom: 1px solid #cacaca;
  padding: 30px;
  grid-column: span 7;
  font: 500 16px "Noto Sans JP";
  height: 205px;
}

.contact-section-sales-content {
  width: calc(100% - 320px);
  margin: 0 auto;
  margin-top: 120px;
  padding: 64px 128px;
}
.contact-section-sales-content .about-section-sales-title {
  font: 700 16px "Noto Sans JP";
  padding-top: 64px;
}
.contact-section-sales-content .about-section-sales-subtitle {
  color: #3a75bb;
  font: 700 64px "Noto Sans JP";
}
.contact-section-sales-content .about-section-sales-content {
  display: grid;
  grid-template-rows: repeat(11, 1fr);
  grid-template-columns: repeat(10, 1fr);
  align-items: center;
}
.contact-section-sales-content .about-section-sales-content .about-section-content-UL-01-sales {
  border-bottom: 1px solid #3a75bb;
  padding: 30px;
  grid-column: span 3;
  font: 500 16px "Noto Sans JP";
  color: #3a75bb;
  height: 205px;
}
.contact-section-sales-content .about-section-sales-content .about-section-content-UL-02-sales {
  border-bottom: 1px solid #cacaca;
  padding: 30px;
  grid-column: span 7;
  font: 500 16px "Noto Sans JP";
  height: 205px;
}

.contact-section-content {
  width: calc(100% - 320px);
  margin: 0 auto;
  margin-top: 120px;
  padding: 64px 128px;
}
.contact-section-content .about-section-title {
  font: 700 16px "Noto Sans JP";
  padding-top: 64px;
}
.contact-section-content .about-section-subtitle {
  color: #3a75bb;
  font: 700 64px "Noto Sans JP";
}
.contact-section-content .about-section-content {
  display: grid;
  grid-template-rows: repeat(11, 1fr);
  grid-template-columns: repeat(10, 1fr);
  align-items: center;
}
.contact-section-content .about-section-content .about-section-content-UL-01 {
  border-bottom: 1px solid #3a75bb;
  padding: 30px;
  grid-column: span 3;
  font: 500 16px "Noto Sans JP";
  color: #3a75bb;
  height: 205px;
}
.contact-section-content .about-section-content .about-section-content-UL-02 {
  border-bottom: 1px solid #cacaca;
  padding: 30px;
  grid-column: span 7;
  font: 500 16px "Noto Sans JP";
  height: 205px;
}

.contact-section-se-content {
  width: calc(100% - 320px);
  margin: 0 auto;
  margin-top: 120px;
  padding: 64px 128px;
}
.contact-section-se-content .about-section-se-title {
  font: 700 16px "Noto Sans JP";
  padding-top: 64px;
}
.contact-section-se-content .about-section-se-subtitle {
  color: #3a75bb;
  font: 700 64px "Noto Sans JP";
}
.contact-section-se-content .about-section-se-content {
  display: grid;
  grid-template-rows: repeat(11, 1fr);
  grid-template-columns: repeat(10, 1fr);
  align-items: center;
}
.contact-section-se-content .about-section-se-content .about-section-se-content-UL-01 {
  border-bottom: 1px solid #3a75bb;
  padding: 30px;
  grid-column: span 3;
  font: 500 16px "Noto Sans JP";
  color: #3a75bb;
  height: 205px;
}
.contact-section-se-content .about-section-se-content .about-section-se-content-UL-02 {
  border-bottom: 1px solid #cacaca;
  padding: 30px;
  grid-column: span 7;
  font: 500 16px "Noto Sans JP";
  height: 205px;
}

.contact-section-content {
  width: calc(100% - 320px);
  margin: 0 auto;
  margin-top: 120px;
  padding: 64px 128px;
}
.contact-section-content .contact-section-content-title {
  font: 700 64px "Noto Sans JP";
}
.contact-section-content .contact-section-content-explain {
  font: 400 16px "Noto Sans JP";
  margin: 64px 0;
}
.contact-section-content .contact-section-content-first {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  grid-template-columns: repeat(10, 1fr);
  gap: 50px 10px;
  font: 700 16px "Noto Sans JP";
}
.contact-section-content .contact-section-content-first .contact-section-content-first-text-01 {
  grid-column: span 2;
  display: grid;
  justify-content: end;
  align-items: center;
}
.contact-section-content .contact-section-content-first .contact-section-content-first-text-03 {
  grid-column: span 1;
  display: grid;
  justify-content: end;
  align-items: center;
}
.contact-section-content .contact-section-content-first .contact-section-content-first-text-02 {
  grid-column: span 7;
}
.contact-section-content .contact-section-content-first .contact-section-content-first-text-02 input {
  width: 80%;
  padding: 10px;
  border: 2px solid #ccc;
  border-radius: 5px;
  font: 700 16px "Noto Sans JP";
  color: #555;
  outline: none;
}
.contact-section-content .contact-section-content-first .contact-section-content-first-text-02 input:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.contact-section-content .contact-section-content-third {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: repeat(10, 1fr);
  gap: 0 10px;
  font: 700 16px "Noto Sans JP";
  margin-top: 50px;
}
.contact-section-content .contact-section-content-third .contact-section-content-third-text-01 {
  grid-column: span 2;
  display: grid;
  justify-content: end;
}
.contact-section-content .contact-section-content-third .contact-section-content-third-text-03 {
  grid-column: span 1;
  display: grid;
  justify-content: end;
}
.contact-section-content .contact-section-content-third .contact-section-content-third-text-02 {
  grid-column: span 7;
}
.contact-section-content .contact-section-content-third .contact-section-content-third-text-02 textarea {
  width: 80%;
  height: 500px;
  padding: 10px;
  border: 2px solid #ccc;
  border-radius: 5px;
  font: 700 16px "Noto Sans JP";
  color: #555;
  outline: none;
}
.contact-section-content .contact-section-content-third .contact-section-content-third-text-02 textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.contact-section-content .contact-section-content-second {
  display: block;
  padding: 0.5em 2em;
  font: 700 24px "Noto Sans JP";
  text-align: center;
  text-decoration: none;
  color: #555;
  background-color: #fff;
  border: 2px solid #ccc;
  border-radius: 100px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 64px auto;
  width: 80%;
}
.contact-section-content .contact-section-content-second:hover {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  color: #007bff;
}
.contact-section-content .reference-mark {
  font-weight: 700;
  color: red;
}
.contact-section-content .hr {
  margin-top: 64px;
}
.contact-section-content .hr2 {
  margin: 64px 0;
  display: flex;
  justify-content: center;
  font: 400 16px "Noto Sans JP";
}

.ppp {
  color: #007bff;
}

.aaaaa {
  height: 100vh;
  margin-top: 120px;
}

@media (max-width: 430px) {
  .header {
    grid-template-columns: repeat(12, 1fr);
  }
  .header .header-first {
    grid-column: span 8;
  }
  .header .header-first .header-first-content {
    font: 700 32px "Noto Sans JP";
  }
  .header .header-second {
    position: absolute;
    right: 0;
    height: 100vh;
    top: 120px;
    background-color: #f7f7f7;
    flex-direction: column;
    padding: 30px 50px;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    gap: 3em !important;
  }
  .header .header-second .dropdown-container .header-dropdown-01 {
    left: -155px;
  }
  .header .header-second.active {
    transform: translateX(0%) !important;
  }
  .header .header-third {
    position: absolute;
    right: 0;
    top: 400px;
    padding: 30px 50px;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    gap: 1em !important;
  }
  .header .header-third.active {
    transform: translateX(0%) !important;
  }
  .header .header-fourth {
    position: absolute;
    right: 0;
    top: 500px;
    align-items: center;
    margin-right: 20px;
    transform: translateX(120%);
    transition: transform 0.3s ease-in-out;
    gap: 1em !important;
  }
  .header .header-fourth.active {
    transform: translateX(0%) !important;
  }
  .header .burger {
    display: grid !important;
    grid-column: span 3;
    place-items: center;
  }
  .top {
    height: 500px;
    transform: scale(170%, 170%); /* 中央に配置 */
    margin-top: 120px;
    margin-left: 20px;
    z-index: -1;
  }
  .about {
    margin-top: 120px;
    width: 100%;
  }
  .about .about-pic {
    display: flex;
    flex-direction: column;
  }
  .about .about-pic img {
    width: 400px;
    height: 400px;
  }
  .about .about-pic .about-discription {
    width: 90%;
    margin: 0 auto;
  }
  .service {
    width: 90%;
    margin: 128px auto;
  }
  .service .service-title {
    font: 700 64px Arial, Helvetica, sans-serif;
    margin-top: 32px;
  }
  .service .service-subtitle {
    font: 500 24px "Noto Sans JP";
    margin: 32px 0;
  }
  .service .service-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
  }
  .service .service-content .service-content-card {
    border: 1px solid #cacaca;
    border-radius: 5px;
    font: 500 24px "Noto Sans JP";
    width: 300px;
    height: 400px;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.035), 0px 0px 10px rgba(0, 0, 0, 0.07);
    padding: 30px;
    display: grid;
    grid-template-rows: repeat(5, 1fr);
    grid-template-columns: 1fr;
  }
  .service .service-content .service-content-card .service-content-card-detail-01 {
    display: flex;
    align-items: center;
    grid-row: span 1;
  }
  .service .service-content .service-content-card .service-content-card-detail-01 .icon-01 {
    font-size: 50px;
  }
  .service .service-content .service-content-card-detail-02 {
    font-size: 16px;
    line-height: 200%;
    grid-row: span 3;
  }
  .service .service-content .service-content-card-detail-03 {
    grid-row: span 1;
  }
  .news {
    display: block;
    padding: 0;
  }
  .news .news-title {
    margin: 64px 0;
  }
  .news .news-btn {
    margin-bottom: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .news .news-btn span {
    font: 700 24px "Noto Sans JP" !important;
  }
  .news .news-card {
    padding: 32px !important;
  }
  .news .news-card .news-card-detail .news-card-detail-01 {
    grid-column: 1/2; /* 左上のブロック */
    grid-row: 1/2;
  }
  .news .news-card .news-card-detail .news-card-detail-02 {
    grid-column: 2/3; /* 右上のブロック */
    grid-row: 1/2;
  }
  .news .news-card .news-card-detail .news-card-detail-03 {
    font: 700 16px "Noto Sans JP" !important;
    grid-column: 1/3; /* 左下と右下のブロックを統合 */
    grid-row: 2/3;
  }
  .recruit {
    padding: 32px;
    height: calc(100vh - 120px);
  }
  .recruit .recruit-title {
    font: 700 48px Arial, Helvetica, sans-serif;
  }
  .recruit .recruit-content {
    padding: 32px;
  }
  .recruit .recruit-content .recruit-text-01 {
    font: 700 24px "Noto Sans JP";
  }
  .recruit .recruit-content .recruit-text-02 {
    color: #fff;
    font: 400 16px "Noto Sans JP";
  }
  .recruit .recruit-btn {
    display: flex;
    justify-content: center;
  }
  .recruit .recruit-btn span {
    background-color: #0a2785;
    color: #fff;
    font: 700 24px "Noto Sans JP";
    padding: 1em 2em;
    border-radius: 100px;
  }
  .contact {
    padding: 32px 0;
  }
  .contact .contact-title {
    font: 700 32px Arial, Helvetica, sans-serif;
    padding: 32px;
  }
  .contact .contact-subtitle {
    font: 700 24px Arial, Helvetica, sans-serif;
  }
  .contact .contact-tag {
    padding: 0;
    font: 700 8px "Noto Sans JP";
    margin-top: 32px;
  }
  .contact .contact-tag .contact-tag-01 {
    display: flex;
    gap: 5px;
    margin-bottom: 32px;
  }
  .contact .contact-tag .contact-tag-01 .contact-tag-padding-01 {
    padding: 0.1em 0.5em;
    background-color: #6c6d6b;
    color: #f2f2f2;
    border-radius: 50px;
    display: flex;
  }
  .contact .contact-tag .contact-tag-02 {
    display: flex;
    gap: 5px;
    margin-bottom: 32px;
  }
  .contact .contact-tag .contact-tag-02 .contact-tag-padding-02 {
    padding: 0.1em 0.5em;
    background-color: #6c6d6b;
    color: #f2f2f2;
    border-radius: 50px;
    display: flex;
  }
  .contact .contact-text {
    padding: 32px;
    font: 700 30px "Noto Sans JP";
    margin-top: 64px;
  }
  .contact .contact-btn {
    margin-bottom: 16px;
  }
  .contact .contact-btn span {
    background-color: var(--main-color);
    color: #fff;
    font: 700 20px "Noto Sans JP";
    padding: 1em 2em;
    border-radius: 100px;
  }
  .footer {
    padding: 32px;
  }
  .footer .footer-content {
    font: 700 10px "Noto Sans JP";
  }
  .footer .footer-content .service-cat {
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }
  .footer .footer-end {
    display: flex;
    justify-content: center;
    margin-top: 64px;
  }
  .about-section {
    width: 100%;
    height: 100%;
  }
  .about-section .about-section-subtitle-Philosophy {
    padding: 32px;
  }
  .about-section .about-section-subtitle {
    padding: 32px;
  }
  .about-section .a .b {
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
  }
  .about-section .a .b .card-abc {
    width: 200px;
    height: 100px;
  }
  .about-section .a .c {
    display: flex;
    flex-direction: column;
  }
  .about-section .a .c .card-abc {
    width: 200px;
    height: 100px;
  }
  .about-section .googlemap {
    width: 90%;
  }
  .service-section {
    width: 100%;
    padding: 0;
  }
  .service-section .service-section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .service-section .service-section-content .service-section-card {
    width: 300px;
    height: 400px;
    padding: 32px;
  }
  .service02-section {
    width: 90%;
  }
  .service02-section .service02-section-content .ice {
    display: flex;
    flex-direction: column;
  }
  .service02-section .service02-section-content .ice .icce .ice-img-02 .ice-img-02-explain {
    margin: 32px 0;
  }
  .service03-section {
    width: 90%;
    padding: 32px;
  }
  .service03-section .service03-section-content .service03-section-contetn-card {
    flex-direction: column;
    gap: 30px;
  }
  .service03-section .service03-section-content .service03-section-contetn-card .service03-section-card-title-01 .service03-section-contetn-card-01 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .service03-section .service03-section-content .service03-section-contetn-card .service03-section-card-title-01 .service03-section-contetn-card-01 .service03-section-content-btns .service03-section-content-btn {
    padding: 1em 1em;
  }
  .service03-section .service03-section-content .service03-section-contetn-card .service03-section-card-title-02 .service03-section-contetn-card-02 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .service03-section .service03-section-content .service03-section-contetn-card .service03-section-card-title-02 .service03-section-contetn-card-02 .service03-section-content-btns .service03-section-content-btn {
    padding: 1em 1em;
  }
  .service04-section {
    width: 90%;
    margin: 0 auto;
  }
  .service04-section .service04-section-content .lang {
    flex-direction: column;
    gap: 10px;
  }
  .service04-section .service04-section-content .lang .lang-img {
    width: 300px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    gap: 10px;
    border: 1px solid #cacaca;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.035), 0px 0px 10px rgba(0, 0, 0, 0.07);
  }
  .service04-section .service04-section-content .service-section-04 {
    margin: 64px 0;
  }
  .service04-section .service04-section-content .service-section-04 .service-section-04-img {
    display: grid;
    place-items: center;
  }
  .service04-section .service04-section-content .service-section-04 .service-section-04-img img {
    width: 90%;
    height: 90%;
  }
  .service04-section .service04-section-content .service-section-04 .service-section-04-img .his {
    margin-bottom: 64px;
    border-radius: 5px;
    display: inline-block;
    padding: 1em 2em;
    background-color: var(--main-color);
    color: #fff;
    font: 700 16px "Noto Sans JP";
  }
  .service04-section .service04-section-content .service-section-04 .service-section-04-img-02 {
    display: grid;
    place-items: center;
  }
  .service04-section .service04-section-content .service-section-04 .service-section-04-img-02 img {
    width: 300px;
    height: 300px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .service04-section .service04-section-content .service-section-04 .service-section-04-img-02 .his {
    margin-bottom: 64px;
    border-radius: 5px;
    display: inline-block;
    padding: 1em 2em;
    background-color: var(--main-color);
    color: #fff;
    font: 700 16px "Noto Sans JP";
  }
  .service05-section {
    width: 90%;
    padding: 32px;
  }
  .service05-section .service05-section-content {
    width: 100%;
  }
  .service05-section .service05-section-content .service-section-05 {
    flex-direction: column;
  }
  .service06-section {
    width: 90%;
    height: 100%;
    padding: 0;
    margin: 120px auto;
  }
  .service06-section .service06-section-title {
    font: 700 40px "Noto Sans JP";
  }
  .service06-section .service06-section-content {
    width: 100%;
  }
  .service06-section .service06-section-content .web {
    flex-direction: column;
  }
  .news-section {
    width: 90%;
    height: 100%;
  }
  .news-section .news-section-content {
    display: flex;
    flex-direction: column;
    margin-bottom: 64px;
  }
  .news-section .news-section-content .news-section-content-card .news-section-content-card-text {
    width: 300px;
  }
  .news-section .news-section-content .news-section-content-card img {
    width: 300px;
  }
  .service-recruit-section {
    width: 90%;
  }
  .service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0px;
  }
  .service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-recruit-section-content-new {
    padding: 20px;
  }
  .service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-recruit-section-content-new .service-section-content-new-03 .service-section-content-new-03-btn {
    padding: 1em 2em;
  }
  .service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-section-content-old {
    padding: 20px;
  }
  .service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-section-content-old .service-section-content-old-03 .service-section-content-old-03-btn {
    padding: 1em 2em;
  }
  .contact-section-ng-content {
    width: 90%;
    padding: 0;
  }
  .contact-section-se-content {
    width: 90%;
    padding: 0;
  }
  .contact-section-sales-content {
    width: 90%;
    padding: 0;
  }
  .contact-section-content {
    width: 90%;
    margin: 120px auto;
    padding: 0;
  }
  .contact-section-content .contact-section-content-title {
    font: 700 32px "Noto Sans JP";
  }
  .contact-section-content .hr2 {
    display: block;
  }
}
@media (min-width: 431px) and (max-width: 900px) {
  .header {
    grid-template-columns: repeat(12, 1fr);
  }
  .header .header-first {
    grid-column: span 8;
  }
  .header .header-first .header-first-content {
    font: 700 32px "Noto Sans JP";
  }
  .header .header-second {
    position: absolute;
    right: 0;
    height: 100vh;
    top: 120px;
    background-color: #f7f7f7;
    flex-direction: column;
    padding: 30px 50px;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    gap: 3em !important;
  }
  .header .header-second .dropdown-container .header-dropdown-01 {
    left: -152px;
  }
  .header .header-second.active {
    transform: translateX(0%) !important;
  }
  .header .header-third {
    position: absolute;
    right: 0;
    top: 400px;
    padding: 30px 50px;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    gap: 1em !important;
  }
  .header .header-third.active {
    transform: translateX(0%) !important;
  }
  .header .header-fourth {
    position: absolute;
    right: 0;
    top: 500px;
    align-items: center;
    margin-right: 20px;
    transform: translateX(120%);
    transition: transform 0.3s ease-in-out;
    gap: 1em !important;
  }
  .header .header-fourth.active {
    transform: translateX(0%) !important;
  }
  .header .burger {
    display: grid !important;
    grid-column: span 3;
    place-items: center;
  }
  .top {
    height: 500px;
    transform: scale(170%, 170%); /* 中央に配置 */
    margin-top: 120px;
    margin-left: 20px;
    z-index: -1;
  }
  .about {
    margin-top: 120px;
    width: 100%;
  }
  .about .about-pic {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .about .about-pic img {
    width: 1200px;
    height: 1200px;
  }
  .about .about-pic .about-discription {
    width: 90%;
    margin: 0 auto;
  }
  .service {
    width: 90%;
    margin: 128px auto;
  }
  .service .service-title {
    font: 700 64px Arial, Helvetica, sans-serif;
    margin-top: 32px;
  }
  .service .service-subtitle {
    font: 500 24px "Noto Sans JP";
    margin: 32px 0;
  }
  .service .service-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
  }
  .service .service-content .service-content-card {
    border: 1px solid #cacaca;
    border-radius: 5px;
    font: 500 24px "Noto Sans JP";
    width: 300px;
    height: 400px;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.035), 0px 0px 10px rgba(0, 0, 0, 0.07);
    padding: 30px;
    display: grid;
    grid-template-rows: repeat(5, 1fr);
    grid-template-columns: 1fr;
  }
  .service .service-content .service-content-card .service-content-card-detail-01 {
    display: flex;
    align-items: center;
    grid-row: span 1;
  }
  .service .service-content .service-content-card .service-content-card-detail-01 .icon-01 {
    font-size: 50px;
  }
  .service .service-content .service-content-card-detail-02 {
    font-size: 16px;
    line-height: 200%;
    grid-row: span 3;
  }
  .service .service-content .service-content-card-detail-03 {
    grid-row: span 1;
  }
  .news {
    display: block;
    padding: 0;
    height: 100%;
  }
  .news .news-title {
    margin: 64px 0;
  }
  .news .news-btn {
    margin-bottom: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .news .news-btn span {
    font: 700 24px "Noto Sans JP" !important;
  }
  .news .news-card {
    padding: 32px !important;
    width: 100%;
  }
  .news .news-card .news-card-detail .news-card-detail-01 {
    grid-column: 1/2; /* 左上のブロック */
    grid-row: 1/2;
  }
  .news .news-card .news-card-detail .news-card-detail-02 {
    grid-column: 2/3; /* 右上のブロック */
    grid-row: 1/2;
  }
  .news .news-card .news-card-detail .news-card-detail-03 {
    font: 700 16px "Noto Sans JP" !important;
    grid-column: 1/3; /* 左下と右下のブロックを統合 */
    grid-row: 2/3;
  }
  .recruit {
    padding: 32px;
    width: 100%;
  }
  .recruit .recruit-content {
    padding: 32px;
  }
  .recruit .recruit-btn span {
    font-size: 24px;
  }
  .contact {
    width: 100%;
  }
  .contact .contact-title {
    font: 700 32px Arial, Helvetica, sans-serif;
  }
  .contact .contact-subtitle {
    font: 700 24px Arial, Helvetica, sans-serif;
  }
  .contact .contact-tag {
    padding: 0;
    font: 700 8px "Noto Sans JP";
    margin-top: 32px;
  }
  .contact .contact-tag .contact-tag-01 {
    display: flex;
    gap: 5px;
    margin-bottom: 32px;
  }
  .contact .contact-tag .contact-tag-01 .contact-tag-padding-01 {
    padding: 0.1em 0.5em;
    background-color: #6c6d6b;
    color: #f2f2f2;
    border-radius: 50px;
    display: flex;
  }
  .contact .contact-tag .contact-tag-02 {
    display: flex;
    gap: 5px;
    margin-bottom: 32px;
  }
  .contact .contact-tag .contact-tag-02 .contact-tag-padding-02 {
    padding: 0.1em 0.5em;
    background-color: #6c6d6b;
    color: #f2f2f2;
    border-radius: 50px;
    display: flex;
  }
  .contact .contact-text {
    padding: 32px;
    font: 700 30px "Noto Sans JP";
    margin-top: 64px;
  }
  .contact .contact-btn span {
    background-color: var(--main-color);
    color: #fff;
    font: 700 20px "Noto Sans JP";
    padding: 1em 2em;
    border-radius: 100px;
  }
  .footer {
    padding: 32px;
  }
  .footer .footer-content {
    font: 700 10px "Noto Sans JP";
  }
  .footer .footer-content .service-cat {
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }
  .footer .footer-end {
    display: flex;
    justify-content: center;
    margin-top: 64px;
  }
  .about-section {
    width: 100%;
    height: 100%;
  }
  .about-section .about-section-subtitle-Philosophy {
    padding: 32px;
  }
  .about-section .about-section-subtitle {
    padding: 32px;
  }
  .about-section .a .b {
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
  }
  .about-section .a .b .card-abc {
    width: 300px;
    height: 100px;
  }
  .about-section .a .c {
    display: flex;
    flex-direction: column;
  }
  .about-section .a .c .card-abc {
    width: 300px;
    height: 100px;
  }
  .about-section .googlemap {
    width: 90%;
  }
  .service-section {
    width: 90%;
    padding: 0;
  }
  .service-section .service-section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .service-section .service-section-content .service-section-card {
    width: 400px;
    height: 400px;
    padding: 32px;
  }
  .service02-section {
    width: 90%;
  }
  .service02-section .service02-section-content .ice {
    display: flex;
    flex-direction: column;
  }
  .service02-section .service02-section-content .ice .icce .ice-img-02 .ice-img-02-explain {
    margin: 32px 0;
  }
  .service03-section {
    width: 90%;
    padding: 32px;
  }
  .service03-section .service03-section-content .service03-section-contetn-card {
    flex-direction: column;
    gap: 30px;
  }
  .service03-section .service03-section-content .service03-section-contetn-card .service03-section-card-title-01 {
    width: 420px;
    height: 420px;
  }
  .service03-section .service03-section-content .service03-section-contetn-card .service03-section-card-title-01 .service03-section-contetn-card-01 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .service03-section .service03-section-content .service03-section-contetn-card .service03-section-card-title-01 .service03-section-contetn-card-01 .service03-section-content-btns .service03-section-content-btn {
    padding: 1em 1em;
  }
  .service03-section .service03-section-content .service03-section-contetn-card .service03-section-card-title-02 {
    width: 420px;
    height: 420px;
  }
  .service03-section .service03-section-content .service03-section-contetn-card .service03-section-card-title-02 .service03-section-contetn-card-02 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .service03-section .service03-section-content .service03-section-contetn-card .service03-section-card-title-02 .service03-section-contetn-card-02 .service03-section-content-btns .service03-section-content-btn {
    padding: 1em 1em;
  }
  .service04-section {
    width: 90%;
    margin: 0 auto;
  }
  .service04-section .service04-section-content .lang {
    flex-direction: column;
    gap: 10px;
  }
  .service04-section .service04-section-content .lang .lang-img {
    width: 300px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    gap: 10px;
    border: 1px solid #cacaca;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.035), 0px 0px 10px rgba(0, 0, 0, 0.07);
  }
  .service04-section .service04-section-content .service-section-04 {
    margin: 64px 0;
  }
  .service04-section .service04-section-content .service-section-04 .service-section-04-img {
    display: grid;
    place-items: center;
  }
  .service04-section .service04-section-content .service-section-04 .service-section-04-img img {
    width: 90%;
    height: 90%;
  }
  .service04-section .service04-section-content .service-section-04 .service-section-04-img .his {
    margin-bottom: 64px;
    border-radius: 5px;
    display: inline-block;
    padding: 1em 2em;
    background-color: var(--main-color);
    color: #fff;
    font: 700 16px "Noto Sans JP";
  }
  .service04-section .service04-section-content .service-section-04 .service-section-04-img-02 {
    display: grid;
    place-items: center;
  }
  .service04-section .service04-section-content .service-section-04 .service-section-04-img-02 img {
    width: 90%;
    height: 90%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .service04-section .service04-section-content .service-section-04 .service-section-04-img-02 .his {
    margin-bottom: 64px;
    border-radius: 5px;
    display: inline-block;
    padding: 1em 2em;
    background-color: var(--main-color);
    color: #fff;
    font: 700 16px "Noto Sans JP";
  }
  .service05-section {
    width: 90%;
    padding: 32px;
  }
  .service05-section .service05-section-content {
    width: 100%;
  }
  .service05-section .service05-section-content .service-section-05 {
    flex-direction: column;
  }
  .service06-section {
    width: 90%;
    height: 100%;
    padding: 0;
    margin: 120px auto;
  }
  .service06-section .service06-section-title {
    font: 700 40px "Noto Sans JP";
  }
  .service06-section .service06-section-content {
    width: 100%;
  }
  .service06-section .service06-section-content .web {
    flex-direction: column;
  }
  .news-section {
    width: 90%;
    height: 100%;
  }
  .news-section .news-section-content {
    display: flex;
    flex-direction: column;
    margin-bottom: 64px;
  }
  .news-section .news-section-content .news-section-content-card .news-section-content-card-text {
    width: 300px;
  }
  .news-section .news-section-content .news-section-content-card img {
    width: 300px;
  }
  .service-recruit-section {
    width: 90%;
  }
  .service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 50px;
  }
  .service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-recruit-section-content-new {
    padding: 20px;
    width: 400px;
    height: 530px;
    margin: 0 auto;
  }
  .service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-recruit-section-content-new .service-section-content-new-03 .service-section-content-new-03-btn {
    padding: 1em 2em;
  }
  .service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-section-content-old {
    padding: 20px;
    width: 400px;
    height: 530px;
    margin: 0 auto;
  }
  .service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-section-content-old .service-section-content-old-03 .service-section-content-old-03-btn {
    padding: 1em 2em;
  }
  .contact-section-ng-content {
    width: 90%;
    padding: 0;
  }
  .contact-section-se-content {
    width: 90%;
    padding: 0;
  }
  .contact-section-sales-content {
    width: 90%;
    padding: 0;
  }
  .contact-section-content {
    width: 90%;
    margin: 120px auto;
    padding: 0;
  }
  .contact-section-content .contact-section-content-title {
    font: 700 32px "Noto Sans JP";
  }
  .contact-section-content .hr2 {
    display: block;
  }
}
@media (min-width: 901px) and (max-width: 1350px) {
  .header {
    grid-template-columns: repeat(12, 1fr);
  }
  .header .header-first {
    grid-column: span 8;
  }
  .header .header-first .header-first-content {
    font: 700 32px "Noto Sans JP";
  }
  .header .header-second {
    position: absolute;
    right: 0;
    height: 100vh;
    top: 120px;
    background-color: #f7f7f7;
    flex-direction: column;
    padding: 30px 50px;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    gap: 3em !important;
  }
  .header .header-second .dropdown-container .header-dropdown-01 {
    left: -152px;
  }
  .header .header-second.active {
    transform: translateX(0%) !important;
  }
  .header .header-third {
    position: absolute;
    right: 0;
    top: 400px;
    padding: 30px 50px;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    gap: 1em !important;
  }
  .header .header-third.active {
    transform: translateX(0%) !important;
  }
  .header .header-fourth {
    position: absolute;
    right: 0;
    top: 500px;
    align-items: center;
    margin-right: 20px;
    transform: translateX(120%);
    transition: transform 0.3s ease-in-out;
    gap: 1em !important;
  }
  .header .header-fourth.active {
    transform: translateX(0%) !important;
  }
  .header .burger {
    display: grid !important;
    grid-column: span 3;
    place-items: center;
  }
  .about {
    margin-top: 120px;
    width: 100%;
  }
  .about .about-pic {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .about .about-pic img {
    width: 1200px;
    height: 1200px;
  }
  .about .about-pic .about-discription {
    width: 90%;
    margin: 0 auto;
  }
  .service {
    width: 90%;
    margin: 128px auto;
  }
  .service .service-title {
    font: 700 64px Arial, Helvetica, sans-serif;
    margin-top: 32px;
  }
  .service .service-subtitle {
    font: 500 24px "Noto Sans JP";
    margin: 32px 0;
  }
  .service .service-content {
    grid-template-columns: repeat(2, 1fr);
  }
  .service .service-content .service-content-card {
    border: 1px solid #cacaca;
    border-radius: 5px;
    font: 500 24px "Noto Sans JP";
    width: 300px;
    height: 400px;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.035), 0px 0px 10px rgba(0, 0, 0, 0.07);
    padding: 30px;
    display: grid;
    grid-template-rows: repeat(5, 1fr);
    grid-template-columns: 1fr;
  }
  .service .service-content .service-content-card .service-content-card-detail-01 {
    display: flex;
    align-items: center;
    grid-row: span 1;
  }
  .service .service-content .service-content-card .service-content-card-detail-01 .icon-01 {
    font-size: 50px;
  }
  .service .service-content .service-content-card-detail-02 {
    font-size: 16px;
    line-height: 200%;
    grid-row: span 3;
  }
  .service .service-content .service-content-card-detail-03 {
    grid-row: span 1;
  }
  .news {
    display: block;
    padding: 0;
    height: 100%;
  }
  .news .news-title {
    margin: 64px 0;
  }
  .news .news-btn {
    margin-bottom: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .news .news-btn span {
    font: 700 24px "Noto Sans JP" !important;
  }
  .news .news-card {
    padding: 64px !important;
  }
  .news .news-card .news-card-detail .news-card-detail-01 {
    grid-column: 1/2; /* 左上のブロック */
    grid-row: 1/2;
  }
  .news .news-card .news-card-detail .news-card-detail-02 {
    grid-column: 2/3; /* 右上のブロック */
    grid-row: 1/2;
  }
  .news .news-card .news-card-detail .news-card-detail-03 {
    font: 700 16px "Noto Sans JP" !important;
    grid-column: 1/3; /* 左下と右下のブロックを統合 */
    grid-row: 2/3;
  }
  .recruit {
    padding: 32px;
  }
  .recruit .recruit-content {
    padding: 32px;
  }
  .contact .contact-title {
    font: 700 32px Arial, Helvetica, sans-serif;
  }
  .contact .contact-subtitle {
    font: 700 24px Arial, Helvetica, sans-serif;
  }
  .contact .contact-tag {
    padding: 0;
    font: 700 16px "Noto Sans JP";
    margin-top: 32px;
  }
  .contact .contact-tag .contact-tag-01 {
    display: flex;
    gap: 5px;
    margin-bottom: 32px;
  }
  .contact .contact-tag .contact-tag-01 .contact-tag-padding-01 {
    padding: 0.1em 0.5em;
    background-color: #6c6d6b;
    color: #f2f2f2;
    border-radius: 50px;
    display: flex;
  }
  .contact .contact-tag .contact-tag-02 {
    display: flex;
    gap: 5px;
    margin-bottom: 32px;
  }
  .contact .contact-tag .contact-tag-02 .contact-tag-padding-02 {
    padding: 0.1em 0.5em;
    background-color: #6c6d6b;
    color: #f2f2f2;
    border-radius: 50px;
    display: flex;
  }
  .contact .contact-text {
    padding: 32px;
    font: 700 30px "Noto Sans JP";
    margin-top: 64px;
  }
  .contact .contact-btn span {
    background-color: var(--main-color);
    color: #fff;
    font: 700 20px "Noto Sans JP";
    padding: 1em 2em;
    border-radius: 100px;
  }
  .about-section {
    width: 100%;
    height: 100%;
  }
  .about-section .about-section-subtitle-Philosophy {
    padding: 32px;
  }
  .about-section .about-section-subtitle {
    padding: 32px;
  }
  .about-section .a .b {
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
  }
  .about-section .a .b .card-abc {
    width: 400px;
    height: 200px;
  }
  .about-section .a .c {
    display: flex;
    flex-direction: column;
  }
  .about-section .a .c .card-abc {
    width: 400px;
    height: 200px;
  }
  .about-section .googlemap {
    width: 90%;
  }
  .service-section {
    width: 90%;
    padding: 0;
  }
  .service-section .service-section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .service-section .service-section-content .service-section-card {
    width: 800px;
    height: 400px;
    padding: 32px;
  }
  .service03-section {
    width: 90%;
    padding: 32px;
  }
  .service03-section .service03-section-content .service03-section-contetn-card {
    flex-direction: column;
    gap: 30px;
  }
  .service03-section .service03-section-content .service03-section-contetn-card .service03-section-card-title-01 .service03-section-contetn-card-01 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .service03-section .service03-section-content .service03-section-contetn-card .service03-section-card-title-01 .service03-section-contetn-card-01 .service03-section-content-btns .service03-section-content-btn {
    padding: 1em 1em;
  }
  .service03-section .service03-section-content .service03-section-contetn-card .service03-section-card-title-02 .service03-section-contetn-card-02 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .service03-section .service03-section-content .service03-section-contetn-card .service03-section-card-title-02 .service03-section-contetn-card-02 .service03-section-content-btns .service03-section-content-btn {
    padding: 1em 1em;
  }
  .service04-section {
    width: 90%;
    margin: 0 auto;
  }
  .service04-section .service04-section-content .lang {
    flex-direction: column;
    gap: 10px;
  }
  .service04-section .service04-section-content .lang .lang-img {
    width: 300px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    gap: 10px;
    border: 1px solid #cacaca;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.035), 0px 0px 10px rgba(0, 0, 0, 0.07);
  }
  .service04-section .service04-section-content .service-section-04 {
    margin: 64px 0;
  }
  .service04-section .service04-section-content .service-section-04 .service-section-04-img {
    display: grid;
    place-items: center;
  }
  .service04-section .service04-section-content .service-section-04 .service-section-04-img img {
    width: 90%;
    height: 90%;
  }
  .service04-section .service04-section-content .service-section-04 .service-section-04-img .his {
    margin-bottom: 64px;
    border-radius: 5px;
    display: inline-block;
    padding: 1em 2em;
    background-color: var(--main-color);
    color: #fff;
    font: 700 16px "Noto Sans JP";
  }
  .service04-section .service04-section-content .service-section-04 .service-section-04-img-02 {
    display: grid;
    place-items: center;
  }
  .service04-section .service04-section-content .service-section-04 .service-section-04-img-02 img {
    width: 90%;
    height: 90%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .service04-section .service04-section-content .service-section-04 .service-section-04-img-02 .his {
    margin-bottom: 64px;
    border-radius: 5px;
    display: inline-block;
    padding: 1em 2em;
    background-color: var(--main-color);
    color: #fff;
    font: 700 16px "Noto Sans JP";
  }
  .service05-section {
    width: 90%;
    padding: 32px;
  }
  .service05-section .service05-section-content {
    width: 100%;
  }
  .service05-section .service05-section-content .service-section-05 {
    flex-direction: column;
  }
  .service06-section {
    width: 90%;
    height: 100%;
    padding: 0;
    margin: 120px auto;
  }
  .service06-section .service06-section-title {
    font: 700 40px "Noto Sans JP";
  }
  .service06-section .service06-section-content {
    width: 100%;
  }
  .service06-section .service06-section-content .web {
    flex-direction: column;
  }
  .service-recruit-section {
    width: 90%;
  }
  .service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 50px;
  }
  .service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-recruit-section-content-new {
    padding: 20px;
    width: 800px;
    height: 600px;
    margin: 0 auto;
  }
  .service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-recruit-section-content-new .service-section-content-new-03 .service-section-content-new-03-btn {
    padding: 1em 2em;
  }
  .service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-section-content-old {
    padding: 20px;
    width: 800px;
    height: 600px;
    margin: 0 auto;
  }
  .service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-section-content-old .service-section-content-old-03 .service-section-content-old-03-btn {
    padding: 1em 2em;
  }
}
@media (min-width: 1351px) and (max-width: 1903px) {
  .about .about-pic img {
    width: 1000px;
    height: 1000px;
  }
  .about .about-pic .about-discription {
    margin-right: 32px;
  }
  .about .about-pic .about-discription .about-btn {
    font-size: 20px;
  }
  .service06-section {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 120px auto;
  }
  .service-recruit-section {
    width: 90%;
    margin: 120px auto 0 auto;
  }
  .service-recruit-section .service-recruit-section-title {
    font: 700 16px "Noto Sans JP";
    padding-top: 64px;
  }
  .service-recruit-section .service-recruit-section-subtitle {
    color: #3a75bb;
    font: 700 64px "Noto Sans JP";
    margin-bottom: 64px;
  }
  .service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
  .service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-recruit-section-content-new {
    border: 1px solid #000;
    padding: 30px;
    border-radius: 30px;
    margin-bottom: 64px;
    width: 500px;
    height: 550px;
  }
  .service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-recruit-section-content-new .service-section-content-new-01 {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
  }
  .service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-recruit-section-content-new .service-section-content-new-01 .aa {
    border: 1px solid #000000;
    padding: 30px;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-recruit-section-content-new .service-section-content-new-01 .aa img {
    width: 50px;
    height: 50px;
  }
  .service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-recruit-section-content-new .service-section-content-new-01 .service-section-content-title {
    font-size: 18px;
  }
  .service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-recruit-section-content-new .service-section-content-new-01 .service-section-content-text-0 {
    display: flex;
    gap: 10px;
    margin-top: 20px;
  }
  .service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-recruit-section-content-new .service-section-content-new-01 .service-section-content-text-0 .service-section-content-text-01 {
    padding: 1em 2em;
    background-color: #e7e7e7;
    color: #4e83c2;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
  }
  .service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-recruit-section-content-new .service-section-content-new-02 {
    height: 300px;
  }
  .service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-recruit-section-content-new .service-section-content-new-03 {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    place-items: center;
  }
  .service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-recruit-section-content-new .service-section-content-new-03 .service-section-content-new-03-btn {
    padding: 1em 3em;
    border: 1px solid #000;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-recruit-section-content-new .service-section-content-new-03 .service-section-content-new-03-btn .bb {
    font-size: 14px;
  }
  .service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-section-content-old {
    border: 1px solid #000;
    padding: 30px;
    border-radius: 30px;
    margin-bottom: 64px;
    width: 500px;
    height: 550px;
  }
  .service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-section-content-old .service-section-content-old-01 {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
  }
  .service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-section-content-old .service-section-content-old-01 .aa {
    font-size: 32px;
    border: 1px solid #000000;
    padding: 30px;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-section-content-old .service-section-content-old-01 .service-section-content-title {
    font-size: 18px;
  }
  .service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-section-content-old .service-section-content-old-01 .service-section-content-text {
    display: flex;
    gap: 10px;
    margin-top: 20px;
  }
  .service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-section-content-old .service-section-content-old-01 .service-section-content-text .service-section-content-text-01 {
    padding: 1em 2em;
    background-color: #e7e7e7;
    color: #4e83c2;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
  }
  .service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-section-content-old .service-section-content-old-02 {
    height: 300px;
  }
  .service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-section-content-old .service-section-content-old-03 {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    place-items: center;
  }
  .service-recruit-section .service-recruit-section-content .service-recruit-section-content-01 .service-section-content-old .service-section-content-old-03 .service-section-content-old-03-btn {
    padding: 1em 3em;
    border: 1px solid #000;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
  }
}/*# sourceMappingURL=styles.css.map */