@charset "UTF-8";
/*
Theme Name: ぴーぷる採用サイト
Author: 株式会社ぴーぷる
Version: 0.1
*/
* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  word-break: break-all;
  scroll-padding-top: 30px;
  background: white;
  scroll-behavior: smooth;
}
@media screen and (max-width: 768px) {
  html,
  body {
    scroll-padding-top: 100px;
  }
}
@media screen and (max-width: 430px) {
  html,
  body {
    font-size: 15px;
  }
}

.fa,
.fas,
.fab {
  font-family: "FontAwesome";
  font-weight: 900;
}

figure {
  margin: 0;
}
figure img {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  text-align: justify;
}

address {
  font-style: normal;
  text-align: justify;
}

nav.navigation.pagination {
  max-width: 1260px;
  margin: 0 auto;
}
nav.navigation.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
nav.navigation.pagination .nav-links > * {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: white;
  text-align: center;
  text-decoration: none;
  background: #16832e;
  border-radius: 50%;
}

.step-bar {
  display: flex;
  align-items: baseline;
  justify-content: center;
  padding-inline-start: 0;
  margin-bottom: 80px;
}
.step-bar .step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 200px;
}
@media screen and (max-width: 768px) {
  .step-bar .step {
    margin-right: 80px;
  }
}
.step-bar .step::before {
  position: absolute;
  top: 23px;
  right: 80%;
  z-index: 0;
  width: 265px;
  height: 2px;
  content: "";
  background: #f1f1f1;
}
@media screen and (max-width: 768px) {
  .step-bar .step::before {
    width: 122px;
  }
}
.step-bar .step .circle {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #a5a5a5;
  background-color: #fff;
  border: 2px solid #a5a5a5;
  border-radius: 50%;
}
.step-bar .step p {
  font-size: 16px;
  line-height: 1.4;
  color: #b4b4b4;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .step-bar .step p {
    font-size: 14px;
  }
}
.step-bar .step:first-child::before {
  content: none;
}
.step-bar .step:last-child {
  margin-right: 0;
}
.step-bar .step.active::before {
  background-color: #19ab39;
}
.step-bar .step.active .circle {
  color: #fff;
  background-color: #19ab39;
  border-color: #19ab39;
}
.step-bar .step.active p {
  color: #19ab39;
}

.fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fadein.visible {
  opacity: 1;
  transform: translateY(0);
}

.btn, .btn-slim, .btn-orange, .btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 40px;
  padding: 15px;
  font-weight: 700;
  color: white;
  text-align: center;
  text-decoration: none;
  background: lightgray;
  border: 2px solid transparent;
  border-radius: 100px;
  transition: all 0.3s ease;
}
.btn a, .btn-slim a, .btn-orange a, .btn-green a {
  color: inherit;
  text-decoration: none;
}
.btn a:hover, .btn-slim a:hover, .btn-orange a:hover, .btn-green a:hover {
  color: inherit;
}

.btn-green {
  background: #2ac353;
  border-color: #2ac353;
}
.btn-green a:hover {
  color: #2ac353 !important;
}
.btn-green:hover {
  color: #2ac353;
  background: #fff;
  border-color: #2ac353;
}
.btn-green:hover a {
  color: #2ac353 !important;
}

.btn-orange {
  background: #e49f4a;
  border-color: #e49f4a;
}
.btn-orange a:hover {
  color: #e49f4a !important;
}
.btn-orange:hover {
  color: #e49f4a;
  background: #fff;
  border-color: #e49f4a;
}
.btn-orange:hover a {
  color: #e49f4a !important;
}

.btn-slim {
  min-width: auto;
  min-height: auto;
  padding: 2px 15px;
  font-size: 0.9rem;
}

.btn-border {
  display: inline-flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px 15px 50px;
  font-weight: 700;
  color: inherit;
  text-align: center;
  word-break: keep-all;
  text-decoration: none;
  background: white;
  border: solid 3px #2ac353;
  border-radius: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2509803922);
}
.btn-border::after {
  display: block;
  width: 2rem;
  height: 2rem;
  content: "";
  background-image: url("assets/images/common/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.btn-border:hover {
  color: #2ac353;
}
.btn-border:hover::after {
  transform: translateX(10px);
}

.btn-solid {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  margin: 0 20px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  background-color: #2ac353;
  border: none;
  border: solid 3px #fff;
  border-radius: 100px;
  transition: background-color 0.3s ease;
}

.btn-recruit-entry {
  display: block;
  width: 100%;
  padding: 1em 2em;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  text-align: center;
  letter-spacing: 0.5em;
  text-decoration: none;
  background: #a5a5a5;
  border: solid 5px white;
  border-radius: 60px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2509803922);
}
.btn-recruit-entry.green {
  background: #2ac353;
}
.btn-recruit-entry.orange {
  background: #ef7c00;
}
@media screen and (max-width: 768px) {
  .btn-recruit-entry {
    padding: 1em 2em;
    font-size: 18px;
  }
}
@media screen and (max-width: 430px) {
  .btn-recruit-entry {
    padding: 1em 1em;
  }
}

header#site-header {
  position: relative;
  z-index: 99;
  width: 100%;
  padding: 20px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  header#site-header {
    padding-top: 30px;
  }
}
header#site-header.front {
  position: relative;
  min-height: 900px;
}
header#site-header.front video {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  width: 100%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translateX(-50%);
}
header#site-header.front #fv-slider {
  position: absolute;
  top: -50px;
  left: 0;
  z-index: -1;
  display: none;
  width: 100%;
  height: 100%;
}
header#site-header.front #fv-slider img {
  position: absolute;
  top: 50px;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease;
}
header#site-header.front #fv-slider img.active {
  display: block;
  opacity: 1;
}
header#site-header.front::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background-image: radial-gradient(rgba(255, 255, 255, 0.3) 0.5px, transparent 0.5px);
  background-size: 5px 5px;
}
header#site-header.front #slogan {
  position: absolute;
  top: 60%;
  left: 5vw;
  z-index: 2;
  max-width: 90%;
  font-size: clamp(1.5rem, 2.5vw, 3rem);
  transform: translateY(-50%);
}
header#site-header.front #header-border-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  header#site-header.front #header-border-wave {
    bottom: -3%;
    height: 140px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
header#site-header.front .decoration {
  position: absolute;
  z-index: 0;
  width: clamp(160px, 18vw, 320px);
  max-width: 90vw;
  pointer-events: none;
  opacity: 0.9;
  animation: float 10s ease-in-out infinite;
}
header#site-header.front .decoration.deco-top-left {
  top: -60px;
  left: -60px;
  animation-duration: 11s;
  animation-delay: 0s;
}
@media screen and (max-width: 768px) {
  header#site-header.front .decoration.deco-top-left {
    top: 4%;
  }
}
header#site-header.front .decoration.deco-top-right {
  right: -40px;
  bottom: 20%;
  width: 350px;
  animation-duration: 9s;
  animation-delay: 1.5s;
}
@media screen and (max-width: 768px) {
  header#site-header.front .decoration.deco-top-right {
    right: 7px;
    bottom: 10%;
    width: 120px;
  }
}
header#site-header.front .decoration.deco-bottom-left {
  bottom: -50px;
  left: -30px;
  animation-duration: 12s;
  animation-delay: 0.5s;
}
header#site-header.front .decoration.deco-bottom-right {
  top: 10px;
  right: -70px;
  animation-duration: 13s;
  animation-delay: 2s;
}
@media screen and (max-width: 768px) {
  header#site-header.front .decoration.deco-bottom-right {
    top: 18%;
  }
}
@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(25px, -40px) rotate(2deg);
  }
  50% {
    transform: translate(-15px, 30px) rotate(-2deg);
  }
  75% {
    transform: translate(20px, -35px) rotate(1deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
@media screen and (max-width: 1024px) {
  header#site-header.front {
    min-height: 650px;
  }
  header#site-header.front #slogan {
    top: 55%;
    font-size: clamp(1.3rem, 2.2vw, 2.5rem);
  }
  header#site-header.front .decoration {
    width: clamp(120px, 20vw, 250px);
  }
}
@media screen and (max-width: 768px) {
  header#site-header.front {
    min-height: 100svh;
  }
  header#site-header.front .background-video {
    display: none;
  }
  header#site-header.front #fv-slider {
    display: block;
  }
  header#site-header.front #slogan {
    top: 50%;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  header#site-header.front #slogan {
    top: 40%;
  }
}
@media screen and (max-width: 768px) {
  header#site-header.front .decoration {
    width: clamp(125px, 25vw, 200px);
  }
}
header#site-header.page #site-header-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: #2ac353;
  clip-path: circle(125vw at 50% calc(100% - 125vw));
}
header#site-header.page #site-header-bg img {
  position: absolute;
  right: 10%;
  bottom: -60px;
}
header#site-header.page #title {
  max-width: 1024px;
  padding: 100px 0;
  margin: 0 auto;
  color: white;
}
header#site-header.page #title h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  letter-spacing: 5px;
}
header#site-header.page #title h1::first-letter {
  color: #f7f022;
}
header#site-header.page #title h2 {
  margin: 0;
  font-size: clamp(1.2rem, 1.5vw, 1.7rem);
}
@media screen and (max-width: 1024px) {
  header#site-header.page #title {
    padding: 80px 20px;
  }
  header#site-header.page #site-header-bg {
    clip-path: circle(150vw at 50% calc(100% - 150vw));
  }
}
@media screen and (max-width: 768px) {
  header#site-header.page #title {
    padding: 60px 15px;
  }
  header#site-header.page #title h1 {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }
  header#site-header.page #title h2 {
    font-size: 1.2rem;
  }
  header#site-header.page #site-header-bg {
    clip-path: circle(200vw at 50% calc(100% - 200vw));
  }
}
@media screen and (max-width: 768px) {
  header#site-header.page #title {
    padding: 70px 10px 30px;
  }
  header#site-header.page #title h1 {
    font-size: 2rem;
  }
  header#site-header.page #title h2 {
    font-size: 1rem;
  }
}
header#site-header.interview {
  top: -10px;
  height: 630px;
  background-image: url("assets/images/people/img_background.png");
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  header#site-header.interview {
    height: 500px;
    background-position: center bottom;
    background-size: cover;
  }
}
@media screen and (max-width: 480px) {
  header#site-header.interview {
    height: 500px;
  }
}

footer#site-footer {
  position: relative;
  z-index: 1;
  padding: 200px 20px 20px;
}
footer#site-footer #site-footer-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: #2ac353;
  clip-path: circle(125vw at 50% calc(30px + 125vw));
}
footer#site-footer #site-footer-bg img {
  position: absolute;
  bottom: 0;
  right: 40px;
}
@media screen and (max-width: 768px) {
  footer#site-footer #site-footer-bg img {
    top: auto;
    right: -150px;
    bottom: 0;
  }
}
footer#site-footer #toplink {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
footer#site-footer #toplink img {
  transition: transform 0.5s cubic-bezier(0.22, 1.61, 0.36, 1);
}
footer#site-footer #toplink:hover img {
  transform: translateY(-10px);
}
footer#site-footer #site-footer-content {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto 25px;
}
footer#site-footer #site-footer-content #footer-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer#site-footer #site-footer-content #footer-links a {
  color: white;
  text-decoration: none;
}
footer#site-footer #site-footer-content #footer-links .btn-solid:hover {
  background-color: #fff;
  color: #2ac353;
}
footer#site-footer #site-footer-content #social {
  margin: 0 20px;
}
footer#site-footer #site-footer-content #social a {
  display: inline-block;
  margin-right: 10px;
}
footer#site-footer #site-footer-content #social a:last-child {
  margin-right: 0;
}
footer#site-footer #site-footer-content #social a:hover {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
footer#site-footer #site-footer-content #footer-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
footer#site-footer #site-footer-content #footer-small-img {
  width: 30px;
  height: 30px;
}
footer#site-footer #site-footer-content #contact {
  display: flex;
  gap: 50px;
  align-items: center;
  max-height: 150px;
  padding: 20px 50px 30px;
  color: inherit;
  text-decoration: none;
  background: white;
  border-radius: 20px;
}
@media screen and (max-width: 430px) {
  footer#site-footer #site-footer-content #contact {
    padding: 20px 8%;
  }
}
footer#site-footer #site-footer-content #contact h1 {
  margin: 0;
  font-size: 2.5rem;
  color: #2ac353;
}
footer#site-footer #site-footer-content #contact p {
  margin: 0;
  font-weight: bold;
}
footer#site-footer #site-footer-content #contact img {
  transition: transform 0.3s ease;
}
footer#site-footer #site-footer-content #contact:hover img {
  transform: translateX(10px);
}
footer#site-footer #copyright {
  display: block;
  order: -1;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 0.5rem;
  color: #fff;
  text-align: center;
}
footer#site-footer #site-footer-info {
  display: flex;
  flex-wrap: nowrap;
  gap: 5%;
  align-items: flex-start;
  justify-content: space-between;
  width: 280px;
  font-size: 0.9rem;
  color: white;
}
@media screen and (max-width: 768px) {
  footer#site-footer #site-footer-info {
    justify-content: center;
    width: 100%;
  }
}
footer#site-footer #site-footer-info .links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
footer#site-footer #site-footer-info .links a {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  color: inherit;
  text-decoration: none;
  text-decoration: underline;
}
footer#site-footer #site-footer-info .links a:hover {
  text-decoration: none;
}
footer#site-footer #site-footer-info .links a i.fas,
footer#site-footer #site-footer-info .links a i.fa-solid {
  font-size: 0.8em;
  vertical-align: middle;
}
footer#site-footer #site-footer-info .image img {
  display: block;
  width: 50px;
  height: 50px;
}

