@charset "UTF-8";
/*
Theme Name: new
*/
* {
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
}

body {
  overflow-x: hidden;
}

a:hover {
  opacity: 0.7;
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

h2,
h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

p,
li,
a {
  font-weight: 500;
}

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

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

.btn {
  width: 92%;
  max-width: 360px;
  display: block;
  text-align: center;
  background: #fff;
  padding: 1em 0;
  border-radius: 5em;
  color: #000;
  text-decoration: none;
  margin-top: 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .btn {
    margin: 30px auto 0;
  }
}
.btn::after {
  content: "";
  display: block;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  width: 0.75em;
  height: 0.75em;
  position: absolute;
  right: 2.5em;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

header {
  position: fixed;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 1em;
}
header .header-inner {
  width: 100%;
  max-width: 1040px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
header .header-inner .logo img {
  height: 45px;
  width: auto;
}
@media screen and (max-width: 768px) {
  header .header-inner .logo img {
    height: 42px;
  }
}
@media screen and (max-width: 768px) {
  header .header-inner nav {
    width: 32px;
    height: 32px;
    position: relative;
  }
}
header .header-inner nav span.hamberger {
  display: none;
}
@media screen and (max-width: 768px) {
  header .header-inner nav span.hamberger {
    display: block;
    width: 22px;
    height: 3px;
    background: #666;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translateX(50%) translateY(-50%);
    transition: all 0.3s ease;
  }
  header .header-inner nav span.hamberger::before, header .header-inner nav span.hamberger::after {
    transition: all 0.3s ease;
    position: absolute;
    right: 0;
    width: 22px;
    height: 3px;
    background: #666;
  }
  header .header-inner nav span.hamberger::before {
    content: "";
    top: -10px;
  }
  header .header-inner nav span.hamberger::after {
    content: "";
    top: 10px;
  }
}
header .header-inner nav span.hamberger.open {
  background: transparent;
}
header .header-inner nav span.hamberger.open::before, header .header-inner nav span.hamberger.open::after {
  top: 0;
}
header .header-inner nav span.hamberger.open::before {
  transform: rotate(135deg);
}
header .header-inner nav span.hamberger.open::after {
  transform: rotate(-135deg);
}
@media screen and (max-width: 768px) {
  header .header-inner nav ul.open {
    right: 100vw;
  }
}
header .header-inner nav ul {
  transition: all 0.3s ease;
  display: flex;
  gap: 1em;
}
@media screen and (max-width: 768px) {
  header .header-inner nav ul {
    width: 100vw;
    height: calc(100vh - 35px);
    background: rgba(255, 255, 255, 0.9);
    position: absolute;
    top: 45px;
    right: -1em;
    flex-direction: column;
    gap: 0;
  }
}
@media screen and (max-width: 768px) {
  header .header-inner nav ul li:last-of-type a {
    border-bottom: solid 1px #ccc;
  }
}
header .header-inner nav ul li a {
  color: black;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  header .header-inner nav ul li a {
    padding: 1em 0;
    display: block;
    text-align: center;
    border-top: solid 1px #ccc;
  }
}

main {
  padding-top: 75px;
}
@media screen and (max-width: 768px) {
  main {
    padding-top: 70px;
  }
}
main .mv {
  padding: 0;
}
main section {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  main section {
    padding: 50px 0;
  }
}
main section .sectionInner {
  position: relative;
  width: 92%;
  max-width: 1040px;
  margin: 0 auto;
  background: #fff;
  z-index: 20;
}
main .intro {
  display: flex;
  justify-content: center;
  align-items: start;
}
@media screen and (max-width: 768px) {
  main .intro {
    flex-direction: column;
    padding: 0 0 1.25rem;
  }
}
main .intro-text {
  flex-basis: 50%;
  padding-left: calc(50vw - 540px + 1em);
}
main .intro-text p {
  padding: 0 1em;
  line-height: 2em;
}
main .intro-img {
  flex-basis: 50%;
}
@media screen and (max-width: 768px) {
  main .intro-img {
    padding: 1em;
  }
}
main .job-list {
  position: relative;
}
main .job-list::before, main .job-list::after {
  content: "";
  position: absolute;
  background: url(./img/bg00.webp) center center;
  background-size: 100% 100%;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: -1;
}
main .job-list::before {
  top: 0;
}
main .job-list::after {
  bottom: 0;
  transform: rotate(180deg);
}
main .job-list .container {
  background: transparent !important;
}
main .job-list .container .job-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  position: relative;
}
@media screen and (max-width: 768px) {
  main .job-list .container .job-grid {
    flex-direction: column;
    gap: 2em;
  }
}
main .job-list .container .job-grid .job-card {
  flex-basis: calc((100% - 2em) / 3);
  display: flex;
  border-radius: 10px;
  text-decoration: none;
  position: relative;
}
main .job-list .container .job-grid .job-card img {
  width: 25%;
}
main .job-list .container .job-grid .job-card-text {
  flex-basis: 75%;
  padding: 1em;
  position: relative;
  display: flex;
  align-items: center;
}
main .job-list .container .job-grid .job-card-text h3 {
  color: #fff;
  font-size: 1.25em;
}
main .job-list .container .job-grid .job-card::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1em;
  width: 1.5em;
  height: 1.5em;
  background: white;
  border-radius: 50%;
}
main .job-list .container .job-grid .job-card::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(-100%) rotate(135deg);
  right: 1em;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}
