@charset "UTF-8";
/* リセットcss */
@import url(https://unpkg.com/ress/dist/ress.min.css);
/* Google Fonts */
@import url(https://fonts.googleapis.com);
@import url(https://fonts.gstatic.com);
@import url(https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap);
/*
color-swatch ========================================*/
/*
breakpoint ==========================================================================*/
/*
font ========================================*/
/* Noto Sans */
/* Noto Serif */
/* Jost */
/*
all ==========================================================================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding-inline: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
  transition: all 0.3s ease;
}
.header.active {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}
.header.active .header__nav {
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 1240px) {
  .header {
    padding-inline: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  .header {
    height: 65px;
  }
}
@media screen and (max-width: 550px) {
  .header {
    height: 50px;
  }
}
.header h1,
.header p {
  display: block;
}
.header h1 a,
.header p a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header h1 a img,
.header p a img {
  width: 300px;
}
@media screen and (max-width: 1024px) {
  .header h1 a img,
  .header p a img {
    width: 250px;
  }
}
@media screen and (max-width: 900px) {
  .header h1 a img,
  .header p a img {
    width: 27.5vw;
  }
}
@media screen and (max-width: 768px) {
  .header h1 a img,
  .header p a img {
    width: 200px;
  }
}
@media screen and (max-width: 550px) {
  .header h1 a img,
  .header p a img {
    width: 170px;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header__nav {
    flex-direction: column;
    position: fixed;
    top: -2000px;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    padding-top: 13%;
    padding-inline: 0.5rem;
    background-color: rgba(255, 255, 255, 0.95);
  }
  .header__nav.active {
    top: 0;
  }
}
@media screen and (max-width: 550px) {
  .header__nav {
    padding-top: 18%;
  }
}
.header__nav ul {
  display: flex;
  margin-right: 2rem;
}
@media screen and (max-width: 1240px) {
  .header__nav ul {
    margin-right: 3vw;
  }
}
@media screen and (max-width: 768px) {
  .header__nav ul {
    width: 100%;
    margin-right: 0;
    flex-direction: column;
    margin-bottom: 6%;
  }
}
.header__nav ul li a {
  position: relative;
  padding-inline: 1rem;
  display: block;
  border-right: solid 1px #075607;
  font-size: 0.75rem;
}
@media screen and (max-width: 1240px) {
  .header__nav ul li a {
    font-size: clamp(0.5125rem, 1.45vw, 0.75rem);
    padding-inline: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  .header__nav ul li a {
    font-size: clamp(0.75rem, 4.7vw, 1.125rem);
    padding-inline: 1rem;
    padding-block: 4%;
    width: 100%;
    border-right: none;
    border-bottom: solid 1.5px #075607;
  }
}
@media screen and (max-width: 550px) {
  .header__nav ul li a {
    padding-inline: 5%;
  }
}
.header__nav ul li a::after {
  opacity: 0;
  content: "";
  position: absolute;
  bottom: -27px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #075607;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header__nav ul li a::after {
    display: none;
  }
}
.header__nav ul li a::before {
  position: absolute;
  display: none;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  width: 15px;
  height: 23px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .header__nav ul li a::before {
    display: block;
  }
}
.header__nav ul li a:hover {
  opacity: 1;
}
.header__nav ul li a:hover::after {
  opacity: 1;
}
.header__nav ul li:first-of-type a {
  border-left: 1px solid #075607;
}
@media screen and (max-width: 768px) {
  .header__nav ul li:first-of-type a {
    border-left: none;
  }
}
.header__nav--contact {
  padding: 1% 5%;
  border-radius: 1px;
  background-color: #075607;
  color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
  padding: 0.45rem 1.5rem;
  font-size: 0.75rem;
}
@media screen and (max-width: 1240px) {
  .header__nav--contact {
    font-size: clamp(0.5125rem, 1.45vw, 0.75rem);
    padding: 0.35rem 2.25vw;
  }
}
@media screen and (max-width: 768px) {
  .header__nav--contact {
    padding: 0.35rem 10vw;
    font-size: clamp(0.75rem, 4.7vw, 1.125rem);
  }
}
.header__nav--contact:active, .header__nav--contact:visited {
  color: #fff;
}
.header__toggleBtn {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__toggleBtn {
    display: block;
    cursor: pointer;
  }
  .header__toggleBtn span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #075607;
    margin-bottom: 7px;
    transition: all 0.3s ease;
  }
  .header__toggleBtn span:last-of-type {
    margin-bottom: 0;
  }
}
.header__toggleBtn.active span:nth-of-type(1) {
  transform: rotate(45deg) translate(7px, 8px);
}
.header__toggleBtn.active span:nth-of-type(2) {
  opacity: 0;
}
.header__toggleBtn.active span:nth-of-type(3) {
  transform: rotate(-45deg) translate(7px, -7.5px);
}

.footer {
  position: relative;
  background-color: #fff;
  z-index: 1;
  padding-block: 8% 1%;
}
@media screen and (max-width: 550px) {
  .footer {
    padding-block: 15% 5%;
  }
}
.footer__upper {
  text-align: center;
  margin-bottom: 1.5rem;
}
.footer__upper--logo {
  max-width: 500px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .footer__upper--logo {
    max-width: 52vw;
    margin-bottom: 8%;
  }
}
.footer__upper--add {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.footer__upper--add img {
  width: 40px;
}
@media screen and (max-width: 550px) {
  .footer__upper--add img {
    width: 30px;
  }
}
.footer__upper--add p {
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.65rem;
  line-height: 1.25;
}
@media screen and (max-width: 550px) {
  .footer__upper--add p {
    font-size: 0.5rem;
  }
}
.footer__upper--btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 550px) {
  .footer__upper--btn {
    flex-direction: column;
    gap: 0.5rem 0;
  }
}
.footer__upper--btn a {
  position: relative;
  display: block;
  text-align: center;
  background-color: #075607;
  color: #fff;
  font-size: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  padding: 0.75rem 2rem 0.75rem 3.5rem;
  border-radius: 0.25rem;
}
@media screen and (max-width: 768px) {
  .footer__upper--btn a {
    font-size: clamp(0.55rem, 1.5vw, 0.65rem);
  }
}
@media screen and (max-width: 550px) {
  .footer__upper--btn a {
    width: 80%;
  }
}
.footer__upper--btn a::before {
  position: absolute;
  top: 0.125rem;
  bottom: 0;
  left: 2rem;
  margin: auto;
  display: block;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 550px) {
  .footer__upper--btn a::before {
    left: 0;
    right: 4rem;
  }
}
.footer__upper--btn a.mail::before {
  width: 27.3px;
  height: 20px;
  background-image: url(../img/mail_icon.png);
}
@media screen and (max-width: 550px) {
  .footer__upper--btn a.mail::before {
    width: 22px;
    height: 17px;
  }
}
.footer__upper--btn a.tel::before {
  width: 25px;
  height: 32px;
  background-image: url(../img/phone_icon.png);
}
@media screen and (max-width: 550px) {
  .footer__upper--btn a.tel::before {
    width: 19px;
    height: 28px;
  }
}
.footer__nav {
  margin-bottom: 2.5rem;
}
.footer__nav ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .footer__nav ul {
    padding-inline: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  .footer__nav ul {
    gap: 0.5rem 0;
    flex-wrap: wrap;
    justify-content: left;
  }
}
.footer__nav ul li {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: 0.125rem;
}
@media screen and (max-width: 768px) {
  .footer__nav ul li {
    margin-inline: 5%;
  }
}
.footer__nav ul li a {
  display: block;
  font-size: 0.75rem;
}
@media screen and (max-width: 1024px) {
  .footer__nav ul li a {
    font-size: clamp(0.5rem, 1.75vw, 0.75rem);
  }
}
@media screen and (max-width: 768px) {
  .footer__nav ul li a {
    font-size: clamp(0.5rem, 2.25vw, 0.75rem);
  }
}
.footer__copy {
  text-align: center;
  font-size: 0.65rem;
}
@media screen and (max-width: 768px) {
  .footer__copy {
    font-size: 0.6rem;
  }
}
@media screen and (max-width: 550px) {
  .footer__copy {
    font-size: 0.5rem;
  }
}

/*
company ==========================================================================*/
.company__message .section__ttl {
  margin-bottom: 8%;
}
@media screen and (max-width: 550px) {
  .company__message .section__ttl {
    margin-bottom: 2rem;
  }
}
.company__message--content {
  margin-bottom: 12%;
}
@media screen and (max-width: 550px) {
  .company__message--content {
    margin-bottom: 3rem;
  }
}
.company__message--content .strong {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: clamp(1.25rem, 3.5vw, 1.5rem);
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .company__message--content .strong {
    font-size: clamp(0.75rem, 3.125vw, 1rem);
  }
}
@media screen and (max-width: 550px) {
  .company__message--content .strong {
    margin-bottom: 0.5rem;
  }
}
.company__message--content .nomal {
  font-size: 0.65rem;
  margin-bottom: 4%;
  line-height: 1.75;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .company__message--content .nomal {
    font-size: 0.5rem;
  }
}
@media screen and (max-width: 550px) {
  .company__message--content .nomal {
    margin-bottom: 1rem;
  }
}
.company__message--content h3 {
  display: block;
  max-width: 300px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .company__message--content h3 {
    max-width: 250px;
  }
}
@media screen and (max-width: 550px) {
  .company__message--content h3 {
    max-width: 160px;
  }
}
.company__message--content h3 p {
  font-size: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  margin-bottom: 5%;
}
@media screen and (max-width: 768px) {
  .company__message--content h3 p {
    font-size: 0.65rem;
    margin-bottom: 4%;
  }
}
@media screen and (max-width: 550px) {
  .company__message--content h3 p {
    font-size: 0.5rem;
  }
}
.company__message--content h3 img {
  display: block;
  margin-left: auto;
}
.company__message--content h3 img.yoshida {
  max-width: 241px;
}
@media screen and (max-width: 768px) {
  .company__message--content h3 img.yoshida {
    max-width: 200px;
  }
}
@media screen and (max-width: 550px) {
  .company__message--content h3 img.yoshida {
    max-width: 135px;
  }
}
.company__message--content h3 img.hayamizu {
  max-width: 196px;
}
@media screen and (max-width: 768px) {
  .company__message--content h3 img.hayamizu {
    max-width: 175px;
  }
}
@media screen and (max-width: 550px) {
  .company__message--content h3 img.hayamizu {
    max-width: 120px;
  }
}
.company__profile .section__ttl {
  margin-bottom: 8%;
}
@media screen and (max-width: 550px) {
  .company__profile .section__ttl {
    margin-bottom: 2rem;
  }
}
.company__profile--table {
  width: min(950px, 100%);
  margin-inline: auto;
}
.company__profile--table dl {
  display: flex;
  padding-block: 1rem;
  border-top: 1px solid #9b9b9b;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
}
.company__profile--table dl:last-of-type {
  border-bottom: solid 1px #9b9b9b;
}
@media screen and (max-width: 768px) {
  .company__profile--table dl {
    font-size: clamp(0.65rem, 2.75vw, 0.875rem);
  }
}
@media screen and (max-width: 550px) {
  .company__profile--table dl {
    padding-block: 0.65rem;
    flex-direction: column;
  }
}
.company__profile--table dl dt {
  width: 35%;
  padding-inline: 0.5rem;
}
@media screen and (max-width: 550px) {
  .company__profile--table dl dt {
    width: 100%;
    margin-bottom: 0.35rem;
    font-size: 0.75rem;
  }
}
.company__profile--table dl dd {
  width: 65%;
  padding-inline: 0.5rem;
}
@media screen and (max-width: 550px) {
  .company__profile--table dl dd {
    width: 100%;
  }
}
.company__access {
  padding-block: 12% 5%;
}
@media screen and (max-width: 550px) {
  .company__access {
    padding-top: 3rem 2rem;
  }
}
.company__access .section__ttl {
  margin-bottom: 8%;
}
@media screen and (max-width: 550px) {
  .company__access .section__ttl {
    margin-bottom: 2rem;
  }
}
.company__access iframe {
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .company__access iframe {
    height: 300px;
  }
}

/*
privacy ==========================================================================*/
.privacy__content .sub {
  margin-bottom: 3rem;
}
.privacy__content p {
  font-size: 0.75rem;
  margin-bottom: 2rem;
}
.privacy__content .underSectionTtl {
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

/*
contact ==========================================================================*/
.contact__form {
  margin-bottom: 3rem;
}
.contact__form dl {
  display: flex;
  gap: 1rem;
  border-top: 1px solid #969696;
}
.contact__form dl:last-of-type {
  border-bottom: 1px solid #969696;
}
.contact__form dl.name, .contact__form dl.furi, .contact__form dl.tel, .contact__form dl.company, .contact__form dl.position {
  align-items: center;
}
@media screen and (max-width: 768px) {
  .contact__form dl {
    gap: 0.65rem;
  }
}
@media screen and (max-width: 550px) {
  .contact__form dl {
    flex-direction: column;
    gap: 0.125rem;
  }
}
.contact__form dl dt {
  width: 360px;
  padding: 3% 1% 3% 4.5rem;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #075607;
}
@media screen and (max-width: 1024px) {
  .contact__form dl dt {
    font-size: clamp(0.75rem, 2.25vw, 1rem);
  }
}
@media screen and (max-width: 900px) {
  .contact__form dl dt {
    width: 300px;
  }
}
@media screen and (max-width: 768px) {
  .contact__form dl dt {
    width: 245px;
  }
}
@media screen and (max-width: 550px) {
  .contact__form dl dt {
    width: 100%;
    padding: 3% 1% 1% 4.5rem;
  }
}
.contact__form dl dt label {
  position: relative;
}
.contact__form dl dt label.must::before {
  position: absolute;
  top: 0.125rem;
  left: -4.5rem;
  content: "必須";
  width: 85px;
  text-align: center;
  font-size: 0.65rem;
  color: #fff;
  background-color: #138413;
  padding-block: 4px;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .contact__form dl dt label.must::before {
    font-size: 0.5rem;
    width: 70px;
    top: 0.05rem;
    left: -4rem;
    border-radius: 5px;
  }
}
.contact__form dl dd {
  width: calc(100% - 1rem - 360px);
  padding: 3% 1% 3% 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
}
@media screen and (max-width: 1024px) {
  .contact__form dl dd {
    font-size: clamp(0.65rem, 2vw, 0.75rem);
  }
}
@media screen and (max-width: 900px) {
  .contact__form dl dd {
    width: calc(100% - 1rem - 300px);
  }
}
@media screen and (max-width: 768px) {
  .contact__form dl dd {
    width: calc(100% - 0.65rem - 245px);
  }
}
@media screen and (max-width: 550px) {
  .contact__form dl dd {
    padding: 1% 1% 3% 4.5rem;
    width: 100%;
  }
}
.contact__form dl dd span {
  display: block;
  margin-left: 0 !important;
  margin-bottom: 0.25rem;
}
.contact__form dl dd span label {
  display: flex;
}
.contact__form dl dd span label input {
  margin-right: 0.75rem !important;
}
.contact__form dl dd .flex {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .contact__form dl dd .flex {
    gap: 0.25rem;
  }
}
.contact__form dl dd .flex .left {
  width: 110px;
}
@media screen and (max-width: 768px) {
  .contact__form dl dd .flex .left {
    width: 75px;
  }
}
.contact__form dl dd .flex .right {
  width: calc(100% - 110px - 0.5rem);
}
@media screen and (max-width: 768px) {
  .contact__form dl dd .flex .right {
    width: calc(100% - 75px - 0.25rem);
  }
}
.contact__form dl dd input[type=text],
.contact__form dl dd input[type=tel],
.contact__form dl dd input[type=email],
.contact__form dl dd textarea {
  background-color: #ddd;
  padding: 0.5rem;
  border-radius: 0.125rem;
}
.contact__form dl dd input#name,
.contact__form dl dd input#furi,
.contact__form dl dd input#tel,
.contact__form dl dd input#mail,
.contact__form dl dd input#company,
.contact__form dl dd input#position,
.contact__form dl dd textarea {
  width: 100%;
}
.contact__check {
  text-align: center;
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 550px) {
  .contact__check {
    margin-bottom: 1.5rem;
  }
}
.contact__check p {
  font-size: 1rem;
}
@media screen and (max-width: 550px) {
  .contact__check p {
    font-size: 0.75rem;
  }
}
.contact__check p input {
  transform: scale(1.75) translateY(-0.05rem);
}
@media screen and (max-width: 550px) {
  .contact__check p input {
    transform: scale(1.5);
  }
}
.contact__check p a {
  text-decoration: underline;
  color: #048efe;
}
.contact__confirm {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}
@media screen and (max-width: 768px) {
  .contact__confirm {
    gap: 0.35rem;
  }
}
@media screen and (max-width: 550px) {
  .contact__confirm {
    flex-direction: column;
    gap: unset;
  }
}
.contact__confirm input {
  padding-block: 1.5%;
  width: 300px;
  color: #fff;
  border-radius: 0.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .contact__confirm input {
    padding-block: 2%;
    width: 250px;
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 550px) {
  .contact__confirm input {
    width: 70%;
  }
}
@media screen and (max-width: 450px) {
  .contact__confirm input {
    width: 90%;
  }
}
.contact__confirm input.confirm {
  background-color: #138413;
}
.contact__confirm input.back {
  background-color: #9b9b9b;
}
@media screen and (max-width: 550px) {
  .contact__confirm input.back {
    margin-bottom: -1rem;
  }
}

/*
service ==========================================================================*/
.service__grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(10, 1fr);
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .service__grid {
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(7, 1fr);
  }
}
@media screen and (max-width: 550px) {
  .service__grid {
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(12, 1fr);
    margin-bottom: 16%;
  }
}
.service__grid--left {
  position: relative;
  background-color: rgba(255, 255, 255, 0.9);
  grid-area: 2/1/10/6;
  z-index: 1;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13);
  padding: 2rem;
}
@media screen and (max-width: 1024px) {
  .service__grid--left {
    grid-area: 2/1/10/8;
    padding: 4% 6% 5%;
  }
}
@media screen and (max-width: 768px) {
  .service__grid--left {
    grid-area: 1/1/6/6;
  }
}
@media screen and (max-width: 550px) {
  .service__grid--left {
    grid-area: 1/1/10/7;
    padding: 5% 7% 7%;
  }
}
.service__grid--left p {
  font-size: 0.75rem;
  letter-spacing: 0.075em;
  line-height: 1.875;
}
@media screen and (max-width: 1024px) {
  .service__grid--left p {
    font-size: clamp(0.55rem, 1.725vw, 0.75rem);
    line-height: 1.75;
  }
}
.service__grid--right {
  position: relative;
  grid-area: 1/4/11/11;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13);
}
@media screen and (max-width: 1024px) {
  .service__grid--right {
    grid-area: 1/4/11/11;
  }
}
@media screen and (max-width: 768px) {
  .service__grid--right {
    grid-area: 4/4/8/8;
  }
}
@media screen and (max-width: 550px) {
  .service__grid--right {
    grid-area: 9/2/13/8;
  }
}
.service__grid--right::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
}
.service__grid--right img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service__grid:nth-of-type(2n) .service__grid--left {
  grid-area: 2/6/10/11;
}
@media screen and (max-width: 1024px) {
  .service__grid:nth-of-type(2n) .service__grid--left {
    grid-area: 2/4/10/11;
  }
}
@media screen and (max-width: 768px) {
  .service__grid:nth-of-type(2n) .service__grid--left {
    grid-area: 1/3/6/8;
  }
}
@media screen and (max-width: 550px) {
  .service__grid:nth-of-type(2n) .service__grid--left {
    grid-area: 1/2/10/8;
  }
}
.service__grid:nth-of-type(2n) .service__grid--right {
  grid-area: 1/1/11/8;
}
@media screen and (max-width: 1024px) {
  .service__grid:nth-of-type(2n) .service__grid--right {
    grid-area: 1/1/11/8;
  }
}
@media screen and (max-width: 768px) {
  .service__grid:nth-of-type(2n) .service__grid--right {
    grid-area: 4/1/8/5;
  }
}
@media screen and (max-width: 550px) {
  .service__grid:nth-of-type(2n) .service__grid--right {
    grid-area: 9/1/13/7;
  }
}

/*
partner ==========================================================================*/
.partner__top {
  position: relative;
  padding-top: 4rem;
}
@media screen and (max-width: 1399px) {
  .partner__top {
    padding-top: 7%;
  }
}
.partner__top::after {
  position: absolute;
  content: "";
  bottom: -120px;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateY(-50%);
  display: block;
  width: 2px;
  height: 120px;
  background-color: #c4c4c4;
}
@media screen and (max-width: 768px) {
  .partner__top::after {
    bottom: -85px;
    height: 85px;
  }
}
@media screen and (max-width: 550px) {
  .partner__top::after {
    bottom: -70px;
    height: 70px;
  }
}
.partner__top img {
  position: absolute;
  top: 0;
  right: 0;
  width: 950px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1399px) {
  .partner__top img {
    width: 62%;
  }
}
@media screen and (max-width: 768px) {
  .partner__top img {
    width: 55%;
    aspect-ratio: 3/2;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.partner__top h2 {
  position: relative;
  font-size: 2.125rem;
  letter-spacing: 0.1125em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  margin-bottom: 6rem;
}
@media screen and (max-width: 1399px) {
  .partner__top h2 {
    padding-left: 10vw;
    font-size: clamp(1.5rem, 4.65vw, 2.1425rem);
    margin-bottom: 6%;
  }
}
@media screen and (max-width: 768px) {
  .partner__top h2 {
    margin-bottom: 7%;
    font-size: clamp(1.25rem, 5.45vw, 1.5rem);
  }
}
@media screen and (max-width: 550px) {
  .partner__top h2 {
    padding-left: 13vw;
    font-size: clamp(0.875rem, 5.85vw, 1.25rem);
  }
}
.partner__top h2::before {
  position: absolute;
  content: "";
  top: 27%;
  left: 0;
  height: 4px;
  width: 19vw;
  background-color: #075607;
  transform: translate(-105%);
}
@media screen and (max-width: 1399px) {
  .partner__top h2::before {
    transform: translate(-65%);
  }
}
@media screen and (max-width: 550px) {
  .partner__top h2::before {
    height: 3px;
    width: 25vw;
  }
}
.partner__top--desc {
  padding-block: 13% 10%;
  background-color: #d8f2db;
}
@media screen and (max-width: 1399px) {
  .partner__top--desc {
    padding-block: 10% 5rem;
  }
}
@media screen and (max-width: 768px) {
  .partner__top--desc {
    padding-block: 15% 4rem;
  }
}
@media screen and (max-width: 550px) {
  .partner__top--desc {
    padding-block: 15% 3rem;
  }
}
.partner__top--desc h3 {
  position: relative;
  color: #075607;
  font-size: 1.75rem;
  line-height: 1.75;
  margin-bottom: 5rem;
}
@media screen and (max-width: 1399px) {
  .partner__top--desc h3 {
    font-size: clamp(1.125rem, 3.525vw, 1.75rem);
  }
}
@media screen and (max-width: 768px) {
  .partner__top--desc h3 {
    font-size: clamp(1rem, 4.35vw, 1.125rem);
  }
}
@media screen and (max-width: 550px) {
  .partner__top--desc h3 {
    font-size: clamp(0.75rem, 5vw, 1rem);
    margin-bottom: 4rem;
  }
}
.partner__top--desc h3::after {
  position: absolute;
  bottom: -2rem;
  left: 0;
  content: "";
  width: 100px;
  height: 4px;
  background-color: #075607;
}
@media screen and (max-width: 768px) {
  .partner__top--desc h3::after {
    width: 80px;
    height: 3px;
    bottom: -2.5rem;
  }
}
@media screen and (max-width: 550px) {
  .partner__top--desc h3::after {
    height: 2px;
    width: 70px;
    bottom: -2rem;
  }
}
.partner__top--desc p {
  letter-spacing: 0.075em;
  line-height: 1.875;
}
@media screen and (max-width: 1399px) {
  .partner__top--desc p {
    font-size: clamp(0.75rem, 2.325vw, 1rem);
  }
}
@media screen and (max-width: 768px) {
  .partner__top--desc p {
    font-size: clamp(0.65rem, 2.75vw, 0.75rem);
  }
}
@media screen and (max-width: 550px) {
  .partner__top--desc p {
    font-size: clamp(0.55rem, 3.65vw, 0.65rem);
  }
}
.partner__center {
  padding-block: 5rem 2rem;
}
@media screen and (max-width: 768px) {
  .partner__center {
    padding-block: 4rem 2rem;
  }
}
@media screen and (max-width: 550px) {
  .partner__center {
    padding-block: 3rem 2rem;
  }
}
.partner__center .section__ttl {
  text-align: center;
  margin-bottom: 2.5rem;
}
.partner__center--list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.partner__center--list li {
  width: 30%;
  border-bottom: solid 1px #c4c4c4;
  padding: 19px 0 20px 0;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 550px) {
  .partner__center--list li {
    width: 47%;
    font-size: 0.55rem;
  }
}
.partner__center--list li:nth-of-type(1), .partner__center--list li:nth-of-type(2), .partner__center--list li:nth-of-type(3) {
  border-top: solid 1px #c4c4c4;
}/*# sourceMappingURL=under.css.map */