@media (max-width: 768px) {
  #site-footer-content {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  #footer-links {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  #footer-links #social {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 0;
  }
  #footer-right {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  #site-footer-info {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
  }
  #contact {
    justify-content: center;
    max-width: 100%;
    padding: 1rem 2rem;
  }
  #contact h1 {
    font-size: 1.8rem !important;
  }
}
main.singular {
  margin: 60px auto 80px;
  overflow: hidden;
}
main.singular .content {
  max-width: 1104px;
  padding: 0 40px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  main.singular .content {
    padding: 0 15px;
  }
}
main.singular h1 {
  margin: 0 0 1em;
  font-size: 2.5rem;
  font-weight: 700;
}
main.singular h1:not(:first-child) {
  margin-top: 5rem;
}
@media screen and (max-width: 430px) {
  main.singular h1 {
    font-size: 2rem;
  }
}
main.singular h2 {
  margin: 0 0 1em;
  font-size: 1.5rem;
  font-weight: 700;
  color: #166338;
}
main.singular h2:not(:first-child) {
  margin-top: 4rem;
}
main.singular p {
  margin: 0 0 2rem;
  line-height: 2em;
}
main.singular p a {
  color: #16832e;
  text-decoration: none;
}

main.singular.page h1 {
  margin: 0;
  text-align: center;
}
main.singular.page h1[class^=border] {
  position: relative;
  margin-bottom: 80px;
}
main.singular.page h1[class^=border]::after {
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 100px;
  content: "";
  border-bottom: solid 5px black;
  transform: translateX(-50%);
}
main.singular.page h1.border-green::after {
  border-color: #16832e;
}
main.singular.page h1.border-orange::after {
  border-color: #ef7c00;
}
main.singular.page h3 {
  margin: 0 0 30px;
  font-size: 1.5rem;
}
main.singular.page h3:not(:first-child) {
  margin-top: 50px;
}

header#site-header {
  container-name: header;
  container-type: inline-size;
}

#global-nav {
  position: fixed;
  right: 30px;
  left: 30px;
  z-index: 99;
  transition: transform 0.3s ease;
}
@container header (max-width: 1200px) {
  #global-nav {
    position: fixed;
    top: 20px;
    left: 10px;
    width: calc(100vw - 20px);
  }
}
#global-nav a.homelink {
  display: contents;
}
#global-nav.hide {
  transform: translateY(-150%);
}

#global-nav-pc {
  display: flex;
  gap: 10px 30px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 50px;
  background: white;
  border-radius: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2509803922);
}
@media screen and (max-width: 1320px) {
  #global-nav-pc {
    padding: 10px 20px;
  }
}
@container header (max-width: 1200px) {
  #global-nav-pc {
    display: none;
  }
}
#global-nav-pc ul#menu-pc {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: baseline;
  justify-self: flex-end;
  padding: 0;
  margin: 0 0 0 auto;
  font-size: 0.9rem;
  list-style: none;
}
@media screen and (max-width: 1320px) {
  #global-nav-pc ul#menu-pc {
    gap: 12px;
  }
}
#global-nav-pc ul#menu-pc li {
  position: relative;
}
#global-nav-pc ul#menu-pc li a {
  font-weight: bold;
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}
#global-nav-pc ul#menu-pc li a:hover {
  color: #2ac353;
}
#global-nav-pc ul#menu-pc li.menu-item-has-children:hover > ul.sub-menu {
  pointer-events: all;
  opacity: 1;
}
#global-nav-pc ul#menu-pc li.menu-item-has-children > a::after {
  margin-left: 0.5rem;
  font-family: "FontAwesome";
  font-weight: 900;
  content: "\f078";
}
#global-nav-pc ul#menu-pc ul.sub-menu {
  position: absolute;
  top: 100%;
  left: -30px;
  width: -moz-max-content;
  width: max-content;
  padding: 5px 30px;
  margin-top: 30px;
  pointer-events: none;
  list-style: none;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2509803922);
  opacity: 0;
  transition: opacity 0.2s ease;
}
#global-nav-pc ul#menu-pc ul.sub-menu::before {
  position: absolute;
  bottom: 100%;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 30px;
  content: "";
}
#global-nav-pc ul#menu-pc ul.sub-menu li {
  padding: 20px 0;
}
#global-nav-pc ul#menu-pc ul.sub-menu li:not(:last-child) {
  border-bottom: solid 1px #b4b4b4;
}
#global-nav-pc ul#menu-pc ul.sub-menu li a {
  position: relative;
  display: block;
  padding-right: 50px;
}
#global-nav-pc ul#menu-pc ul.sub-menu li a::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 25px;
  height: 25px;
  content: "";
  background-image: url("assets/images/common/arrow-right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
}
#global-nav-pc ul#menu-pc .btn-green,
#global-nav-pc ul#menu-pc .btn-orange {
  padding: 5px 15px;
}

#global-nav-sp {
  display: none;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: white;
  border-radius: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2509803922);
}
@container header (max-width: 1200px) {
  #global-nav-sp {
    display: flex;
  }
}
#global-nav-sp button#menu-sp-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: white;
  cursor: pointer;
  background: #2ac353;
  border: none;
  border-radius: 100%;
}

#nav-sp-bg {
  position: absolute;
  top: -20px;
  left: -10px;
  z-index: -1;
  display: none;
  width: calc(100% + 20px);
  height: 100vh;
  background: #2ac353;
}

#nav-sp-content {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  width: 100%;
  height: calc(100vh - 100% - 50px);
  margin-top: 20px;
  overflow-y: scroll;
}
#nav-sp-content ul#menu-sp {
  width: 100%;
  padding: 30px;
  margin: 0 0 20px;
  list-style: none;
  background: white;
  border-radius: 15px;
}
#nav-sp-content ul#menu-sp a {
  font-weight: 700;
  color: inherit;
  text-decoration: none;
}
#nav-sp-content ul#menu-sp > li:not(.btn) {
  padding: 20px 10px;
  border-bottom: solid 1px #b4b4b4;
}
#nav-sp-content ul#menu-sp > li:not(.btn) > a {
  position: relative;
  display: block;
  padding-right: 30px;
  font-size: 18px;
}
#nav-sp-content ul#menu-sp li.menu-item-has-children > a::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 30px;
  height: 30px;
  content: "";
  background-image: url("assets/images/common/accordion-plus.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%);
  transition: background-image 0.3s;
}
#nav-sp-content ul#menu-sp li.menu-item-has-children.active > a::after {
  background-image: url("assets/images/common/accordion-minus.png");
}
#nav-sp-content ul#menu-sp ul.sub-menu {
  display: none;
  padding: 0;
  margin-top: 20px;
  font-size: 16px;
  list-style: none;
}
#nav-sp-content ul#menu-sp ul.sub-menu > li {
  margin-top: 15px;
}
#nav-sp-content ul#menu-sp .btn {
  width: 100%;
  margin-top: 15px;
  font-size: 1rem;
}
#nav-sp-content #nav-sp-contact {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 80%;
  padding: 25px 50px 25px 30px;
  margin: 1rem auto;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  background: white;
  border-radius: 20px;
}
#nav-sp-content #nav-sp-contact::after {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 25px;
  height: 25px;
  content: "";
  background-image: url("assets/images/common/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%);
}
#nav-sp-content #nav-sp-contact em {
  font-size: 1.5rem;
  font-style: normal;
  color: #2ac353;
}
#nav-sp-content #nav-sp-contact span {
  font-size: 0.8rem;
  color: black;
}
#nav-sp-content #nav-sp-privacy {
  font-size: 0.8rem;
  text-align: center;
}
#nav-sp-content #nav-sp-privacy a {
  color: white;
}

.banner-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 30px;
  justify-content: center;
  padding: 60px 20px 50px;
  background-color: #e5ffe2;
  background-image: url("assets/images/common/back_strype.png");
  background-repeat: repeat;
  background-position: top left;
  background-size: 13px 13px;
}
@media screen and (max-width: 430px) {
  .banner-wrap {
    flex-direction: column;
    gap: 0;
  }
}
.banner-wrap .banner-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  color: inherit;
  text-decoration: none;
  border-radius: 10px;
  transition: transform 0.2s ease;
}
.banner-wrap .banner-link:hover {
  transform: scale(1.05);
}
.banner-wrap .banner-link img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 5px;
}
.banner-wrap .banner-link .banner-text {
  position: relative;
  display: inline-flex;
  gap: 0.5em;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.banner-wrap .banner-link .banner-text::after {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  content: "";
  background-image: url("assets/images/common/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

main.singular h1.speech, main.singular h1.speech-right, main.singular h1.speech-center {
  position: relative;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 80px;
  padding: 10px 40px;
  margin: 0 0 40px;
  font-size: 1.4rem;
  color: white;
  text-align: center;
  background: #2ac353;
  border-radius: 50px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2509803922);
}
main.singular h1.speech::after, main.singular h1.speech-right::after, main.singular h1.speech-center::after {
  position: absolute;
  bottom: 0;
  left: 50px;
  z-index: 1;
  width: 20px;
  height: 20px;
  content: "";
  background: #2ac353;
  box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.2509803922);
  transform: translate(100%, 50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  main.singular h1.speech::after, main.singular h1.speech-right::after, main.singular h1.speech-center::after {
    left: 50%;
    transform: translate(-50%, 50%) rotate(45deg);
  }
}
main.singular h1.speech-center::after {
  left: 50%;
  transform: translate(-50%, 50%) rotate(45deg);
}
main.singular h1.speech-right::after {
  right: 50px;
  left: auto;
  transform: translate(-100%, 50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  main.singular h1.speech, main.singular h1.speech-right, main.singular h1.speech-center {
    min-height: 55px;
    padding: 10px 40px;
    font-size: 18px;
    margin: 0 auto 40px;
  }
}

.s-answer {
  padding: 50px;
  background-color: #f1f1f1;
  border-radius: 10px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}
.s-answer h2 {
  margin: 0 0 1rem;
}
.s-answer .dotted-line {
  max-width: 600px;
  border: none;
  border-bottom: 6px dotted #166338;
}
@media screen and (max-width: 768px) {
  .s-answer {
    padding: 25px;
  }
  .s-answer h2 {
    font-size: 18px !important;
    text-align: center;
  }
}

main#front h1.title {
  margin: 0;
  font-size: 5rem;
  font-weight: 700;
  color: white;
}
@media screen and (max-width: 768px) {
  main#front h1.title {
    font-size: 4rem;
    text-align: center;
  }
}
main#front h1.title + p.subtitle {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}
@media screen and (max-width: 768px) {
  main#front h1.title + p.subtitle {
    font-size: 1.5rem;
    text-align: center;
  }
}
main#front section#lead {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  padding: 0 20px 100px;
  margin: 0 auto;
}
main#front section#lead .lead-text {
  flex: 1;
}
main#front section#lead .lead-text h1 {
  margin-bottom: 40px;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  main#front section#lead .lead-text h1 {
    font-size: 2.11111rem;
  }
}
main#front section#lead .lead-text h1 span {
  position: relative;
  display: inline-block;
}
main#front section#lead .lead-text h1 span::before {
  position: absolute;
  bottom: 90%;
  left: 50%;
  transform: translateX(-50%);
}
main#front section#lead .lead-text h1 span.emphasis-green {
  color: #16832e;
}
main#front section#lead .lead-text h1 span.emphasis-green::before {
  background: #16832e;
}
main#front section#lead .lead-text h1 span.emphasis-orange {
  color: #ef7c00;
}
main#front section#lead .lead-text h1 span.emphasis-orange::before {
  background: #ef7c00;
}
main#front section#lead .lead-text p {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
  line-height: 2.8;
}
main#front section#lead .lead-text h2 {
  font-size: 2.4rem;
}
main#front section#lead .lead-images {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  height: 500px;
}
main#front section#lead .lead-images img {
  position: absolute;
  width: 70%;
  height: auto;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}