main .major01 {
  background: #3d62a0;
  color: #3d62a0;
}
main .major01::after {
  border-color: #3d62a0 !important;
}
main #major01 {
  position: relative;
  background: #c4cfe2;
  z-index: 0;
  background-image: url(./img/bg01.webp);
}
main #major01::after {
  content: "";
  position: absolute;
  top: -5vh;
  left: 0;
  width: 100%;
  height: 20vh;
  background: url(./img/bg01.webp) no-repeat center center;
  background-size: 100% 100%;
  opacity: 1;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  main #major01::after {
    top: -2vh;
  }
}
main h2,
main h3,
main h4 {
  color: #3d62a0;
}
main .btn {
  background: #3d62a0;
  color: white;
}
main .btn::after {
  border-color: white;
}
main .job-detail-description-graduates-inner {
  border: solid 2px #3d62a0;
}
main .major02 {
  background: #0090d5;
  color: #0090d5;
}
main .major02::after {
  border-color: #0090d5 !important;
}
main #major02 {
  position: relative;
  background: #b2ddf2;
  z-index: 0;
  background-image: url(./img/bg02.webp);
}
main #major02::after {
  content: "";
  position: absolute;
  top: -5vh;
  left: 0;
  width: 100%;
  height: 20vh;
  background: url(./img/bg02.webp) no-repeat center center;
  background-size: 100% 100%;
  opacity: 1;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  main #major02::after {
    top: -2vh;
  }
}
main h2,
main h3,
main h4 {
  color: #0090d5;
}
main .btn {
  background: #0090d5;
  color: white;
}
main .btn::after {
  border-color: white;
}
main .job-detail-description-graduates-inner {
  border: solid 2px #0090d5;
}
main .major03 {
  background: #009189;
  color: #009189;
}
main .major03::after {
  border-color: #009189 !important;
}
main #major03 {
  position: relative;
  background: #b2dedb;
  z-index: 0;
  background-image: url(./img/bg03.webp);
}
main #major03::after {
  content: "";
  position: absolute;
  top: -5vh;
  left: 0;
  width: 100%;
  height: 20vh;
  background: url(./img/bg03.webp) no-repeat center center;
  background-size: 100% 100%;
  opacity: 1;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  main #major03::after {
    top: -2vh;
  }
}
main h2,
main h3,
main h4 {
  color: #009189;
}
main .btn {
  background: #009189;
  color: white;
}
main .btn::after {
  border-color: white;
}
main .job-detail-description-graduates-inner {
  border: solid 2px #009189;
}
main .major04 {
  background: #00408b;
  color: #00408b;
}
main .major04::after {
  border-color: #00408b !important;
}
main #major04 {
  position: relative;
  background: #b3c5dc;
  z-index: 0;
  background-image: url(./img/bg04.webp);
}
main #major04::after {
  content: "";
  position: absolute;
  top: -5vh;
  left: 0;
  width: 100%;
  height: 20vh;
  background: url(./img/bg04.webp) no-repeat center center;
  background-size: 100% 100%;
  opacity: 1;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  main #major04::after {
    top: -2vh;
  }
}
main h2,
main h3,
main h4 {
  color: #00408b;
}
main .btn {
  background: #00408b;
  color: white;
}
main .btn::after {
  border-color: white;
}
main .job-detail-description-graduates-inner {
  border: solid 2px #00408b;
}
main .major05 {
  background: #e38000;
  color: #e38000;
}
main .major05::after {
  border-color: #e38000 !important;
}
main #major05 {
  position: relative;
  background: #f7d9b2;
  z-index: 0;
  background-image: url(./img/bg05.webp);
}
main #major05::after {
  content: "";
  position: absolute;
  top: -5vh;
  left: 0;
  width: 100%;
  height: 20vh;
  background: url(./img/bg05.webp) no-repeat center center;
  background-size: 100% 100%;
  opacity: 1;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  main #major05::after {
    top: -2vh;
  }
}
main h2,
main h3,
main h4 {
  color: #e38000;
}
main .btn {
  background: #e38000;
  color: white;
}
main .btn::after {
  border-color: white;
}
main .job-detail-description-graduates-inner {
  border: solid 2px #e38000;
}
main .major06 {
  background: #cd3924;
  color: #cd3924;
}
main .major06::after {
  border-color: #cd3924 !important;
}
main #major06 {
  position: relative;
  background: #f0c3bc;
  z-index: 0;
  background-image: url(./img/bg06.webp);
}
main #major06::after {
  content: "";
  position: absolute;
  top: -5vh;
  left: 0;
  width: 100%;
  height: 20vh;
  background: url(./img/bg06.webp) no-repeat center center;
  background-size: 100% 100%;
  opacity: 1;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  main #major06::after {
    top: -2vh;
  }
}
main h2,
main h3,
main h4 {
  color: #cd3924;
}
main .btn {
  background: #cd3924;
  color: white;
}
main .btn::after {
  border-color: white;
}
main .job-detail-description-graduates-inner {
  border: solid 2px #cd3924;
}
main .major07 {
  background: #dc5380;
  color: #dc5380;
}
main .major07::after {
  border-color: #dc5380 !important;
}
main #major07 {
  position: relative;
  background: #f5cbd9;
  z-index: 0;
  background-image: url(./img/bg07.webp);
}
main #major07::after {
  content: "";
  position: absolute;
  top: -5vh;
  left: 0;
  width: 100%;
  height: 20vh;
  background: url(./img/bg07.webp) no-repeat center center;
  background-size: 100% 100%;
  opacity: 1;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  main #major07::after {
    top: -2vh;
  }
}
main h2,
main h3,
main h4 {
  color: #dc5380;
}
main .btn {
  background: #dc5380;
  color: white;
}
main .btn::after {
  border-color: white;
}
main .job-detail-description-graduates-inner {
  border: solid 2px #dc5380;
}
main .major08 {
  background: #44a335;
  color: #44a335;
}
main .major08::after {
  border-color: #44a335 !important;
}
main #major08 {
  position: relative;
  background: #c7e3c2;
  z-index: 0;
  background-image: url(./img/bg08.webp);
}
main #major08::after {
  content: "";
  position: absolute;
  top: -5vh;
  left: 0;
  width: 100%;
  height: 20vh;
  background: url(./img/bg08.webp) no-repeat center center;
  background-size: 100% 100%;
  opacity: 1;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  main #major08::after {
    top: -2vh;
  }
}
main h2,
main h3,
main h4 {
  color: #44a335;
}
main .btn {
  background: #44a335;
  color: white;
}
main .btn::after {
  border-color: white;
}
main .job-detail-description-graduates-inner {
  border: solid 2px #44a335;
}
main .major09 {
  background: #009970;
  color: #009970;
}
main .major09::after {
  border-color: #009970 !important;
}
main #major09 {
  position: relative;
  background: #b2e0d4;
  z-index: 0;
  background-image: url(./img/bg09.webp);
}
main #major09::after {
  content: "";
  position: absolute;
  top: -5vh;
  left: 0;
  width: 100%;
  height: 20vh;
  background: url(./img/bg09.webp) no-repeat center center;
  background-size: 100% 100%;
  opacity: 1;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  main #major09::after {
    top: -2vh;
  }
}
main h2,
main h3,
main h4 {
  color: #009970;
}
main .btn {
  background: #009970;
  color: white;
}
main .btn::after {
  border-color: white;
}
main .job-detail-description-graduates-inner {
  border: solid 2px #009970;
}

.cv {
  margin: 0 0 80px;
}
.cv a {
  display: block;
  margin: 0 auto;
  width: 92%;
  max-width: 600px;
}

.cv2 {
  padding: 50px 0 0;
  display: flex;
  gap: 1em;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .cv2 {
    flex-direction: column;
    gap: 2em;
    padding-bottom: 50px;
  }
}
.cv2 .btn {
  margin: 0 0 60px;
  width: 92%;
  max-width: 360px;
}
@media screen and (max-width: 768px) {
  .cv2 .btn {
    margin: 0 auto;
  }
}
.cv2 .btn:nth-of-type(1) {
  background: #f38839;
  color: #fff;
}
.cv2 .btn:nth-of-type(1)::after {
  content: "▶︎";
  top: 40%;
  right: 1rem;
  transform: translate(-50%, -50%) rotate(0);
  border: none;
}
.cv2 .btn:nth-of-type(2) {
  background: #60c1c7;
  color: #fff;
}
.cv2 .btn:nth-of-type(2)::after {
  content: "▶︎";
  top: 40%;
  right: 1rem;
  transform: translate(-50%, -50%) rotate(0);
  border: none;
}

#major01 h2,
#major01 h3,
#major01 h4 {
  color: #3d62a0;
}
#major01 .btn {
  background: #3d62a0;
}
#major01 .job-detail-description-graduates-inner {
  border: solid 1px #3d62a0;
}