main#front section#lead .lead-images img.visible {
  opacity: 1;
  transform: translateY(0);
}
main#front section#lead .lead-images img:nth-child(1) {
  top: -20%;
  left: -15px;
  z-index: 3;
  width: 75%;
}
main#front section#lead .lead-images img:nth-child(2) {
  top: 61%;
  right: 0;
  z-index: 2;
  width: 60%;
}
main#front section#lead .lead-images img:nth-child(3) {
  bottom: -65%;
  left: 20%;
  z-index: 1;
  width: 40%;
}
@media (max-width: 1100px) {
  main#front section#lead .lead-images img {
    transform: scale(0.95);
  }
}
@media (max-width: 900px) {
  main#front section#lead .lead-images img {
    transform: scale(0.9);
  }
}
@media screen and (max-width: 768px) {
  main#front section#lead {
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    padding: 0 20px;
  }
  main#front section#lead .lead-images {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    height: auto;
  }
  main#front section#lead .lead-images img {
    position: relative;
    opacity: 1;
    transform: none;
    transition: none;
  }
  main#front section#lead .lead-images img:nth-child(1) {
    left: -10%;
    z-index: 3;
    width: 85%;
    margin-bottom: -20px;
  }
  main#front section#lead .lead-images img:nth-child(2) {
    left: 10%;
    z-index: 2;
    width: 75%;
    margin-bottom: -10px;
  }
  main#front section#lead .lead-images img:nth-child(3) {
    left: -5%;
    z-index: 1;
    width: 65%;
  }
}
main#front section .decoration {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
  animation: float 10s ease-in-out infinite;
}
main#front section#movie {
  position: relative;
  padding: 6% 20px 4%;
  background-image: url("assets/images/front/movie/movie_bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 80px;
}
main#front section#movie::after {
  position: absolute;
  top: 50%;
  right: -5%;
  display: inline-block;
  width: 40%;
  height: 50%;
  content: "";
  background-image: url("assets/images/front/movie/img_03.png");
  background-repeat: no-repeat;
  background-position: 0 20%;
  background-size: clamp(800px, 60%, 1000px);
}
@media screen and (max-width: 768px) {
  main#front section#movie {
    padding: 80px 20px 100px;
    border-radius: 30px;
  }
}
main#front section#movie #movie-video {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1240px;
  padding: 150px 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  main#front section#movie #movie-video {
    padding: 0;
  }
}
main#front section#movie #movie-video::before, main#front section#movie #movie-video::after {
  position: absolute;
  z-index: -2;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 1024px) {
  main#front section#movie #movie-video::before, main#front section#movie #movie-video::after {
    display: none;
  }
}
main#front section#movie #movie-video::before {
  top: 10%;
  right: 0;
  width: 200px;
  height: 170px;
  background-image: url("assets/images/front/movie/img_02.png");
  transform: rotate(20deg);
}
main#front section#movie #movie-video::after {
  bottom: 30%;
  left: 0;
  width: 200px;
  height: 170px;
  background-image: url("assets/images/front/movie/img_01.png");
  transform: rotate(-20deg);
}
main#front section#movie #movie-video #movie-video-btn {
  position: relative;
  z-index: 2;
  display: block;
  margin: 0 auto;
  cursor: pointer;
  clip-path: circle(50%);
}
@media screen and (max-width: 768px) {
  main#front section#movie #movie-video #movie-video-btn {
    margin-top: 50px;
  }
}
main#front section#movie #movie-video .movie-office {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  aspect-ratio: 1;
  font-size: 1.7rem;
  font-weight: 700;
  color: white;
  word-break: keep-all;
  background: lightgray;
  border: solid 5px white;
  border-radius: 100%;
  transition: all 0.1s ease;
}
@media screen and (max-width: 1024px) {
  main#front section#movie #movie-video .movie-office {
    display: none;
  }
}
main#front section#movie #movie-video .movie-office::before, main#front section#movie #movie-video .movie-office::after {
  position: absolute;
  content: "";
}
main#front section#movie #movie-video .movie-office::before {
  top: 50%;
  left: 50%;
  width: calc(100% + 25px);
  height: calc(100% + 25px);
  border: solid 1px white;
  border-radius: 100%;
  transform: translate(-50%, -50%);
}
main#front section#movie #movie-video .movie-office::after {
  width: 150px;
  height: 8px;
  background: white;
}
main#front section#movie #movie-video .movie-office.tokyo {
  background: #1bba3e;
  transform: translate(-450px, -250px);
}
main#front section#movie #movie-video .movie-office.tokyo::after {
  transform: translate(130px, 110px) rotate(35deg);
}
main#front section#movie #movie-video .movie-office.tono {
  width: 170px;
  background: #3ab5cb;
  transform: translate(180px, 130px);
}
main#front section#movie #movie-video .movie-office.tono::after {
  transform: translate(-142px, -65px) rotate(20deg);
}
main#front section#movie #movie-video .movie-office.morioka {
  background: #3a52cb;
  transform: translate(280px, 0);
}
main#front section#movie #movie-video .movie-office.morioka::after {
  transform: translate(-165px, -45px) rotate(10deg);
}
main#front section#movie #movie-video .movie-office.akita {
  width: 170px;
  background: #fc5d80;
  transform: translate(-400px, 130px);
}
main#front section#movie #movie-video .movie-office.akita::after {
  transform: translate(135px, -80px) rotate(-30deg);
}
main#front section#movie #movie-video .movie-office.hachinohe {
  background: #e7ac3d;
  transform: translate(250px, -250px);
}
main#front section#movie #movie-video .movie-office.hachinohe::after {
  transform: translate(-155px, 70px) rotate(-20deg);
}
main#front section#movie #movie-video .movie-office span {
  position: relative;
  z-index: 2;
}
main#front section#movie #movie-video .movie-office figure {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 100%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
main#front section#movie #movie-video .movie-office:hover figure {
  opacity: 1;
}
main#front section#movie #movie-modal {
  position: absolute;
  top: calc(50% + 100px);
  left: 50%;
  z-index: 99;
  display: none;
  width: 90vw;
  max-width: 1200px;
  aspect-ratio: 16/9;
  padding: clamp(20px, 50px, 3vw);
  background: rgba(0, 0, 0, 0.6666666667);
  border-radius: 30px;
  transform: translate(-50%, -50%);
}
main#front section#movie #movie-modal iframe {
  width: 100%;
  height: 100%;
}
main#front section#news {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 50px;
  justify-content: center;
  max-width: 1200px;
  padding: 80px 20px 120px;
  margin: 150px auto;
}
main#front section#news > header {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
main#front section#news > header h1 {
  font-size: 3rem;
  color: #2ac353;
}
main#front section#news > header p {
  margin: 0;
  font-size: 1.5rem;
  color: inherit;
}
main#front section#news > header .btn-border.btn-pc {
  display: inline-flex;
  margin-top: 20px;
}
main#front section#news .decoration.cir-left-top {
  top: 0;
  left: -30%;
  z-index: -1;
  width: 300px;
  animation-duration: 9s;
  animation-delay: 1.5s;
}
@media screen and (max-width: 1299px) {
  main#front section#news .decoration.cir-left-top {
    top: -20%;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  main#front section#news .decoration.cir-left-top {
    display: none;
  }
}
main#front section#news .decoration.cir-left-top img {
  width: 100%;
  transform: rotate(-90deg);
}
@media screen and (max-width: 1299px) {
  main#front section#news .decoration.cir-left-top img {
    width: 70%;
  }
}
main#front section#news .decoration.cir-left-btm {
  bottom: -30%;
  left: -12%;
  z-index: -1;
  width: 300px;
  animation-duration: 9s;
  animation-delay: 1.5s;
}
@media screen and (max-width: 1299px) {
  main#front section#news .decoration.cir-left-btm {
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  main#front section#news .decoration.cir-left-btm {
    bottom: 0;
  }
}
main#front section#news .decoration.cir-left-btm img {
  width: 100%;
  transform: rotate(-130deg);
}
@media screen and (max-width: 1299px) {
  main#front section#news .decoration.cir-left-btm img {
    width: 70%;
  }
}
@media screen and (max-width: 430px) {
  main#front section#news .decoration.cir-left-btm img {
    width: 50%;
  }
}
main#front section#news .decoration.cir-right {
  top: -30%;
  right: -30%;
  z-index: -1;
  width: 500px;
  animation-duration: 11s;
  animation-delay: 0s;
}
@media screen and (max-width: 1299px) {
  main#front section#news .decoration.cir-right {
    top: 0%;
    right: -30%;
  }
}
@media screen and (max-width: 768px) {
  main#front section#news .decoration.cir-right {
    top: 16%;
    right: -40%;
  }
}
@media screen and (max-width: 430px) {
  main#front section#news .decoration.cir-right {
    right: -80%;
  }
}
main#front section#news .decoration.cir-right img {
  transform: rotate(90deg);
}
@media screen and (max-width: 1299px) {
  main#front section#news .decoration.cir-right img {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  main#front section#news .decoration.cir-right img {
    width: 50%;
  }
}
main#front section#news #news-articles {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 760px;
  margin-left: auto;
}
main#front section#news .btn-border.btn-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  main#front section#news {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 auto;
  }
  main#front section#news > header .btn-border.btn-pc {
    display: none;
  }
  main#front section#news .btn-border.btn-sp {
    display: inline-flex;
    align-self: flex-start;
    margin: 0 auto;
  }
  main#front section#news #news-articles {
    margin-left: 0;
  }
}
main#front #about_bussiness_wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 300px 0;
  margin-bottom: 150px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  main#front #about_bussiness_wrap {
    padding: 80px 0 120px;
  }
}
main#front #about_bussiness_wrap #circle-bg {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  width: 0;
  height: 0;
  background: linear-gradient(180.44deg, #2ac353 20.43%, #67d445 50.75%, #bae47c 100.26%);
  border-radius: 50%;
  transform: translateX(-50%);
}
main#front #about_bussiness_wrap .floating-gradient {
  position: absolute;
  top: -50%;
  left: -50%;
  z-index: -2;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(42, 195, 83, 0.35), transparent 70%);
  mix-blend-mode: screen;
  animation: floatMove 25s ease-in-out infinite;
}
main#front #about_bussiness_wrap .floating-gradient:nth-child(2) {
  background: radial-gradient(circle at center, rgba(186, 228, 124, 0.25), transparent 70%);
  animation-duration: 35s;
  animation-direction: alternate;
}
@keyframes floatMove {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20%, 20%) scale(1.3);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
main#front section#about {
  display: grid;
  grid-template-columns: 420px auto;
  gap: 50px;
  justify-content: center;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto 200px;
}
main#front section#about img {
  height: auto;
}
@media screen and (max-width: 768px) {
  main#front section#about {
    grid-template-columns: 1fr;
    margin: 0;
  }
  main#front section#about img {
    display: block;
    justify-self: center;
    max-width: 90%;
  }
}
main#front section#about header ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0;
  margin: 80px 0 0;
  list-style: none;
}
main#front section#about header ul li a {
  position: relative;
  display: block;
  padding: 25px 100px 25px 70px;
  font-size: 1.3rem;
  font-weight: 700;
  color: inherit;
  text-decoration: none;
  background: white;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  main#front section#about header ul li a {
    font-size: 1rem;
  }
}
main#front section#about header ul li a::before, main#front section#about header ul li a::after {
  position: absolute;
  top: 50%;
  content: "";
  transform: translateY(-50%);
  transition: all 0.3s;
}
main#front section#about header ul li a::before {
  left: 30px;
  width: 1rem;
  height: 1rem;
  background: #2ac353;
  border-radius: 100%;
}
main#front section#about header ul li a::after {
  right: 30px;
  width: 40px;
  height: 40px;
  background-image: url("assets/images/common/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
main#front section#about header ul li a:hover {
  color: #2ac353;
}
main#front section#about header ul li a:hover::after {
  right: 20px;
}
main#front section#bussiness {
  max-width: 1200px;
  margin: 100px auto 80px;
}
@media screen and (max-width: 430px) {
  main#front section#bussiness {
    margin: 80px 0 0;
  }
}
main#front section#bussiness .btn-border {
  display: flex;
  justify-content: center;
  width: 250px;
  margin: 50px auto 0;
}
main#front section#bussiness .card-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 80px;
}
main#front section#bussiness .card-wrap a.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 0.3s;
}
main#front section#bussiness .card-wrap a.card-link:hover {
  text-decoration: none;
}
main#front section#bussiness .card-wrap a.card-link .card {
  display: flex;
  flex-direction: column;
  width: 330px;
  padding: 40px 0 70px;
  overflow: hidden;
  background: #fff;
  border: 10px solid #ccc;
  border-radius: 30px;
  transition: transform 0.3s;
}
main#front section#bussiness .card-wrap a.card-link .card:hover {
  transform: translateY(-15px);
}
main#front section#bussiness .card-wrap a.card-link .card img {
  display: block;
  width: 100%;
}
main#front section#bussiness .card-wrap a.card-link .card .card-body {
  position: relative;
  text-align: center;
}
main#front section#bussiness .card-wrap a.card-link .card .card-body p {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
main#front section#bussiness .card-wrap a.card-link .card .card-body .arrow {
  position: absolute;
  right: 20px;
  bottom: -45px;
  width: 50px;
  height: auto;
}
main#front section#bussiness .card-wrap a.card-link .card.card-develop {
  background-color: #fff;
  border-color: #3ab5cb;
}
main#front section#bussiness .card-wrap a.card-link .card.card-develop .arrow {
  color: #3ab5cb;
}
main#front section#bussiness .card-wrap a.card-link .card.card-design {
  background-color: #fff;
  border-color: #fc5d80;
}
main#front section#bussiness .card-wrap a.card-link .card.card-design .arrow {
  color: #fc5d80;
}
main#front section#bussiness .card-wrap a.card-link .card.card-health {
  background-color: #fff;
  border-color: #f5a237;
}
main#front section#bussiness .card-wrap a.card-link .card.card-health .arrow {
  color: #f5a237;
}
@media (max-width: 768px) {
  main#front section#bussiness .card-wrap {
    flex-direction: column;
    align-items: center;
  }
  main#front section#bussiness .card-wrap .card {
    width: 90%;
    max-width: 400px;
  }
}
main#front section#people {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto 150px;
}
main#front section#people .decoration.cir-left {
  top: 60%;
  left: -12%;
  z-index: -1;
  width: 300px;
  animation-duration: 9s;
  animation-delay: 1.5s;
}
@media screen and (max-width: 1299px) {
  main#front section#people .decoration.cir-left {
    left: -20%;
  }
}
@media screen and (max-width: 768px) {
  main#front section#people .decoration.cir-left {
    display: none;
  }
}
main#front section#people .decoration.cir-left img {
  width: 100%;
  transform: rotate(-130deg);
}
@media screen and (max-width: 1299px) {
  main#front section#people .decoration.cir-left img {
    width: 70%;
  }
}
main#front section#people .decoration.cir-right {
  top: -30%;
  right: -30%;
  z-index: -1;
  width: 500px;
  animation-duration: 11s;
  animation-delay: 0s;
}
@media screen and (max-width: 1299px) {
  main#front section#people .decoration.cir-right {
    right: -12%;
  }
}
@media screen and (max-width: 768px) {
  main#front section#people .decoration.cir-right {
    right: -36%;
  }
}
main#front section#people .decoration.cir-right img {
  transform: rotate(90deg);
}
@media screen and (max-width: 1299px) {
  main#front section#people .decoration.cir-right img {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  main#front section#people .decoration.cir-right img {
    width: 50%;
  }
}
main#front section#people .heading {
  display: flex;
  gap: 3rem;
  align-items: center;
}
main#front section#people .heading h1.title {
  margin: 0;
  color: #2ac353;
}
main#front section#people .heading p.subtitle {
  margin: 0;
  color: inherit;
}
@media screen and (max-width: 1024px) {
  main#front section#people .heading {
    display: block;
    text-align: center;
  }
  main#front section#people .heading a {
    margin-top: 30px;
  }
}
main#front section#people .article-people {
  max-width: 1000px;
  margin: 30px auto 0;
}
@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-10px) translateX(5px);
  }
  50% {
    transform: translateY(10px) translateX(-5px);
  }
  75% {
    transform: translateY(-5px) translateX(2px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}
main#front section#top-banners {
  position: relative;
}
main#front section#top-banners .slide-in-image {
  position: absolute;
  top: -163px;
  right: 10%;
  z-index: 1;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