#major02 h2,
#major02 h3,
#major02 h4 {
  color: #0090d5;
}
#major02 .btn {
  background: #0090d5;
}
#major02 .job-detail-description-graduates-inner {
  border: solid 1px #0090d5;
}

#major03 h2,
#major03 h3,
#major03 h4 {
  color: #009189;
}
#major03 .btn {
  background: #009189;
}
#major03 .job-detail-description-graduates-inner {
  border: solid 1px #009189;
}

#major04 h2,
#major04 h3,
#major04 h4 {
  color: #00408b;
}
#major04 .btn {
  background: #00408b;
}
#major04 .job-detail-description-graduates-inner {
  border: solid 1px #00408b;
}

#major05 h2,
#major05 h3,
#major05 h4 {
  color: #e38000;
}
#major05 .btn {
  background: #e38000;
}
#major05 .job-detail-description-graduates-inner {
  border: solid 1px #e38000;
}

#major06 h2,
#major06 h3,
#major06 h4 {
  color: #cd3924;
}
#major06 .btn {
  background: #cd3924;
}
#major06 .job-detail-description-graduates-inner {
  border: solid 1px #cd3924;
}

#major07 h2,
#major07 h3,
#major07 h4 {
  color: #dc5380;
}
#major07 .btn {
  background: #dc5380;
}
#major07 .job-detail-description-graduates-inner {
  border: solid 1px #dc5380;
}

#major08 h2,
#major08 h3,
#major08 h4 {
  color: #44a335;
}
#major08 .btn {
  background: #44a335;
}
#major08 .job-detail-description-graduates-inner {
  border: solid 1px #44a335;
}

#major09 {
  padding-bottom: 4.5rem;
  margin-bottom: 5.5rem;
}
@media screen and (max-width: 768px) {
  #major09 {
    padding-bottom: 2rem;
    margin-bottom: 3rem;
  }
}
#major09::before {
  position: absolute;
  content: "";
  background: url(./img/bg10.webp);
  background-size: 100% 100%;
  bottom: -5vh;
  left: 0;
  width: 100%;
  height: 20vh;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #major09::before {
    bottom: -3vh;
  }
}
#major09 h2,
#major09 h3,
#major09 h4 {
  color: #009970;
}
#major09 .btn {
  background: #009970;
}
#major09 .job-detail-description-graduates-inner {
  border: solid 1px #009970;
}