@media screen and (max-width: 430px) {
  main#front section#top-banners .slide-in-image {
    top: -110px;
    width: 35%;
  }
}
main#front section#top-banners .slide-in-image.active {
  opacity: 1;
  transform: translateY(0);
}
main#front section#top-banners .decoration.cir-left {
  bottom: -50%;
  left: -6%;
  z-index: 2;
  width: 500px;
  animation-duration: 9s;
  animation-delay: 1.5s;
}
@media screen and (max-width: 1299px) {
  main#front section#top-banners .decoration.cir-left {
    left: -20%;
  }
}
@media screen and (max-width: 768px) {
  main#front section#top-banners .decoration.cir-left {
    display: none;
  }
}
main#front section#top-banners .decoration.cir-left img {
  width: 100%;
  transform: rotate(20deg);
}
@media screen and (max-width: 1299px) {
  main#front section#top-banners .decoration.cir-left img {
    width: 70%;
  }
}
main#front section#recruit {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  margin: 5% 0 8%;
}
@media screen and (max-width: 768px) {
  main#front section#recruit {
    margin: 70px 0;
  }
}
main#front section#recruit h1.title {
  color: #2ac353;
}
main#front section#recruit p.subtitle {
  color: inherit;
}
main#front section#recruit .content-wrap {
  display: flex;
  gap: 50px 100px;
  justify-content: center;
  margin: 120px 0 0;
}
@media screen and (max-width: 768px) {
  main#front section#recruit .content-wrap {
    gap: 20px;
    margin: 50px 0 0;
  }
}
main#front section#recruit .content-wrap a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 430px;
  aspect-ratio: 1;
  font-size: 2.75rem;
  font-weight: 700;
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  main#front section#recruit .content-wrap a {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  main#front section#recruit .content-wrap a {
    font-size: 1.7rem;
  }
}
main#front section#recruit .content-wrap a.recruit-student {
  background: #1bba3e;
}
main#front section#recruit .content-wrap a.recruit-career {
  background: #e49f4a;
}
main#front section#recruit .decoration.cir-right-top {
  top: 0;
  right: 0;
  z-index: -1;
  width: 350px;
  animation-duration: 11s;
  animation-delay: 0s;
}
@media screen and (max-width: 1299px) {
  main#front section#recruit .decoration.cir-right-top {
    right: -12%;
  }
}
@media screen and (max-width: 768px) {
  main#front section#recruit .decoration.cir-right-top {
    right: -36%;
  }
}
@media screen and (max-width: 430px) {
  main#front section#recruit .decoration.cir-right-top {
    display: none;
  }
}
main#front section#recruit .decoration.cir-right-top img {
  transform: rotate(8deg);
}
@media screen and (max-width: 1299px) {
  main#front section#recruit .decoration.cir-right-top img {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  main#front section#recruit .decoration.cir-right-top img {
    width: 50%;
  }
}
main#front section#recruit .decoration.cir-right-btm {
  right: -4%;
  width: 350px;
  animation-duration: 11s;
  animation-delay: 0s;
}
@media screen and (max-width: 768px) {
  main#front section#recruit .decoration.cir-right-btm {
    right: -40%;
  }
}
@media screen and (max-width: 768px) {
  main#front section#recruit .decoration.cir-right-btm img {
    width: 70%;
  }
}

main#home {
  max-width: 1104px;
  padding: 0 40px;
  margin: 0 auto;
  margin: 80px auto;
}
@media screen and (max-width: 768px) {
  main#home {
    padding: 0 15px;
  }
}
main#home h1 {
  margin: 0;
  text-align: center;
}
main#home h1[class^=border] {
  position: relative;
  margin-bottom: 80px;
}
main#home h1[class^=border]::after {
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 100px;
  content: "";
  border-bottom: solid 5px black;
  transform: translateX(-50%);
}
main#home h1.border-green::after {
  border-color: #16832e;
}
main#home h1.border-orange::after {
  border-color: #ef7c00;
}

.news-categories {
  margin: 40px auto;
  text-align: center;
}
.news-categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media screen and (max-width: 430px) {
  .news-categories ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    justify-items: center;
  }
}
.news-categories ul li {
  display: flex;
  flex: 1 1 130px;
  justify-content: center;
  max-width: 130px;
}
.news-categories ul a {
  display: block;
  width: 100%;
  padding: 5px 0;
  font-size: 0.95rem;
  color: #8c8c8c;
  text-align: center;
  text-decoration: none;
  border: 2px solid #8c8c8c;
  border-radius: 30px;
  transition: all 0.2s ease;
}
.news-categories ul a:hover {
  color: #fff;
  background-color: #8c8c8c;
  border-color: #8c8c8c;
}
.news-categories ul a.current {
  color: #fff;
  background-color: #8c8c8c;
  border-color: #8c8c8c;
}

@media screen and (max-width: 768px) {
  .news-categories ul li {
    flex: 1 1 45%;
    max-width: none;
  }
}
@media screen and (max-width: 430px) {
  .news-categories ul li {
    width: 100%;
    max-width: none;
  }
  .news-categories a {
    padding: 10px 0;
    font-size: 0.9rem;
  }
}
main#page-about section#philosophy {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  padding-top: 60px;
}
@media screen and (max-width: 430px) {
  main#page-about section#philosophy {
    gap: 10px;
    padding-top: 0;
  }
}
main#page-about section#philosophy h1 {
  margin: 0 0 40px;
  font-size: 3.25rem;
  color: #2ac353;
  text-align: center;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
}
main#page-about section#philosophy p {
  z-index: 3;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 3;
  text-align: center;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
main#page-about section#philosophy .town {
  z-index: 1;
  width: 100%;
  margin-top: 70px;
}
main#page-about section#philosophy .cloud {
  position: absolute;
  z-index: 2;
  width: 200px;
}
main#page-about section#philosophy .cloud-left {
  top: clamp(370px, 58%, 530px);
  left: 16%;
}
main#page-about section#philosophy .cloud-left2 {
  top: clamp(150px, 40%, 250px);
  left: 16%;
}
main#page-about section#philosophy .cloud-right {
  top: clamp(130px, 32%, 230px);
  right: 16%;
}
main#page-about section#philosophy .cloud-right2 {
  top: clamp(160px, 45%, 260px);
  right: 16%;
}
@media screen and (max-width: 768px) {
  main#page-about section#philosophy h1 {
    margin-bottom: 30px;
    font-size: 2.2rem;
  }
  main#page-about section#philosophy p {
    font-size: 1.2rem;
    line-height: 2.5;
  }
  main#page-about section#philosophy .town {
    margin-top: 40px;
  }
  main#page-about section#philosophy .cloud {
    width: 80px;
  }
  main#page-about section#philosophy .cloud-left {
    top: clamp(150px, 35%, 250px);
    left: 5%;
  }
  main#page-about section#philosophy .cloud-left2 {
    top: clamp(100px, 25%, 170px);
    left: 10%;
  }
  main#page-about section#philosophy .cloud-right {
    top: clamp(320px, 70%, 520px);
    right: 5%;
  }
  main#page-about section#philosophy .cloud-right2 {
    top: clamp(110px, 28%, 180px);
    right: 10%;
  }
}
main#page-about section#hearts {
  padding: 100px 20px 120px;
  background-color: #bfe2a8;
  background-repeat: no-repeat;
  background-position: top;
  background-size: auto;
}
main#page-about section#hearts #hearts-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
  justify-content: space-around;
  max-width: 1000px;
  padding: 50px 100px;
  margin: 0 auto;
  background: white;
  border-radius: 50px;
}
@media screen and (max-width: 768px) {
  main#page-about section#hearts #hearts-wrap {
    padding: 80px 10px;
    border-radius: 30px;
  }
}
main#page-about section#hearts #hearts-wrap h1 {
  display: flex;
  gap: 30px;
  align-items: center;
  margin: 0 0 30px;
}
main#page-about section#hearts #hearts-wrap h1 ruby {
  position: relative;
  font-size: 3rem;
  color: white;
}
main#page-about section#hearts #hearts-wrap h1 ruby span {
  position: relative;
  z-index: 1;
}
main#page-about section#hearts #hearts-wrap h1 ruby span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 5rem;
  aspect-ratio: 1/1;
  content: "";
  background: linear-gradient(180deg, #1bba3e 0%, #c6e400 100%);
  border-radius: 100%;
  transform: translate(-50%, -50%);
}
main#page-about section#hearts #hearts-wrap h1 ruby rt {
  position: absolute;
  bottom: 105%;
  left: 50%;
  font-size: 1.5rem;
  color: #2ac353;
  letter-spacing: 3px;
  white-space: nowrap;
  transform: translateX(-50%);
}
main#page-about section#hearts .border-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
main#page-about section#actionpolicy {
  position: relative;
  z-index: 1;
  padding: 80px 20px;
}
main#page-about section#actionpolicy ol {
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 70px;
  margin: 100px auto 50px;
  list-style: none;
}
main#page-about section#actionpolicy ol li {
  position: relative;
  font-weight: 700;
  counter-increment: item;
}
main#page-about section#actionpolicy ol li:not(:last-child) {
  margin-bottom: 3rem;
}
main#page-about section#actionpolicy ol li::before {
  position: absolute;
  top: 50%;
  left: -70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 1.25rem;
  vertical-align: middle;
  color: white;
  content: counter(item);
  background: #2ac353;
  border-radius: 100%;
  transform: translateY(-50%);
}
main#page-about section#actionpolicy .decoration {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
  animation: float 10s ease-in-out infinite;
}
main#page-about section#actionpolicy .decoration.cir-left-top {
  top: 10%;
  left: -5%;
  z-index: -1;
  width: 300px;
  animation-duration: 9s;
  animation-delay: 1.5s;
}
@media screen and (max-width: 768px) {
  main#page-about section#actionpolicy .decoration.cir-left-top {
    top: -10%;
    width: 230px;
  }
}
main#page-about section#actionpolicy .decoration.cir-left-top img {
  width: 100%;
  transform: rotate(-90deg);
}
@media screen and (max-width: 1299px) {
  main#page-about section#actionpolicy .decoration.cir-left-top img {
    width: 70%;
  }
}
main#page-about section#actionpolicy .decoration.cir-left-btm {
  bottom: -13%;
  left: 10%;
  z-index: -1;
  width: 230px;
  animation-duration: 9s;
  animation-delay: 1.5s;
}
@media screen and (max-width: 1299px) {
  main#page-about section#actionpolicy .decoration.cir-left-btm {
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  main#page-about section#actionpolicy .decoration.cir-left-btm {
    bottom: -5%;
  }
}
main#page-about section#actionpolicy .decoration.cir-left-btm img {
  width: 100%;
  transform: rotate(-130deg);
}
@media screen and (max-width: 1299px) {
  main#page-about section#actionpolicy .decoration.cir-left-btm img {
    width: 70%;
  }
}
@media screen and (max-width: 430px) {
  main#page-about section#actionpolicy .decoration.cir-left-btm img {
    width: 50%;
  }
}
main#page-about section#actionpolicy .decoration.cir-right {
  top: 20%;
  right: -5%;
  z-index: -1;
  width: 300px;
  animation-duration: 11s;
  animation-delay: 0s;
}
@media screen and (max-width: 1299px) {
  main#page-about section#actionpolicy .decoration.cir-right {
    top: 0%;
    right: -30%;
  }
}
@media screen and (max-width: 768px) {
  main#page-about section#actionpolicy .decoration.cir-right {
    top: 17%;
    right: -42%;
    width: 400px;
  }
}
@media screen and (max-width: 430px) {
  main#page-about section#actionpolicy .decoration.cir-right {
    top: 22%;
    right: -40%;
    width: 250px;
  }
}
main#page-about section#actionpolicy .decoration.cir-right img {
  transform: rotate(90deg);
}
@media screen and (max-width: 1299px) {
  main#page-about section#actionpolicy .decoration.cir-right img {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  main#page-about section#actionpolicy .decoration.cir-right img {
    width: 50%;
  }
}
main#page-about section#company {
  padding: 100px 20px;
  background: #f1f1f1;
}
main#page-about section#company .content {
  padding: clamp(50px, 5vw, 80px);
  background: white;
  border-radius: 50px;
}
@media screen and (max-width: 768px) {
  main#page-about section#company .content {
    padding: clamp(35px, 5vw, 0px);
    border-radius: 30px;
  }
}
main#page-about section#company table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  border: none;
  border-top: 2px solid #f1f1f1;
}
main#page-about section#company table tr {
  border-bottom: 2px solid #f1f1f1;
}
main#page-about section#company table th,
main#page-about section#company table td {
  padding: 30px 40px;
  vertical-align: baseline;
  border: none;
}
main#page-about section#company table th {
  position: static;
  min-width: 250px;
  padding: 30px 40px;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  main#page-about section#company table table,
  main#page-about section#company table thead,
  main#page-about section#company table tbody,
  main#page-about section#company table th,
  main#page-about section#company table td,
  main#page-about section#company table tr {
    display: block;
    width: 100%;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  main#page-about section#company table thead {
    display: none;
  }
  main#page-about section#company table tr {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #f1f1f1;
  }
  main#page-about section#company table th {
    padding: 30px 0 10px;
  }
  main#page-about section#company table td {
    padding: 10px 0 30px;
  }
}
main#page-about section#data_about {
  padding: 80px 20px;
}
main#page-about section#data_about #data_about-time {
  color: #a5a5a5;
  text-align: right;
}
main#page-about section#data_about #data_about-time,
main#page-about section#data_about #data_about-articles {
  max-width: 1104px;
  padding: 0 40px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  main#page-about section#data_about #data_about-time,
  main#page-about section#data_about #data_about-articles {
    padding: 0 15px;
  }
}
main#page-about section#data_about #data_about-articles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 50px) clamp(50px, 10vw, 80px);
}
@media screen and (max-width: 768px) {
  main#page-about section#data_about #data_about-articles {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
main#page-about section#data_about #data_about-articles article {
  padding: 30px;
  background: #f6f6f2;
  border-radius: 50px;
}
main#page-about section#data_about #data_about-articles article img {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  main#page-about section#data_about #data_about-articles article {
    padding: 10px;
    border-radius: 30px;
  }
}

main#page-offices {
  padding: 0 20px;
  margin-top: 0;
}
@media (max-width: 834px) {
  main#page-offices .content {
    padding: 0;
  }
}
main#page-offices section#offices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 50px;
  background-image: url("assets/images/about/img_map.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 55%;
}
@media screen and (max-width: 768px) {
  main#page-offices section#offices {
    grid-template-columns: 1fr;
  }
}
main#page-offices section#offices article {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  padding: 80px 0;
}
@media (max-width: 834px) {
  main#page-offices section#offices article {
    gap: 25px;
  }
}
main#page-offices section#offices article:not(:last-child) {
  border-bottom: solid 2px #b4b4b4;
}
@media screen and (max-width: 430px) {
  main#page-offices section#offices article {
    grid-template-columns: 1fr;
  }
}
main#page-offices section#offices article span.office {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  aspect-ratio: 1/1;
  margin: 0 auto;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  background: #b4b4b4;
  border-radius: 100%;
}
main#page-offices section#offices article span.office.tokyo {
  background: #1bba3e;
}
main#page-offices section#offices article span.office.tono {
  background: #3ab5cb;
}
main#page-offices section#offices article span.office.morioka {
  background: #3a52cb;
}
main#page-offices section#offices article span.office.hachinohe {
  background: #e7ac3d;
}
main#page-offices section#offices article span.office.akita {
  background: #fc5d80;
}
main#page-offices section#offices article address {
  margin: 1rem 0;
}
main#page-offices section#offices article p {
  margin: 0;
}

main#page-business .colored-text {
  gap: 0.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main#page-business .colored-text {
    padding: 0 20px;
  }
}
main#page-business .colored-text .group1 {
  font-size: 2rem;
  color: #3ab5cb;
}
main#page-business .colored-text .group2 {
  font-size: 2rem;
  color: #fc5d80;
}
main#page-business .colored-text .group3 {
  font-size: 2rem;
  color: #f5a237;
}
main#page-business .colored-text .separator {
  margin: 0 0.25rem;
  font-size: 2rem;
  color: #000;
}
main#page-business #business-header {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1240px;
  padding: 0 20px;
  margin: 80px auto;
  list-style: none;
}
main#page-business #business-header li {
  min-width: 310px;
}
main#page-business #business-header a {
  box-sizing: border-box;
  display: flex;
  flex: 1 1 calc(25% - 30px);
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  font-size: 1.1rem;
  font-weight: 700;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: solid 2px lightgray;
  border-radius: 50px;
}
main#page-business #business-header a::after {
  display: block;
  flex-shrink: 0;
  width: 1.8rem;
  height: 1.8rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
main#page-business #business-header a[href="#development"] {
  border-color: #3ab5cb;
}
main#page-business #business-header a[href="#development"]::after {
  background-image: url("assets/images/front/business/arrow-right-dev.svg");
  transform: rotate(90deg);
}
main#page-business #business-header a[href="#design"] {
  border-color: #fc5d80;
}
main#page-business #business-header a[href="#design"]::after {
  background-image: url("assets/images/front/business/arrow-right-des.svg");
  transform: rotate(90deg);
}
main#page-business #business-header a[href="#healthcare"] {
  border-color: #f5a237;
}
main#page-business #business-header a[href="#healthcare"]::after {
  background-image: url("assets/images/front/business/arrow-right-hel.svg");
  transform: rotate(90deg);
}
@media screen and (max-width: 768px) {
  main#page-business #business-header {
    gap: 20px 10px;
    margin: 30px auto;
  }
  main#page-business #business-header li {
    flex: 0 0 calc(50% - 5px);
  }
  main#page-business #business-header a {
    gap: 0.5em;
    min-width: 230px;
    padding: 15px;
    font-size: 0.9rem;
  }
}
main#page-business section {
  margin-bottom: 50px;
  background: lightgray;
}
main#page-business section .content {
  display: flex;
  gap: 50px;
  justify-content: center;
  padding: 80px min(2.9282576867vw, 80px);
}
main#page-business section .content > div, main#page-business section .content > figure {
  flex: 1;
}
main#page-business section .content > figure img {
  display: block;
  margin: 0 auto;
}
main#page-business section h2 {
  padding: 5px 20px;
  font-size: 1.75rem;
  border-left: solid 4px lightgray;
}
main#page-business section .members {
  overflow: hidden;
  background: white;
  border: solid 2px lightgray;
  border-radius: 20px;
}
main#page-business section .members h3 {
  padding: 20px 30px;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  background: lightgray;
}
main#page-business section .members article {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 20px 30px;
}
main#page-business section .members article p {
  margin: 0;
  font-weight: 700;
}
main#page-business section .members article p.office span {
  padding: 5px 10px;
  font-size: 0.9rem;
  color: white;
  background: lightgray;
  border-radius: 1em;
}
main#page-business section .members article p.office span.tokyo {
  background: #1bba3e;
}
main#page-business section .members article p.office span.morioka {
  background: #3a52cb;
}
main#page-business section .members article p.office span.tono {
  background: #3ab5cb;
}
main#page-business section .members article p.office span.akita {
  background: #fc5d80;
}
main#page-business section .members article p.office span.hachinohe {
  background: #e7ac3d;
}
main#page-business section .members article p.name {
  font-size: 1.1rem;
}
main#page-business section .members article p.tags {
  font-size: 0.9rem;
}
main#page-business section#development {
  background: rgba(58, 181, 203, 0.05);
}
@media screen and (max-width: 768px) {
  main#page-business section#development .content {
    flex-direction: column;
    margin: auto 10px;
  }
}
main#page-business section#development h2 {
  color: #000;
  border-color: #3ab5cb;
}
main#page-business section#development .members {
  border-color: #3ab5cb;
}
main#page-business section#development .members h3 {
  background: #3ab5cb;
}
main#page-business section#design {
  background: rgba(252, 93, 128, 0.05);
}
@media screen and (max-width: 768px) {
  main#page-business section#design .content {
    flex-direction: column-reverse;
    margin: auto 10px;
  }
}
main#page-business section#design h2 {
  color: #000;
  border-color: #fc5d80;
}
main#page-business section#design .members {
  border-color: #fc5d80;
}
main#page-business section#design .members h3 {
  background: #fc5d80;
}
main#page-business section#healthcare {
  background: rgba(245, 162, 55, 0.05);
}
@media screen and (max-width: 768px) {
  main#page-business section#healthcare .content {
    flex-direction: column;
    margin: auto 10px;
  }
}
main#page-business section#healthcare h2 {
  color: #000;
  border-color: #f5a237;
}
main#page-business section#healthcare .members {
  border-color: #f5a237;
}
main#page-business section#healthcare .members h3 {
  background: #f5a237;
}

main#page-senior article {
  /* カード行 */
}
main#page-senior article section {
  max-width: 1104px;
  padding: 0 40px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  main#page-senior article section {
    padding: 0 15px;
  }
}
@media screen and (max-width: 768px) {
  main#page-senior article section {
    padding: 0;
  }
}
main#page-senior article .card-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  max-width: 1080px;
  padding: 20px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  main#page-senior article .card-row {
    gap: 0;
    padding: 0;
  }
}
@media screen and (max-width: 430px) {
  main#page-senior article .card-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
main#page-senior article .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto;
  padding: 15px;
  text-align: center;
}
main#page-senior article .card img {
  display: block;
  width: 180px;
  height: auto;
  margin-bottom: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
main#page-senior article .card .office {
  margin: 0;
  font-weight: bold;
  line-height: normal;
}
main#page-senior article .card .name {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  line-height: normal;
}
main#page-senior article .card .text {
  font-size: 0.9rem;
  color: #555;
}
@media screen and (max-width: 768px) {
  main#page-senior article {
    padding: 0 20px;
  }
  main#page-senior article .card {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  main#page-senior article .card {
    flex-direction: column;
    gap: 5px;
    width: 100%;
    text-align: left;
  }
  main#page-senior article .card img {
    flex-shrink: 0;
    width: 100px;
    height: auto;
    margin-bottom: 0;
  }
  main#page-senior article .card p {
    margin: 0 0 5px;
  }
}
main#page-senior article .s-answer-wrapper {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
  padding: 0 20px;
  margin: 0 auto 20px;
  max-width: 1104px;
  padding: 0 40px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  main#page-senior article .s-answer-wrapper {
    padding: 0 15px;
  }
}
main#page-senior article .s-answer-wrapper:last-of-type {
  margin-bottom: 0;
}
main#page-senior article .s-answer-wrapper .person-card {
  z-index: 1;
  flex: 0 0 auto;
  width: 150px;
  margin-left: -50px;
}
main#page-senior article .s-answer-wrapper .person-card .card {
  width: 100%;
}
main#page-senior article .s-answer-wrapper .person-card .card img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
main#page-senior article .s-answer-wrapper .s-answer {
  flex: 1;
  padding: 40px;
  overflow: visible;
  background: #f1f1f1;
  border-radius: 10px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}
main#page-senior article .s-answer-wrapper .s-answer .answer-content h2 {
  margin: 0 0 1rem;
}
main#page-senior article .s-answer-wrapper .s-answer .answer-content .dotted-line {
  max-width: 600px;
  margin-bottom: 1rem;
  border: none;
  border-bottom: 6px dotted #166338;
}
main#page-senior article .s-answer-wrapper .s-answer .answer-content p {
  margin: 0;
}
@media screen and (max-width: 430px) {
  main#page-senior article .s-answer-wrapper .s-answer {
    padding: 25px;
  }
}
@media screen and (max-width: 768px) {
  main#page-senior article .s-answer-wrapper {
    gap: 0;
    padding: 20px;
    padding-right: 0;
  }
  main#page-senior article .person-card {
    width: 110px;
    margin-right: auto;
    margin-left: 0;
  }
  main#page-senior article .s-answer {
    padding-right: 20px;
    padding-left: 20px;
  }
  main#page-senior article .s-answer .answer-content h2,
  main#page-senior article .s-answer .answer-content p {
    text-align: center;
  }
}

main#page-recruit article p.has-text-align-center {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  main#page-recruit article {
    padding: 0 20px;
  }
}
main#page-recruit article h2 {
  margin: 0 0.25rem;
  font-size: 2rem;
  color: #000;
  text-align: center;
}
@media screen and (max-width: 430px) {
  main#page-recruit article h2 {
    font-size: 1.5rem;
  }
}
main#page-recruit article .recruit_messege {
  display: flex;
  flex-direction: column;
  align-items: center;
}
main#page-recruit article .recruit_messege img.messege {
  display: block;
  width: 60%;
  height: auto;
  margin-top: 4%;
}
@media screen and (max-width: 768px) {
  main#page-recruit article .recruit_messege img.messege {
    width: 80%;
  }
}
@media screen and (max-width: 430px) {
  main#page-recruit article .recruit_messege img.messege {
    width: 90%;
  }
}
main#page-recruit article section {
  max-width: 1104px;
  padding: 0 40px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  main#page-recruit article section {
    padding: 0 15px;
  }
}
main#page-recruit article .lead {
  margin-top: 80px;
  font-weight: 700;
  line-height: 4;
  text-align: center;
  letter-spacing: -0.04em;
}
main#page-recruit article section#ideal ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  padding: 0;
  margin: 50px auto;
  list-style: none;
}
main#page-recruit article section#ideal ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  padding: 20px;
  font-size: 1.5rem;
  text-align: center;
  word-break: keep-all;
  white-space: pre-wrap;
  background-color: #c7f2c2;
  border-radius: 50%;
}
main#page-recruit article section#ideal ul li em {
  font-size: 2rem;
  font-style: normal;
}
@media screen and (max-width: 430px) {
  main#page-recruit article section#ideal ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  main#page-recruit article section#ideal ul li {
    padding: 10px;
  }
}
main#page-recruit article section#recruit-guidline div {
  display: flex;
  gap: 50px;
  justify-content: center;
  margin: 120px 0 0;
}
@media screen and (max-width: 768px) {
  main#page-recruit article section#recruit-guidline div {
    gap: 20px;
    margin: 50px 0 0;
  }
}
main#page-recruit article section#recruit-guidline div a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 430px;
  aspect-ratio: 1;
  font-size: 2.75rem;
  font-weight: 700;
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  main#page-recruit article section#recruit-guidline div a {
    font-size: 1.7rem;
  }
}
main#page-recruit article section#recruit-guidline div a.recruit-green {
  background: #1bba3e;
}
main#page-recruit article section#recruit-guidline div a.recruit-orange {
  background: #e49f4a;
}