.job-detail {
  position: relative;
  padding: 0 0 180px;
}
@media screen and (max-width: 768px) {
  .job-detail {
    padding: 0 0 6rem;
  }
}
.job-detail .container {
  border-radius: 32px;
}
.job-detail .job-detail-header {
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 768px) {
  .job-detail .job-detail-header {
    flex-direction: column-reverse;
    margin-bottom: -36px;
  }
}
.job-detail .job-detail-header .job-detail-header-text {
  padding: 20px;
  position: absolute;
  left: 0;
  bottom: 80px;
  background: white;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .job-detail .job-detail-header .job-detail-header-text {
    padding: 0;
    position: relative;
    width: 100%;
    bottom: auto;
    top: -72px;
    background: transparent;
  }
}
.job-detail .job-detail-header .job-detail-header-text h2 {
  font-size: 2.25em;
  margin-bottom: 0.25em;
}
@media screen and (max-width: 768px) {
  .job-detail .job-detail-header .job-detail-header-text h2 {
    font-size: 1.5em;
    background: white;
    display: inline-block;
    padding: 10px;
    border-radius: 10px;
  }
}
.job-detail .job-detail-header .job-detail-header-text p {
  line-height: 1.75em;
}
@media screen and (max-width: 768px) {
  .job-detail .job-detail-header .job-detail-header-text p {
    padding: 0 20px;
  }
}
.job-detail .job-detail-header .job-detail-header-img {
  position: relative;
}
.job-detail .job-detail-header .job-detail-header-img img {
  position: relative;
  top: -80px;
}
@media screen and (max-width: 768px) {
  .job-detail .job-detail-header .job-detail-header-img img {
    position: relative;
    top: -28px;
  }
}
.job-detail .job-detail-description h3 {
  font-size: 1.25em;
  margin: 2.5em 0;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .job-detail .job-detail-description h3 {
    font-size: 1.25em;
  }
}
.job-detail .job-detail-description h3::before {
  content: "";
  display: block;
  left: 50%;
  font-size: 3.3em;
  line-height: 1.25em;
  font-family: "Zen Maru Gothic";
}
@media screen and (max-width: 768px) {
  .job-detail .job-detail-description h3::before {
    font-size: 2.5em;
  }
}
.job-detail .job-detail-description h3.jobs {
  margin-top: 0;
}
.job-detail .job-detail-description h3.jobs::before {
  content: "JOBS";
}
.job-detail .job-detail-description h3.work::before {
  content: "WORK";
}
.job-detail .job-detail-description h3.message {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 40px;
  background: white;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .job-detail .job-detail-description h3.message {
    padding: 0 20px;
    top: 30px;
  }
}
.job-detail .job-detail-description h3.message::before {
  content: "MESSAGE";
}
.job-detail .job-detail-description-content {
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .job-detail .job-detail-description-content {
    padding: 0 1em;
    flex-direction: column;
  }
}
.job-detail .job-detail-description-content-img {
  flex-basis: calc(50% - 40px);
}
@media screen and (max-width: 768px) {
  .job-detail .job-detail-description-content-img {
    margin-bottom: 1.5em;
  }
}
.job-detail .job-detail-description-content-text {
  flex-basis: 50%;
}
.job-detail .job-detail-description-content-text p {
  line-height: 2em;
}
.job-detail .job-detail-description-content-text ul li {
  font-size: 1.125em;
  margin-bottom: 0.5em;
}
.job-detail .job-detail-description-content-text ul li::before {
  content: "● ";
}
.job-detail .job-detail-description-content-text ul p {
  line-height: 1.5em;
  margin-bottom: 0.75em;
  padding-left: 1.25em;
}
.job-detail .job-detail-description-content-text .btn {
  margin-top: 20px;
}
.job-detail .job-detail-description-content-text .btn:nth-of-type(1) {
  margin-top: 40px;
}
.job-detail .job-detail-description .flex-reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .job-detail .job-detail-description .flex-reverse {
    flex-direction: column;
  }
}
.job-detail .job-detail-description-graduates {
  padding: 80px 40px 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .job-detail .job-detail-description-graduates {
    padding: 80px 1em 50px;
  }
}
.job-detail .job-detail-description-graduates-inner {
  border: solid 1px #3d62a0;
  padding: 80px 40px 0;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .job-detail .job-detail-description-graduates-inner {
    padding: 50px 1em 0;
  }
}
.job-detail .job-detail-description-graduates-inner .graduates-card {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .job-detail .job-detail-description-graduates-inner .graduates-card {
    flex-direction: column;
  }
}
.job-detail .job-detail-description-graduates-inner .graduates-card .graduate {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.job-detail .job-detail-description-graduates-inner .graduates-card .graduate h4 {
  font-size: 1rem;
  margin: 1em 0;
}
.job-detail .job-detail-description-graduates-inner .graduates-card .graduate p {
  font-weight: 600;
}
.job-detail .data-scientist {
  padding-bottom: 60px;
}

#major09 .container {
  padding-bottom: 60px;
}

.sns {
  padding: 0 0 80px;
}
@media screen and (max-width: 768px) {
  .sns {
    padding: 0 0 1rem;
  }
}
.sns .sns-inner {
  width: 92%;
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
@media screen and (max-width: 768px) {
  .sns .sns-inner {
    flex-wrap: wrap;
    gap: 1em;
  }
  .sns .sns-inner a {
    flex-basis: calc((100% - 2em) / 3);
  }
}

footer .footer-inner {
  padding: 40px 0;
  display: flex;
  width: 92%;
  max-width: 1040px;
  margin: 0 auto;
  gap: 1em;
}
@media screen and (max-width: 768px) {
  footer .footer-inner {
    flex-direction: column;
    gap: 2em;
  }
}
footer .footer-inner-logo {
  flex-basis: 25%;
}
footer .footer-inner-text .tel {
  position: relative;
  padding-left: 3em;
}
footer .footer-inner-text .tel span {
  position: absolute;
  left: 0;
  top: 0;
}
footer .credit {
  text-align: center;
  padding: 0.75em 0;
  background: #eee;
  color: #666;
}/*# sourceMappingURL=style.css.map */