main#page-privacy h2 {
  margin: 50px 0 20px;
  padding: 20px 30px;
  color: inherit;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: left;
  background: #dff2dd;
}

.error-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 20px;
  text-align: center;
}
.error-404 .error-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-weight: 700;
  color: #2ac353;
  padding-right: 15px;
}
.error-404 .error-title .num {
  margin: 0;
  font-size: 10rem;
  line-height: 1;
}
.error-404 .error-title .text {
  margin: 0;
  font-size: 3rem;
}
.error-404 .error-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding-left: 30px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.error-404 .error-detail .error-message {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  text-align: left;
}
.error-404 .error-detail .error-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.error-404 .error-detail .error-image img {
  display: block;
  width: 120px;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .error-404 .error-404 {
    padding-top: 50px;
  }
  .error-404 .error-404 .error-title {
    margin-bottom: 0;
    padding-right: 0;
  }
  .error-404 .error-404 .error-title .num {
    font-size: 7rem;
  }
  .error-404 .error-404 .error-title .text {
    font-size: 2rem;
  }
  .error-404 .error-404 .error-detail {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 0;
  }
  .error-404 .error-404 .error-detail .error-message {
    text-align: center;
  }
  .error-404 .error-404 .error-detail .error-image img {
    width: 150px;
  }
}

h1#recruit-title {
  max-width: 1104px;
  padding: 0 40px;
  margin: 0 auto;
  margin: 80px auto 20px;
}
@media screen and (max-width: 768px) {
  h1#recruit-title {
    padding: 0 15px;
  }
}
h1#recruit-title.green {
  color: #16832e;
}
h1#recruit-title.orange {
  color: #ef7c00;
}
@media screen and (max-width: 768px) {
  h1#recruit-title {
    margin: 40px auto 20px;
  }
}

header#recruit-header {
  max-width: 1104px;
  padding: 0 40px;
  margin: 0 auto;
  margin: 80px auto;
}
@media screen and (max-width: 768px) {
  header#recruit-header {
    padding: 0 15px;
  }
}
@media screen and (max-width: 768px) {
  header#recruit-header {
    margin: 40px auto;
  }
}
header#recruit-header .recruit-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 0;
  margin-top: 50px;
  list-style: none;
}
header#recruit-header .recruit-menu a {
  box-sizing: border-box;
  display: flex;
  flex: 1 1 calc(25% - 30px);
  align-items: center;
  justify-content: space-between;
  min-width: 230px;
  padding: 20px 30px;
  font-size: 1.1rem;
  font-weight: 700;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: solid 2px lightgray;
  border-radius: 50px;
}
header#recruit-header .recruit-menu a::after {
  display: block;
  flex-shrink: 0;
  width: 1.8rem;
  height: 1.8rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
header#recruit-header .recruit-menu.green a::after {
  background-image: url("assets/images/common/arrow-right.svg");
  transform: rotate(90deg);
}
header#recruit-header .recruit-menu.orange a::after {
  background-image: url("assets/images/common/arrow-right-or.svg");
  transform: rotate(90deg);
}
@media screen and (max-width: 768px) {
  header#recruit-header .recruit-menu {
    gap: 20px 10px;
  }
  header#recruit-header .recruit-menu li {
    flex: 0 0 calc(50% - 5px);
  }
  header#recruit-header .recruit-menu a {
    gap: 0.5em;
    min-width: auto;
    padding: 15px;
    font-size: 0.9rem;
  }
  header#recruit-header .recruit-menu .recruit-menu {
    justify-content: flex-start;
  }
}

main.page.template-recruit section {
  padding: 100px 20px;
}
main.page.template-recruit section#recruitment {
  background: #f1f1f1;
}
main.page.template-recruit section#recruitment #recruitment-table-switcher {
  display: flex;
  justify-content: center;
  max-width: 1000px;
  margin: 30px auto;
  background: white;
  border-radius: 50px;
}
main.page.template-recruit section#recruitment #recruitment-table-switcher label {
  display: block;
  flex: 1;
  padding: 20px 30px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border-radius: 50px;
}
main.page.template-recruit section#recruitment #recruitment-table-switcher label:has(input[type=radio]:checked) {
  color: white;
  background: #e7ac3d;
}
main.page.template-recruit section#recruitment #recruitment-table-switcher input[type=radio] {
  display: none;
}
main.page.template-recruit section#recruitment .recruitment-table-wrap {
  max-width: 1104px;
  padding: 0 40px;
  margin: 0 auto;
  padding: clamp(50px, 5vw, 80px);
  background: white;
  border-radius: 40px;
}
@media screen and (max-width: 768px) {
  main.page.template-recruit section#recruitment .recruitment-table-wrap {
    padding: 0 15px;
  }
}
@media screen and (max-width: 430px) {
  main.page.template-recruit section#recruitment .recruitment-table-wrap {
    padding: clamp(35px, 5vw, 0px);
    border-radius: 30px;
  }
}
main.page.template-recruit section#recruitment table.recruitment {
  width: 100%;
  border: none;
  border-top: solid 1px #b4b4b4;
}
main.page.template-recruit section#recruitment table.recruitment tr {
  border-bottom: solid 1px #b4b4b4;
}
@media screen and (max-width: 768px) {
  main.page.template-recruit section#recruitment table.recruitment tr {
    display: flex;
    flex-direction: column;
  }
}
main.page.template-recruit section#recruitment table.recruitment th,
main.page.template-recruit section#recruitment table.recruitment td {
  padding: 50px 40px;
  vertical-align: baseline;
  text-align: justify;
  border: none;
}
@media screen and (max-width: 430px) {
  main.page.template-recruit section#recruitment table.recruitment th,
  main.page.template-recruit section#recruitment table.recruitment td {
    padding: 30px 0;
  }
}
main.page.template-recruit section#recruitment table.recruitment th p,
main.page.template-recruit section#recruitment table.recruitment td p {
  margin: 1rem 0;
}
main.page.template-recruit section#recruitment table.recruitment th p:first-child,
main.page.template-recruit section#recruitment table.recruitment td p:first-child {
  margin-top: 0;
}
main.page.template-recruit section#recruitment table.recruitment th p:last-child,
main.page.template-recruit section#recruitment table.recruitment td p:last-child {
  margin-bottom: 0;
}
main.page.template-recruit section#recruitment table.recruitment th {
  min-width: 250px;
}
@media screen and (max-width: 768px) {
  main.page.template-recruit section#recruitment table.recruitment th {
    padding: 30px 0 10px;
  }
}
@media screen and (max-width: 768px) {
  main.page.template-recruit section#recruitment table.recruitment td {
    padding: 10px 0 30px;
  }
}
main.page.template-recruit section#flow {
  max-width: 1104px;
  padding: 0 40px;
  margin: 0 auto;
  padding: 100px 40px 0;
}
@media screen and (max-width: 768px) {
  main.page.template-recruit section#flow {
    padding: 0 15px;
  }
}
main.page.template-recruit section#flow ol {
  display: flex;
  gap: 100px;
  justify-content: center;
  padding: 0 80px 0 0;
  margin: 0;
  list-style: none;
}
main.page.template-recruit section#flow ol li {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 100px 0 100px 50px;
  font-weight: 700;
  color: white;
  text-align: center;
  word-break: keep-all;
  white-space: pre-wrap;
  background: #a5a5a5;
  border-radius: 20px 0 0 20px;
}
main.page.template-recruit section#flow ol li::after {
  position: absolute;
  top: 0;
  left: 100%;
  width: 80px;
  height: 100%;
  content: "";
  background: red;
}
main.page.template-recruit section#session {
  max-width: 1104px;
  padding: 0 40px;
  margin: 0 auto;
  padding: 100px 40px 0;
}
@media screen and (max-width: 768px) {
  main.page.template-recruit section#session {
    padding: 0 15px;
  }
}
main.page.template-recruit section#session p {
  max-width: 1000px;
  margin: 2rem auto;
}
main.page.template-recruit section#session table {
  width: 100%;
  max-width: 1000px;
  margin: 50px auto;
  table-layout: fixed;
}
main.page.template-recruit section#session table th,
main.page.template-recruit section#session table td {
  padding: 20px;
  vertical-align: baseline;
  text-align: center;
  border-color: #a5a5a5;
}
main.page.template-recruit section#session table thead th {
  background: #e5ffe2;
}
main.page.template-recruit section#session table tbody th {
  background: #f1f1f1;
}
main.page.template-recruit section#faq {
  max-width: 1104px;
  padding: 0 40px;
  margin: 0 auto;
  padding: 100px 40px 20px;
}
@media screen and (max-width: 768px) {
  main.page.template-recruit section#faq {
    padding: 0 15px;
  }
}
@media screen and (max-width: 430px) {
  main.page.template-recruit section#faq .mb-80px {
    margin-bottom: 0;
  }
}
main.page.template-recruit section#faq dl.faq {
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.2509803922);
}
@media screen and (max-width: 430px) {
  main.page.template-recruit section#faq dl.faq {
    padding: 15px;
  }
}
main.page.template-recruit section#faq dl.faq dt {
  position: relative;
  padding: 0 70px 0 50px;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
}
main.page.template-recruit section#faq dl.faq dt::before, main.page.template-recruit section#faq dl.faq dt::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
main.page.template-recruit section#faq dl.faq dt::before {
  left: 10px;
  font-size: 1.5rem;
  color: #16832e;
  content: "Q";
}
main.page.template-recruit section#faq dl.faq dt::after {
  right: 10px;
  width: 35px;
  height: 35px;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.3s ease, background-image 0.3s ease;
}
main.page.template-recruit section#faq dl.faq dt.open::after {
  transform: translateY(-50%) rotate(180deg);
}
main.page.template-recruit section#faq dl.faq dd {
  display: none;
  padding: 30px 30px 0;
  margin: 30px 0 0;
  border-top: solid 1px #b4b4b4;
}
main.page.template-recruit section#faq.student dl.faq dt::before {
  color: #16832e;
}
main.page.template-recruit section#faq.student dl.faq dt::after {
  background-image: url("assets/images/common/accordion-plus.png");
}
main.page.template-recruit section#faq.student dl.faq dt.open::after {
  background-image: url("assets/images/common/accordion-minus.png");
}
main.page.template-recruit section#faq.career dl.faq dt::before {
  color: #ef7c00;
}
main.page.template-recruit section#faq.career dl.faq dt::after {
  background-image: url("assets/images/common/accordion-plus-or.png");
}
main.page.template-recruit section#faq.career dl.faq dt.open::after {
  background-image: url("assets/images/common/accordion-minus-or.png");
}

.btn-closed {
  color: #666;
  pointer-events: none;
  cursor: not-allowed;
  background-color: #ccc;
}

header#simple-header {
  max-width: 1104px;
  padding: 0 40px;
  margin: 0 auto;
  margin: 100px auto 30px;
}
@media screen and (max-width: 768px) {
  header#simple-header {
    padding: 0 15px;
  }
}
@media screen and (max-width: 430px) {
  header#simple-header {
    margin-top: 15%;
    margin-bottom: 0;
  }
}
header#simple-header h1 {
  margin: 0;
  color: #16832e;
}

.taxonomy.news {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 8px;
}
.taxonomy.news a.category {
  display: inline-block;
  min-width: 100px;
  padding: 4px 10px;
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 0.8rem;
  border-radius: 15px;
  background: #b4b4b4;
}
@media screen and (max-width: 430px) {
  .taxonomy.news a.category {
    min-width: 74px;
    padding: 2px 10px;
  }
}
.taxonomy.news a.category-tokyo {
  background: #1bba3e;
}
.taxonomy.news a.category-tono {
  background: #3ab5cb;
}
.taxonomy.news a.category-morioka {
  background: #3a52cb;
}
.taxonomy.news a.category-akita {
  background: #fc5d80;
}
.taxonomy.news a.category-hachinohe {
  background: #e7ac3d;
}

header.single {
  max-width: 1104px;
  padding: 0 40px;
  margin: 0 auto;
  margin: 150px auto 30px;
}
@media screen and (max-width: 768px) {
  header.single {
    padding: 0 15px;
  }
}
@media screen and (max-width: 768px) {
  header.single {
    margin-top: 30px;
  }
}
header.single .single-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
header.single h1 {
  margin: 20px 0 0;
  font-size: 2.5rem;
}
@media screen and (max-width: 768px) {
  header.single h1 {
    font-size: 1.5rem;
  }
}
header.single.single-news {
  max-width: 1024px;
  padding-right: 0;
  padding-bottom: 30px;
  padding-left: 0;
  margin-bottom: 15px;
  border-bottom: 2px solid #a5a5a5;
}
@media screen and (max-width: 768px) {
  header.single.single-news {
    margin: auto 25px;
  }
}
@media screen and (max-width: 430px) {
  header.single.single-news {
    padding-bottom: 8px;
    margin-top: 50px;
    margin-bottom: 20px;
  }
}

main.single article {
  max-width: 1104px;
  padding: 0 40px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  main.single article {
    padding: 0 15px;
  }
}
main.single.single-news {
  max-width: 1024px;
}

footer.single {
  max-width: 1104px;
  padding: 0 40px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  margin: 80px auto 100px;
}
@media screen and (max-width: 768px) {
  footer.single {
    padding: 0 15px;
  }
}

main.archive {
  max-width: 1104px;
  padding: 0 40px;
  margin: 0 auto;
  margin: 80px auto;
}
@media screen and (max-width: 768px) {
  main.archive {
    padding: 0 15px;
  }
}
main.archive #articles {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 80px 0;
}

main.archive#comics section#comics-intro {
  max-width: 1104px;
  padding: 0 40px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  main.archive#comics section#comics-intro {
    padding: 0 15px;
  }
}
main.archive#comics section#comics-intro p {
  line-height: 2;
  text-align: center;
}
main.archive#comics #articles {
  max-width: 1104px;
  padding: 0 40px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 80px;
  max-width: 800px;
  margin: 100px auto 0;
}
@media screen and (max-width: 768px) {
  main.archive#comics #articles {
    padding: 0 15px;
  }
}
@media screen and (max-width: 768px) {
  main.archive#comics #articles {
    grid-template-columns: 1fr;
  }
}
main.archive#comics #articles article {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
}
@media screen and (max-width: 768px) {
  main.archive#comics #articles article {
    grid-column: auto;
  }
}
main.archive#comics #articles article .thumbnail img {
  display: block;
  width: 480px;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 100%;
}
@media screen and (max-width: 768px) {
  main.archive#comics #articles article .thumbnail img {
    width: 360px;
  }
}
main.archive#comics #articles article .content {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  main.archive#comics #articles article .content {
    margin-top: 20px;
  }
}
main.archive#comics #articles article .content h2 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
}
main.archive#comics #articles article .content .btn-wrap {
  margin: 1.5rem 0 0;
  text-align: right;
}
@media screen and (max-width: 768px) {
  main.archive#comics #articles article .content .btn-wrap {
    text-align: center;
  }
}
main.archive#comics #articles article .content .btn-wrap .btn-border {
  width: 260px;
}

#people {
  max-width: 1000px;
  margin: 30px auto 0;
}
#people #articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
@media screen and (max-width: 768px) {
  #people #articles {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
#people #articles article {
  width: 100%;
}
#people #articles article:nth-child(3n-1) {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  #people #articles article:nth-child(3n-1) {
    margin-top: 0;
  }
}
#people #articles article figure.thumbnail {
  position: relative;
}
#people #articles article figure.thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  #people #articles article figure.thumbnail img {
    width: 90%;
  }
}
#people #articles article figure.thumbnail a {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
  background: #16832e;
  border-radius: 100%;
}
@media screen and (max-width: 768px) {
  #people #articles article figure.thumbnail a {
    right: 5px;
    bottom: 3px;
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 430px) {
  #people #articles article figure.thumbnail a {
    width: 50px;
    height: 50px;
  }
}
#people #articles article .content {
  margin: 20px 30px 0;
}
@media screen and (max-width: 768px) {
  #people #articles article .content {
    margin: 20px 10px 0;
  }
}
#people #articles article .content span.office {
  display: inline-block;
  padding: 5px 15px;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  white-space: nowrap;
  background: lightgray;
  border-radius: 1em;
}
#people #articles article .content span.office.tokyo {
  background: #1bba3e;
}
#people #articles article .content span.office.tono {
  background: #3ab5cb;
}
#people #articles article .content span.office.morioka {
  background: #3a52cb;
}
#people #articles article .content span.office.akita {
  background: #fc5d80;
}
#people #articles article .content span.office.hachinohe {
  background: #e7ac3d;
}
#people #articles article .content h2 {
  position: relative;
  z-index: 1;
  display: block;
  padding: 0.2em 0 0.5em;
  margin: 10px 0 5px;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}
@media screen and (max-width: 768px) {
  #people #articles article .content h2 {
    font-size: 1rem;
  }
}
#people #articles article .content p.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1rem;
  margin: 5px 0;
  font-weight: 600;
}
#people:not(.other-interviews) #people #articles article:nth-child(3n-1) {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  #people:not(.other-interviews) #people #articles article:nth-child(3n-1) {
    margin-top: 0;
  }
}
#people footer#people-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
  margin: 150px auto;
}
#people footer#people-footer a {
  display: block;
}

/* -----------------------------
   その他インタビュー専用（最大2件中央寄せ）
   ----------------------------- */
#people.other-interviews #articles {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
  gap: 50px;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #people.other-interviews #articles {
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 10px;
  }
}
#people.other-interviews #articles article {
  max-width: 275px;
  margin: 0 auto;
}
#people.other-interviews #articles article:nth-child(3n-1) {
  margin-top: 0 !important;
}

#top-banners {
  margin-bottom: 50px;
}

article.post-news {
  position: relative;
  padding: 20px 50px 25px;
  background: #f1f1f1;
  border-radius: 20px;
  transition: background 0.3s;
}
@media screen and (max-width: 430px) {
  article.post-news {
    padding: 20px 25px 25px;
  }
}
article.post-news header {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
article.post-news header time {
  flex-shrink: 0;
  word-break: keep-all;
}
article.post-news header .taxonomy.news {
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
}
article.post-news header .taxonomy.news a {
  display: inline-block;
}
article.post-news h4 {
  margin: 0.6rem 0 0;
  padding-right: 60px;
}
@media screen and (max-width: 430px) {
  article.post-news h4 {
    padding-right: 30px;
  }
}
article.post-news img {
  position: absolute;
  top: 50%;
  right: 40px;
  z-index: 2;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
@media screen and (max-width: 430px) {
  article.post-news img {
    right: 20px;
    width: 25px;
  }
}
article.post-news .post-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
article.post-news:hover {
  background: rgb(228.25, 228.25, 228.25);
}
article.post-news:hover img {
  transform: translate(10px, -50%);
}

#interview-header {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 20px;
  max-width: 1104px;
  padding: 0 40px;
  margin: 0 auto;
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  #interview-header {
    padding: 0 15px;
  }
}
@media screen and (max-width: 768px) {
  #interview-header {
    grid-template-columns: 1fr 300px;
    padding: 5% 20px;
  }
}
#interview-header #interview-title #interview__category {
  font-size: 1.75rem;
  font-weight: 700;
  color: #16832e;
}
#interview-header #interview-title h1 {
  margin: 30px 0;
  font-size: 3.5rem;
  line-height: 1.3;
  color: #fff;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2509803922);
}
@media screen and (max-width: 768px) {
  #interview-header #interview-title h1 {
    font-size: 2rem;
  }
}
#interview-header #interview-title #interview__tag {
  display: flex;
  flex-wrap: wrap;
  gap: 0 30px;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.2509803922);
}
#interview-header #interview-profile {
  position: relative;
}
#interview-header #interview-profile-img {
  position: relative;
  z-index: 1;
}
#interview-header #interview-profile-img::before {
  position: absolute;
  bottom: 0;
  left: -20px;
  z-index: -1;
  width: 800px;
  height: 500px;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
}
#interview-header #interview-profile-img img {
  display: block;
  width: 500px;
  height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
}
#interview-header #interview-profile-circle {
  position: absolute;
  right: -20px;
  bottom: -20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 180px;
  height: 180px;
  font-size: 1.25rem;
  color: white;
  text-align: center;
  background: lightgray;
  border-radius: 50%;
}
#interview-header #interview-profile-circle.tokyo {
  background: #1bba3e;
}
#interview-header #interview-profile-circle.tono {
  background: #3ab5cb;
}
#interview-header #interview-profile-circle.morioka {
  background: #3a52cb;
}
#interview-header #interview-profile-circle.hachinohe {
  background: #e7ac3d;
}
#interview-header #interview-profile-circle.akita {
  background: #fc5d80;
}
#interview-header #interview-profile-circle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 90%;
  content: "";
  border: solid 3px white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
#interview-header #interview-profile-circle span:nth-child(2) {
  font-size: 2.5rem;
}
@media screen and (max-width: 768px) {
  #interview-header {
    grid-template-columns: 1fr;
    padding: 50px 0 0;
  }
  #interview-header #interview-title #interview__category {
    font-size: 1.3rem;
  }
  #interview-header #interview-title h1 {
    margin: 15px 0;
    font-size: 1.5rem;
  }
  #interview-header #interview-title #interview__tag {
    font-size: 1rem;
  }
  #interview-header #interview-profile {
    position: relative;
  }
  #interview-header #interview-profile-img {
    position: relative;
    z-index: 1;
  }
  #interview-header #interview-profile-img img {
    width: 300px;
    height: auto;
  }
  #interview-header #interview-profile-circle {
    right: -15px;
    bottom: -5px;
    width: 150px;
    height: 150px;
  }
  #interview-header #interview-profile-circle::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 90%;
    content: "";
    border: solid 3px white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }
  #interview-header #interview-profile-circle span:nth-child(2) {
    font-size: 2rem;
  }
}

main.single.people {
  padding-top: 50px;
  margin-top: 60px;
}
main.single.people article.people .content {
  padding: 0;
}
@media screen and (max-width: 768px) {
  main.single.people article.people .content {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  main.single.people article.people .content .wp-block-columns {
    gap: 60px;
    margin-bottom: 60px !important;
  }
}
main.single.people article.people .content .wp-block-image.bubble,
main.single.people article.people .content figure.bubble {
  position: relative;
  z-index: 1;
  width: 100%;
}
main.single.people article.people .content .wp-block-image.bubble--left,
main.single.people article.people .content figure.bubble--left {
  margin-left: 60px;
}
@media screen and (max-width: 768px) {
  main.single.people article.people .content .wp-block-image.bubble--left,
  main.single.people article.people .content figure.bubble--left {
    margin-left: 0;
  }
}
main.single.people article.people .content .wp-block-image.bubble--right,
main.single.people article.people .content figure.bubble--right {
  margin-left: -60px;
}
@media screen and (max-width: 768px) {
  main.single.people article.people .content .wp-block-image.bubble--right,
  main.single.people article.people .content figure.bubble--right {
    margin-left: 0;
  }
}
main.single.people article.people .content .wp-block-image.bubble::before, main.single.people article.people .content .wp-block-image.bubble::after,
main.single.people article.people .content figure.bubble::before,
main.single.people article.people .content figure.bubble::after {
  position: absolute;
  pointer-events: none;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
}
main.single.people article.people .content .wp-block-image.bubble::before,
main.single.people article.people .content figure.bubble::before {
  z-index: 1;
  height: calc(100% + 40px);
  aspect-ratio: 1;
}
） main.single.people article.people .content .wp-block-image.bubble::after,
） main.single.people article.people .content figure.bubble::after {
  z-index: -1;
  height: 350px;
  aspect-ratio: 1;
}
main.single.people article.people .content .wp-block-image.bubble.bubble_type1::before,
main.single.people article.people .content figure.bubble.bubble_type1::before {
  top: -50px;
  left: -40px;
  width: 135px;
  height: auto;
  height: 135px;
  background-image: url("assets/images/people/circle_01.svg");
}
main.single.people article.people .content .wp-block-image.bubble.bubble_type1::after,
main.single.people article.people .content figure.bubble.bubble_type1::after {
  right: -100px;
  bottom: -100px;
  width: 400px;
  height: 400px;
}
@media screen and (max-width: 768px) {
  main.single.people article.people .content .wp-block-image.bubble.bubble_type1::after,
  main.single.people article.people .content figure.bubble.bubble_type1::after {
    right: -60px;
    bottom: -45px;
    width: 150px;
    height: 150px;
  }
}
main.single.people article.people .content .wp-block-image.bubble.bubble_type2::before,
main.single.people article.people .content figure.bubble.bubble_type2::before {
  top: -75px;
  right: -30px;
  width: 230px;
  background-image: url("assets/images/people/circle_02.svg");
}
@media screen and (max-width: 768px) {
  main.single.people article.people .content .wp-block-image.bubble.bubble_type2::before,
  main.single.people article.people .content figure.bubble.bubble_type2::before {
    top: -50px;
    right: -35px;
    width: 150px;
  }
}
main.single.people article.people .content .wp-block-image.bubble.bubble_type2::after,
main.single.people article.people .content figure.bubble.bubble_type2::after {
  bottom: -90px;
  left: -100px;
}
@media screen and (max-width: 768px) {
  main.single.people article.people .content .wp-block-image.bubble.bubble_type2::after,
  main.single.people article.people .content figure.bubble.bubble_type2::after {
    bottom: -45px;
    left: -60px;
    width: 150px;
    height: 150px;
  }
}
main.single.people article.people .content .wp-block-image.bubble img,
main.single.people article.people .content figure.bubble img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 25px;
}
main.single.people article.people .content .wp-block-image.bubble .deco-front,
main.single.people article.people .content figure.bubble .deco-front {
  position: absolute;
  right: -20px;
  bottom: -20px;
  z-index: 2;
  width: 100px;
  height: auto;
  pointer-events: none;
}
main.single.people article.people .content p {
  max-width: 920px;
  margin: 1rem auto 0;
}
main.single.people article.people .content .myprofile-bg {
  position: relative;
  left: 50%;
  width: 100vw;
  padding: 60px 0 50px;
  margin-left: -50vw;
  overflow: visible;
  background-color: #e5ffe2;
  background-image: url("assets/images/common/back_strype.png");
  background-repeat: repeat;
  background-size: 13px 13px;
}
@media screen and (max-width: 768px) {
  main.single.people article.people .content .myprofile-bg {
    padding-top: 5px;
  }
}
main.single.people article.people .content .myprofile-title {
  position: absolute;
  top: -65px;
  left: 50%;
  width: 90%;
  font-size: 5rem;
  font-weight: 700;
  color: #16832e;
  text-align: center;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  main.single.people article.people .content .myprofile-title {
    top: -25px;
    font-size: 2.5rem;
  }
}
main.single.people article.people .content #myprofile {
  display: flex;
  gap: 50px;
  justify-content: center;
  max-width: 1104px;
  padding: 0 40px;
  margin: 0 auto;
  margin: 50px auto 0;
}
@media screen and (max-width: 768px) {
  main.single.people article.people .content #myprofile {
    padding: 0 15px;
  }
}
main.single.people article.people .content #myprofile > * {
  flex: 1;
}
@media screen and (max-width: 1024px) {
  main.single.people article.people .content #myprofile {
    flex-direction: column;
    align-items: center;
  }
}
main.single.people article.people .content #myprofile .schedule {
  max-width: 540px;
  overflow: hidden;
  background-color: #fff;
  background-image: repeating-linear-gradient(to right, #f1f1f1 0, #f1f1f1 1px, transparent 2px, transparent 25px), repeating-linear-gradient(to bottom, #f1f1f1 0, #f1f1f1 1px, transparent 2px, transparent 25px);
  border: solid 2px #16832e;
  border-radius: 25px;
}
main.single.people article.people .content #myprofile .schedule h3 {
  padding: 30px;
  margin: 0;
  font-weight: normal;
  color: white;
  text-align: center;
  background: #16832e;
}
main.single.people article.people .content #myprofile .schedule table {
  position: relative;
  width: calc(100% - 60px);
  margin: 30px;
  border: none;
}
main.single.people article.people .content #myprofile .schedule table::before {
  position: absolute;
  top: 30px;
  left: 60px;
  width: 2px;
  height: calc(100% - 60px);
  content: "";
  background: #16832e;
  transform: translateX(-50%);
}
main.single.people article.people .content #myprofile .schedule table th,
main.single.people article.people .content #myprofile .schedule table td {
  padding: 10px 20px;
  vertical-align: baseline;
  border: none;
}
main.single.people article.people .content #myprofile .schedule table tr:has(th:not(:empty)) th,
main.single.people article.people .content #myprofile .schedule table tr:has(th:not(:empty)) td {
  padding: 30px 20px;
}
main.single.people article.people .content #myprofile .schedule table tr:has(th:not(:empty)) td {
  font-weight: 700;
  color: #16832e;
}
main.single.people article.people .content #myprofile .schedule table th {
  position: relative;
  z-index: 1;
  width: 120px;
}
main.single.people article.people .content #myprofile .schedule table th::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 15px;
  height: 15px;
  content: "";
  background: #16832e;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
main.single.people article.people .content #myprofile .schedule table th:not(:empty) {
  color: white;
}
main.single.people article.people .content #myprofile .schedule table th:not(:empty)::before {
  width: 65px;
  height: 65px;
}
main.single.people article.people .content #myprofile .favorite {
  position: relative;
  width: 100%;
  max-width: 530px;
  height: 100%;
  min-height: 700px;
}
main.single.people article.people .content #myprofile .favorite > * {
  position: absolute;
  aspect-ratio: 1/1;
  margin: 0;
  text-align: center;
  border-radius: 100%;
}
main.single.people article.people .content #myprofile .favorite h3 {
  top: 0;
  right: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  padding: 30px 30px 50px;
  font-size: 1.5rem;
  color: white;
  background: #16832e;
}
@media screen and (max-width: 768px) {
  main.single.people article.people .content #myprofile .favorite h3 {
    top: -15px;
    right: 0;
  }
}
main.single.people article.people .content #myprofile .favorite p {
  top: 140px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 370px;
  padding: 50px;
  background: white;
  border: solid 2px #2ac353;
}
@media screen and (max-width: 768px) {
  main.single.people article.people .content #myprofile .favorite p {
    left: -30px;
  }
}
main.single.people article.people .content #myprofile .favorite img {
  right: 0;
  bottom: 0;
  width: 300px;
}
@media screen and (max-width: 768px) {
  main.single.people article.people .content #myprofile .favorite img {
    right: -20px;
    bottom: -35px;
  }
}
main.single.people article.people .content .for_student {
  max-width: 1000px;
  min-height: 450px;
  padding: 80px 50px;
  margin: 150px auto 80px;
  color: white;
  background-image: url("https://placehold.jp/1000x450.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
main.single.people article.people .content .for_student h1 {
  margin: 0 0 30px;
  text-align: center;
}
main.single.people article.people .content .for_student p {
  max-width: 600px;
  margin: 0 auto;
}

#interview-footer,
#people.other-interviews {
  max-width: 100vw;
  padding: 80px 20px;
  margin: 0;
  background: #f1f1f1;
}
#interview-footer h1,
#people.other-interviews h1 {
  margin: 0 0 30px;
  font-size: 2.5rem;
  color: #2ac353;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #interview-footer h1,
  #people.other-interviews h1 {
    font-size: 2rem;
  }
}
#interview-footer .interviews,
#people.other-interviews .interviews {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 80px;
  justify-content: center;
}
#interview-footer .interviews > a,
#people.other-interviews .interviews > a {
  width: 260px;
  color: inherit;
  text-decoration: none;
}
#interview-footer .interviews .thumbnail,
#people.other-interviews .interviews .thumbnail {
  position: relative;
}
#interview-footer .interviews .thumbnail::after,
#people.other-interviews .interviews .thumbnail::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60px;
  height: 60px;
  content: "";
  background-image: url("https://placehold.jp/60x60.png");
  background-repeat: no-repeat;
  background-size: contain;
}
#interview-footer .interviews .thumbnail img,
#people.other-interviews .interviews .thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
}
#interview-footer .interviews .tags,
#people.other-interviews .interviews .tags {
  margin: 1rem 0;
}
#interview-footer .interviews .tags span,
#people.other-interviews .interviews .tags span {
  display: inline-block;
  padding: 0 10px;
  font-weight: 700;
  border: solid 1px black;
  border-radius: 1rem;
}
#interview-footer .interviews h4,
#people.other-interviews .interviews h4 {
  margin: 0 0 5px;
  font-size: 1.25rem;
  line-height: 1.2;
}
#interview-footer .interviews h5,
#people.other-interviews .interviews h5 {
  margin: 0;
  font-size: 1rem;
}

main.single article.manga {
  max-width: 800px;
  margin: 100px auto 0;
}
@media screen and (max-width: 768px) {
  main.single article.manga {
    margin: 0;
  }
}
main.single article.manga h1 {
  text-align: center;
}
@media screen and (max-width: 768px) {
  main.single article.manga h1 {
    font-size: 1.5rem;
  }
}
main.single article.manga .content {
  padding: 50px;
  border: solid 1px black;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  main.single article.manga .content {
    padding: 20px;
  }
}
main.single article.manga .content img {
  margin-bottom: 30px;
}
main.single article.manga .content img:last-child {
  margin-bottom: 0;
}

.yoast_breadcrumb {
  max-width: 1104px;
  margin: 20px auto 0;
  font-weight: 700;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .yoast_breadcrumb {
    padding-top: 10px;
  }
}
.yoast_breadcrumb a,
.yoast_breadcrumb span {
  color: #2ac353;
  text-decoration: none;
}
.yoast_breadcrumb span.breadcrumb_last {
  color: black;
}

.mt-10px {
  margin-top: 10px !important;
}

.mb-10px {
  margin-bottom: 10px !important;
}

.mr-10px {
  margin-right: 10px !important;
}

.ml-10px {
  margin-left: 10px !important;
}

.mt-20px {
  margin-top: 20px !important;
}

.mb-20px {
  margin-bottom: 20px !important;
}

.mr-20px {
  margin-right: 20px !important;
}

.ml-20px {
  margin-left: 20px !important;
}

.mt-30px {
  margin-top: 30px !important;
}

.mb-30px {
  margin-bottom: 30px !important;
}

.mr-30px {
  margin-right: 30px !important;
}

.ml-30px {
  margin-left: 30px !important;
}

.mt-40px {
  margin-top: 40px !important;
}

.mb-40px {
  margin-bottom: 40px !important;
}

.mr-40px {
  margin-right: 40px !important;
}

.ml-40px {
  margin-left: 40px !important;
}

.mt-50px {
  margin-top: 50px !important;
}

.mb-50px {
  margin-bottom: 50px !important;
}

.mr-50px {
  margin-right: 50px !important;
}

.ml-50px {
  margin-left: 50px !important;
}

.mt-60px {
  margin-top: 60px !important;
}

.mb-60px {
  margin-bottom: 60px !important;
}

.mr-60px {
  margin-right: 60px !important;
}

.ml-60px {
  margin-left: 60px !important;
}

.mt-70px {
  margin-top: 70px !important;
}

.mb-70px {
  margin-bottom: 70px !important;
}

.mr-70px {
  margin-right: 70px !important;
}

.ml-70px {
  margin-left: 70px !important;
}

.mt-80px {
  margin-top: 80px !important;
}

.mb-80px {
  margin-bottom: 80px !important;
}

.mr-80px {
  margin-right: 80px !important;
}

.ml-80px {
  margin-left: 80px !important;
}

.mt-90px {
  margin-top: 90px !important;
}

.mb-90px {
  margin-bottom: 90px !important;
}

.mr-90px {
  margin-right: 90px !important;
}

.ml-90px {
  margin-left: 90px !important;
}

.mt-100px {
  margin-top: 100px !important;
}

.mb-100px {
  margin-bottom: 100px !important;
}

.mr-100px {
  margin-right: 100px !important;
}

.ml-100px {
  margin-left: 100px !important;
}

.mt-110px {
  margin-top: 110px !important;
}

.mb-110px {
  margin-bottom: 110px !important;
}

.mr-110px {
  margin-right: 110px !important;
}

.ml-110px {
  margin-left: 110px !important;
}

.mt-120px {
  margin-top: 120px !important;
}

.mb-120px {
  margin-bottom: 120px !important;
}

.mr-120px {
  margin-right: 120px !important;
}

.ml-120px {
  margin-left: 120px !important;
}

.mt-130px {
  margin-top: 130px !important;
}

.mb-130px {
  margin-bottom: 130px !important;
}

.mr-130px {
  margin-right: 130px !important;
}

.ml-130px {
  margin-left: 130px !important;
}

.mt-140px {
  margin-top: 140px !important;
}

.mb-140px {
  margin-bottom: 140px !important;
}

.mr-140px {
  margin-right: 140px !important;
}

.ml-140px {
  margin-left: 140px !important;
}

.mt-150px {
  margin-top: 150px !important;
}

.mb-150px {
  margin-bottom: 150px !important;
}

.mr-150px {
  margin-right: 150px !important;
}

.ml-150px {
  margin-left: 150px !important;
}

.mt-160px {
  margin-top: 160px !important;
}

.mb-160px {
  margin-bottom: 160px !important;
}

.mr-160px {
  margin-right: 160px !important;
}

.ml-160px {
  margin-left: 160px !important;
}

.mt-170px {
  margin-top: 170px !important;
}

.mb-170px {
  margin-bottom: 170px !important;
}

.mr-170px {
  margin-right: 170px !important;
}

.ml-170px {
  margin-left: 170px !important;
}

.mt-180px {
  margin-top: 180px !important;
}

.mb-180px {
  margin-bottom: 180px !important;
}

.mr-180px {
  margin-right: 180px !important;
}

.ml-180px {
  margin-left: 180px !important;
}

.mt-190px {
  margin-top: 190px !important;
}

.mb-190px {
  margin-bottom: 190px !important;
}

.mr-190px {
  margin-right: 190px !important;
}

.ml-190px {
  margin-left: 190px !important;
}

.mt-200px {
  margin-top: 200px !important;
}

.mb-200px {
  margin-bottom: 200px !important;
}

.mr-200px {
  margin-right: 200px !important;
}

.ml-200px {
  margin-left: 200px !important;
}

.mt-210px {
  margin-top: 210px !important;
}

.mb-210px {
  margin-bottom: 210px !important;
}

.mr-210px {
  margin-right: 210px !important;
}

.ml-210px {
  margin-left: 210px !important;
}

.mt-220px {
  margin-top: 220px !important;
}

.mb-220px {
  margin-bottom: 220px !important;
}

.mr-220px {
  margin-right: 220px !important;
}

.ml-220px {
  margin-left: 220px !important;
}

.mt-230px {
  margin-top: 230px !important;
}

.mb-230px {
  margin-bottom: 230px !important;
}

.mr-230px {
  margin-right: 230px !important;
}

.ml-230px {
  margin-left: 230px !important;
}

.mt-240px {
  margin-top: 240px !important;
}

.mb-240px {
  margin-bottom: 240px !important;
}

.mr-240px {
  margin-right: 240px !important;
}

.ml-240px {
  margin-left: 240px !important;
}

.mt-250px {
  margin-top: 250px !important;
}

.mb-250px {
  margin-bottom: 250px !important;
}

.mr-250px {
  margin-right: 250px !important;
}

.ml-250px {
  margin-left: 250px !important;
}

.mr-auto {
  margin-right: auto !important;
}

.ml-auto {
  margin-left: auto !important;
}

.t-left {
  text-align: left !important;
}

.t-center {
  text-align: center !important;
}

.t-right {
  text-align: right !important;
}

.t-justify {
  text-align: justify !important;
}

.highlight-first-letter {
  color: white;
}
.highlight-first-letter::first-letter {
  color: #f7f022;
}