@charset "UTF-8";
/*--PC--*/
html {
  font-size: 16px;
  color-scheme: dark light;
}

.inner {
  margin: 0 auto;
  position: relative;
  padding: 1rem;
  max-width: 700px;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

* {
  box-sizing: border-box;
}

.btnArea {
  text-align: center;
  margin: 2rem auto;
}
.btnArea > p {
  text-align: center;
}

a.button, button {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  text-align: center;
  background-image: url(../img/button_bg.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.8;
  cursor: pointer;
}
a.button:hover, button:hover {
  opacity: 1;
}

button {
  padding: 0.6rem 5rem;
  -webkit-tap-highlight-color: transparent;
}

a.button {
  padding: 0.8rem 1rem 0.6rem;
  display: block;
  width: 14rem;
  height: 3rem;
  margin: 0 auto;
}

a {
  cursor: pointer;
  text-decoration: unset;
  color: #333;
  -webkit-tap-highlight-color: transparent;
}

input {
  color: #333;
  width: 100%;
}
input::-moz-placeholder {
  color: #999;
}
input::placeholder {
  color: #999;
}

.ta-c {
  text-align: center;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
}

form {
  position: relative;
  z-index: 2;
}

select {
  color: #333;
  width: 100%;
}
select:invalid {
  color: #999;
}

textarea {
  color: #333;
  width: 100%;
  height: 100%;
}

a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline: none;
}

p {
  line-height: 1.6;
  text-align: justify;
}

em {
  font-style: normal;
}

ul {
  list-style: none;
}

.anime {
  opacity: 0;
}
.anime.active {
  opacity: 1;
  transform: translate(0, 0) scale(1) !important;
  transition-duration: 0.4s;
}

section {
  position: relative;
  margin: 2rem 0;
}

body {
  line-height: 1.6;
  color: #333;
  min-height: 100vh;
  margin: 0 auto;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  width: 100%;
  background-color: #fff;
}
body::before {
  content: "";
  background-size: cover;
  width: 30%;
  height: 110%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transform: translateY(-5rem);
  transition-duration: 5s;
}
body.active::before {
  opacity: 1;
  transform: translate(0);
}
body.privacy_policy::before, body.privacy_policy.active::before {
  content: none;
  display: none;
}
body.blur {
  overflow: hidden;
}

article {
  width: 100%;
  max-width: 720px;
  min-height: 100%;
  text-align: left;
  padding: 1rem 0;
  position: relative;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.6rem 2rem;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}
header::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(0.8rem);
}
header .inner {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: none;
  width: auto;
}
header .inner a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 1;
}
header .inner a span {
  font-size: 0.8rem;
  font-weight: 500;
}
header .inner a span.logo {
  font-family: "Josefin Sans";
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 1.2;
}
header .inner .header_menu {
  display: none;
}
header nav {
  position: static;
  width: auto;
  height: auto;
  opacity: 1;
  visibility: visible;
  display: block;
  transition: 0.3s;
  z-index: 20;
}
header nav ul {
  font-weight: 600;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}
header nav ul li {
  overflow: hidden;
}
header nav ul li a {
  position: relative;
}
header nav ul li a::after {
  content: "";
  position: absolute;
  left: -100%;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #333;
}
header nav ul li a:hover::after {
  animation: headerAnime 0.4s forwards;
}
header nav ul li.current a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #333;
}
header nav ul li.current a:hover::after {
  animation: none;
}

@keyframes headerAnime {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
footer {
  width: 100%;
  background-color: #333;
  color: #fff;
}
footer .inner {
  max-width: 1080px;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
footer .inner a {
  color: #fff;
}
footer .inner .footer_left {
  display: block;
  border-bottom: none;
  padding-bottom: 0;
  width: auto;
}
footer .inner .footer_left a.footer_logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0.6rem;
}
footer .inner .footer_left a.footer_logo span {
  font-size: 0.8rem;
}
footer .inner .footer_left a.footer_logo span.logo {
  font-family: "Josefin Sans";
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 1.2;
}
footer .inner .footer_left p {
  color: #999;
  line-height: 1.6;
}
footer .inner .footer_left p.footer_address {
  font-size: 1rem;
}
footer .inner .footer_left p.footer_tel {
  font-weight: 600;
  margin-top: 0.5rem;
}
footer .inner .footer_right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 0;
}
footer .inner .footer_right nav {
  border-bottom: 1px solid #666;
  padding-bottom: 1.6rem;
  margin-bottom: 1.2rem;
}
footer .inner .footer_right nav ul {
  width: 28rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  justify-content: space-between;
}
footer .inner .footer_right nav ul li {
  display: block;
  overflow: hidden;
}
footer .inner .footer_right nav ul li a {
  position: relative;
}
footer .inner .footer_right nav ul li a::after {
  content: "";
  position: absolute;
  left: -100%;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}
footer .inner .footer_right nav ul li a:hover::after {
  animation: headerAnime 0.4s forwards;
}
footer .inner .footer_right > p {
  font-size: 0.7rem;
  color: #999;
}

main {
  overflow: hidden;
  position: relative;
  height: 100%;
  width: 70%;
  padding-bottom: 6rem;
  background-color: #ffffff;
}

h1 {
  font-size: 1.6rem;
  font-weight: bold;
  padding: 8rem 0 2rem;
  width: 720px;
  position: relative;
}
h1 em {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 8rem;
  font-family: "Josefin Sans";
  font-weight: normal;
  text-align: center;
  position: fixed;
  top: 0;
  width: auto;
  writing-mode: vertical-rl;
  z-index: -1;
}
h1 span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
h1 span::after {
  content: "";
  display: inline-block;
  background-color: #F4E320;
  width: 5rem;
  height: 0.25rem;
}

section h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.layout-l::before {
  right: 0;
  left: auto;
}
.layout-l main {
  margin-right: 30%;
}
.layout-l h1 {
  text-align: center;
  margin-right: 10rem;
  margin-left: auto;
}
.layout-l h1 em {
  right: calc(30% - 8.5rem);
  top: 5rem;
}
.layout-l article {
  margin: 0 10rem 0 auto;
}

.layout-r::before {
  left: 0;
}
.layout-r main {
  margin-left: 30%;
}
.layout-r h1 {
  text-align: center;
  margin-left: 10rem;
  margin-right: auto;
}
.layout-r h1 em {
  left: calc(30% - 10.5rem);
  top: 5rem;
}
.layout-r article {
  margin: 0 auto 0 10rem;
}

.about::before {
  background-image: url(../img/about_bg_pc.webp);
  background-position: left center;
}
.about article .about_promise ul {
  margin: 2rem 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
}
.about article .about_promise ul li {
  text-align: center;
  padding: 2rem 0.6rem 1.5rem;
  border: 1px solid #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 25%;
  position: relative;
}
.about article .about_promise ul li::before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: inline-block;
  width: 3.4rem;
  height: 3.4rem;
  position: absolute;
  top: -1.7rem;
  left: 50%;
  transform: translateX(-50%);
}
.about article .about_promise ul li:nth-of-type(1)::before {
  background-image: url(../img/about_promise_cnt_a.webp);
}
.about article .about_promise ul li:nth-of-type(2)::before {
  background-image: url(../img/about_promise_cnt_b.webp);
}
.about article .about_promise ul li:nth-of-type(3)::before {
  background-image: url(../img/about_promise_cnt_c.webp);
}
.about article .about_promise ul li:nth-of-type(4)::before {
  background-image: url(../img/about_promise_cnt_d.webp);
}
.about article .about_reason > div {
  margin: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.about article .about_reason > div::before {
  content: "";
  background-image: url(../img/about_reason_pc.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  display: block;
  width: 20.6rem;
}
.about article .about_reason > div ul {
  width: 22.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.about article .about_reason > div ul li h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
}
.about article .about_reason > div ul li h3 span {
  font-family: "Josefin Sans";
  font-size: 2.8rem;
  color: #F4E320;
  font-weight: 300;
  position: relative;
}
.about article .about_reason > div ul li h3 span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 4.5rem;
  height: 1px;
  background: #F4E320;
}
.about article .about_reason > div ul li:nth-of-type(1) h3 span::before {
  width: 12rem;
}
.about article .about_reason > div ul li:nth-of-type(2) h3 span::before, .about article .about_reason > div ul li:nth-of-type(5) h3 span::before {
  width: 13.4rem;
}
.about article .about_reason > div ul li:nth-of-type(3) h3 span::before, .about article .about_reason > div ul li:nth-of-type(4) h3 span::before {
  width: 10.8rem;
}
.about article .about_skill {
  margin-top: 3rem;
}
.about article .about_skill dl {
  margin: 1rem 0;
  padding: 1.3rem 2rem;
  background-color: #f0f0f0;
  display: flex;
  flex-wrap: wrap;
}
.about article .about_skill dl div {
  width: 50%;
}
.about article .about_skill dl div dt {
  font-family: "Josefin Sans";
  font-size: 1.8rem;
  font-weight: normal;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}
.about article .about_skill dl div dt::before {
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: inline-block;
  width: 3.7rem;
  height: 3.7rem;
}
.about article .about_skill dl div:nth-of-type(1) {
  padding-bottom: 1.3rem;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
.about article .about_skill dl div:nth-of-type(1) dt::before {
  background-image: url(../img/about_skill_a.webp);
}
.about article .about_skill dl div:nth-of-type(2) {
  padding-left: 1.6rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid #ccc;
}
.about article .about_skill dl div:nth-of-type(2) dt::before {
  background-image: url(../img/about_skill_c.webp);
}
.about article .about_skill dl div:nth-of-type(3) {
  padding-right: 1rem;
  padding-top: 1rem;
  border-right: 1px solid #ccc;
}
.about article .about_skill dl div:nth-of-type(3) dt::before {
  background-image: url(../img/about_skill_b.webp);
}
.about article .about_skill dl div:nth-of-type(4) {
  padding-left: 1.6rem;
  padding-top: 1rem;
}
.about article .about_skill dl div:nth-of-type(4) dt::before {
  background-image: url(../img/about_skill_d.webp);
}
.about article .about_skill dl div dd ul li {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.about article .about_skill dl div dd ul li::before {
  content: "";
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  background: #F4E320;
  transform: rotate(45deg);
  margin-top: 0.6rem;
  margin-right: 0.3rem;
}

.service::before {
  background-image: url(../img/service_bg_pc.webp);
  background-position: right center;
}
.service article > ul {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service article > ul li {
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  height: 8rem;
  padding: 1rem 0;
  border-right: 1px solid #ddd;
  width: 25%;
  flex-wrap: nowrap;
}
.service article > ul li:first-child {
  border-left: 1px solid #ddd;
}
.service article > ul li::before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: inline-block;
  width: 3rem;
  height: 3rem;
}
.service article > ul li:nth-of-type(1)::before {
  background-image: url(../img/service_icon_a.webp);
  width: 2.8rem;
  height: 2.8rem;
}
.service article > ul li:nth-of-type(2)::before {
  background-image: url(../img/service_icon_b.webp);
}
.service article > ul li:nth-of-type(3)::before {
  background-image: url(../img/service_icon_c.webp);
}
.service article > ul li:nth-of-type(4)::before {
  background-image: url(../img/service_icon_d.webp);
}

.service article > p, .price article > p {
  text-align: center;
}

div.layout_style {
  margin-top: 1rem;
}
div.layout_style > section, div.layout_style > div {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2rem;
  z-index: 1;
}
div.layout_style > section div, div.layout_style > div div {
  width: 12.4rem;
}
div.layout_style > section div h2, div.layout_style > div div h2 {
  margin-bottom: 1.6rem;
}
div.layout_style > section figure, div.layout_style > div figure {
  position: relative;
  z-index: 1;
  width: 16.8rem;
  height: 16.8rem;
}
div.layout_style > section figure img, div.layout_style > div figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
div.layout_style > section figure::before, div.layout_style > div figure::before {
  content: "";
  position: absolute;
  top: -0.2rem;
  right: -0.6rem;
  width: 16.8rem;
  height: 16.8rem;
  background: #F4E320;
  transform: rotate(4deg);
  z-index: -1;
}
div.layout_style > section ul, div.layout_style > div ul {
  width: 12.4rem;
  padding-top: 9.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
}
div.layout_style > section ul li, div.layout_style > div ul li {
  background-color: #E0E0E0;
  padding: 0.1rem 0.6rem;
  position: relative;
}
div.layout_style > section ul li::before, div.layout_style > div ul li::before {
  content: "";
  position: absolute;
  left: -0.85rem;
  top: 0;
  width: 0;
  height: 0;
  border-top: 0.9rem solid transparent;
  border-bottom: 0.9rem solid transparent;
  border-right: 0.9rem solid #e0e0e0;
}
div.layout_style > section ul li::after, div.layout_style > div ul li::after {
  content: "";
  position: absolute;
  left: -0.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.5rem;
  height: 0.5rem;
  background-color: #fff;
  border-radius: 50%;
}
div.layout_style > section div {
  padding-top: 5.6rem;
}
div.layout_style > section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background: #F4E320;
  z-index: -1;
}
div.layout_style > section:nth-child(even) {
  flex-direction: row-reverse;
}
div.layout_style > section:nth-child(even) ul {
  justify-content: right;
}
div.layout_style > section:nth-child(even) ul li::before {
  left: auto;
  right: -0.85rem;
  border-right: none;
  border-left: 0.9rem solid #e0e0e0;
}
div.layout_style > section:nth-child(even) ul li::after {
  left: auto;
  right: -0.2rem;
}
div.layout_style > div {
  margin: 2rem 0;
  position: relative;
}
div.layout_style > div > section {
  margin: 0;
  flex: 0 0 12.4rem;
  padding-top: 5.6rem;
}
div.layout_style > div > section h2 {
  margin-bottom: 1.6rem;
}
div.layout_style > div > section p {
  font-weight: bold;
  line-height: 1.2;
}
div.layout_style > div > section p span {
  font-family: "Roboto";
  font-size: 2.5rem;
  font-weight: 500;
  margin: 0 0.15rem;
}
div.layout_style > div > section p:last-child {
  font-weight: normal;
  line-height: 1.5;
}
div.layout_style > div figure {
  z-index: 1;
}
div.layout_style > div::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background: #F4E320;
  z-index: -1;
}
div.layout_style > div:last-child figure {
  width: 16.2rem;
  height: 16.2rem;
}

.works::before {
  background-image: url(../img/works_bg_pc.webp);
  background-position: center;
}
.works article section {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 2rem;
  margin-bottom: 4rem;
}
.works article section figure {
  width: 18.7rem;
  height: auto;
}
.works article section figure a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.works article section dl {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  align-items: stretch;
  flex: 1;
}
.works article section dl dt h2 {
  margin-bottom: 0;
}
.works article section dl dt h2 a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.3rem;
}
.works article section dl dt h2 a::after {
  content: "";
  background-image: url(../img/group_link_icon.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  filter: brightness(0.5);
}
.works article section dl dd ul {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.works article section dl dd ul li {
  width: 7.5rem;
  height: 7.5rem;
}
.works article section dl dd ul li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.popup {
  -webkit-tap-highlight-color: transparent;
}
.popup:focus {
  outline: none;
}

.popup_overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 40;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.popup_overlay img {
  width: 50rem;
  height: 30rem;
  -o-object-fit: contain;
     object-fit: contain;
  transform: scale(0.9);
  transition: transform 0.4s ease;
}
.popup_overlay.active {
  opacity: 1;
}
.popup_overlay.active img {
  transform: scale(1);
}

.price::before {
  background-image: url(../img/price_bg_pc.webp);
  background-position: center;
}

.company::before {
  background-image: url(../img/company_bg_pc.webp);
  background-position: left center;
}
.company article > picture {
  display: block;
  width: 45rem;
  height: auto;
  margin: 1.5rem 0 2rem;
}
.company article > picture img {
  width: 100%;
  height: auto;
}
.company article .company_profile {
  display: flex;
  gap: 1rem;
  flex-direction: row;
  justify-content: flex-start;
}
.company article .company_profile dl {
  flex: 1;
}
.company article .company_profile dl div {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  position: relative;
}
.company article .company_profile dl div dt {
  width: 4.9rem;
  padding: 1rem 0;
}
.company article .company_profile dl div dd {
  padding: 1rem;
  flex: 1;
}
.company article .company_profile dl div:not(:last-child)::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 4.9rem;
  height: 1px;
  background-color: #F4E320;
  z-index: 2;
}
.company article .company_profile dl div:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ddd;
  z-index: 1;
}
.company article .company_profile .company-map {
  width: 19rem;
  height: 31rem;
}
.company article .company_profile .company-map iframe {
  width: 100%;
  height: 100%;
}
.company article section {
  background-color: #f0f0f0;
  padding: 1rem 2rem;
}
.company article section picture {
  display: block;
  width: 36rem;
  height: auto;
  margin: 1rem auto;
}
.company article section picture img {
  width: 100%;
  height: auto;
}
.company article section .btnArea {
  margin: 1.5rem auto 1rem;
}
.company article section .btnArea .group_link {
  background-color: #000;
  color: #fff;
  font-weight: bold;
  border-radius: 4rem;
  padding: 0.8rem 1rem 0.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  width: 23.3rem;
  height: 5rem;
  margin: 0 auto;
  opacity: 0.8;
}
.company article section .btnArea .group_link:hover {
  opacity: 1;
}
.company article section .btnArea .group_link::before {
  content: "";
  background-image: url(../img/allbloom_logo.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: inline-block;
  width: 11rem;
  height: 1.8rem;
}
.company article section .btnArea .group_link .link_txt {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
}
.company article section .btnArea .group_link .link_txt::after {
  content: "";
  background-image: url(../img/group_link_icon.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: inline-block;
  width: 1rem;
  height: 1rem;
}

.recruit::before {
  background-image: url(../img/recruit_bg_pc.webp);
  background-position: center;
}
.recruit article > p {
  text-align: center;
  margin-bottom: 1rem;
}
.recruit article > picture {
  display: block;
  width: 45rem;
  height: auto;
}
.recruit article > picture img {
  width: 100%;
  height: auto;
}
.recruit article .recruit_message ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.6rem;
  margin: 1.5rem auto;
}
.recruit article .recruit_message ul li {
  padding: 0.3rem 1rem;
  background-color: #fff;
  border: 1px solid #333;
  border-radius: 2rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.3rem;
}
.recruit article .recruit_message ul li::before {
  content: "";
  background-image: url(../img/recruit_li_icon.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: inline-block;
  width: 1rem;
  height: 1rem;
}
.recruit article .recruit_message figure {
  width: 45rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.recruit article .recruit_message figure picture {
  display: block;
  width: 50%;
  height: auto;
}
.recruit article .recruit_message figure picture img {
  width: 100%;
  height: auto;
}
.recruit article .recruit_guide dl {
  background-color: #fff;
  border: 1px solid #ddd;
}
.recruit article .recruit_guide dl div {
  display: flex;
  justify-content: flex-start;
}
.recruit article .recruit_guide dl div:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
.recruit article .recruit_guide dl div dt {
  padding: 1rem;
  width: 10rem;
  background-color: #FCF8D2;
  font-weight: 700;
}
.recruit article .recruit_guide dl div dd {
  padding: 1rem 2rem;
  flex: 1;
}
.recruit article .recruit_guide dl div dd p {
  display: flex;
  flex-direction: column;
}
.recruit article .recruit_guide dl div dd p:not(:last-child) {
  margin-bottom: 1rem;
}
.recruit article .recruit_guide dl div dd p em {
  font-weight: 700;
}

.contact::before {
  background-image: url(../img/contact_bg_pc.webp);
  background-position: center;
}
.contact article > p {
  text-align: center;
}
.contact .flow ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.contact .flow ul::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #333;
  z-index: 1;
}
.contact .flow ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  background-color: #fff;
  border: 1px solid #333;
  border-radius: 50%;
  width: 11.8rem;
  height: 11.8rem;
  padding: 2rem 0;
  position: relative;
  z-index: 2;
}
.contact .flow ul li::before {
  content: "01";
  position: absolute;
  top: -1rem;
  left: 0;
  font-family: "Josefin Sans";
  font-weight: 300;
  color: #333;
  font-size: 3.5rem;
}
.contact .flow ul li img {
  width: 4rem;
  height: auto;
}
.contact .flow ul li p {
  line-height: 1.5;
  text-align: center;
}
.contact .flow ul li:nth-of-type(2)::before {
  content: "02";
}
.contact .flow ul li:nth-of-type(3) {
  border: none;
  background-color: #FAF2A2;
}
.contact .flow ul li:nth-of-type(3)::before {
  content: "03";
}
.contact .flow ul li:nth-of-type(3) img {
  width: 5rem;
  height: auto;
}
.contact form {
  margin: 3rem 0 2rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 2rem;
}
.contact form > p {
  text-align: center;
}
.contact form dl div {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
}
.contact form dl div dt {
  width: 10rem;
  margin-top: 0.6rem;
  height: 1.7rem;
  font-weight: 500;
}
.contact form dl div dt.required:after {
  content: "*";
  color: #FFD600;
  margin-left: 0.2rem;
}
.contact form dl div dd {
  padding: 0.6rem 1rem;
  background-color: #F0F0F0;
  border-radius: 0.6rem;
  width: 31rem;
}
.contact form dl div dd input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #f0f0f0 inset;
}
.contact form dl div.select dd {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact form dl div.select dd::after {
  content: "▼";
  font-size: 0.6rem;
  color: #999;
}
.contact form dl div:last-child dd textarea {
  min-height: 8.6rem;
}
.contact form .privacy_policy label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.contact form .privacy_policy label input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 1.1rem;
  height: 1.1rem;
  background-color: #ddd;
  border-radius: 0.2rem;
  margin-top: 0.2rem;
  cursor: pointer;
  position: relative;
}
.contact form .privacy_policy label input[type=checkbox]:checked {
  background-color: #F4E320;
}
.contact form .privacy_policy label input[type=checkbox]:checked::after {
  content: "";
  background-image: url(../img/checkmark.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: inline-block;
  width: 0.8rem;
  height: 0.6rem;
  position: absolute;
  top: 0.25rem;
  left: 0.15rem;
}
.contact form .privacy_policy label .label_txt a {
  text-decoration: underline;
}
.contact .btnArea .tel_btn {
  margin: 0 auto;
  padding: 0.8rem 2rem 0.6rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 22rem;
  height: 4.6rem;
  background-color: #fff;
  border: 1px solid #F4E320;
  border-radius: 4rem;
  opacity: 0.8;
}
.contact .btnArea .tel_btn:hover {
  opacity: 1;
}
.contact .btnArea .tel_btn .tel_link {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
  line-height: 1.4;
}
.contact .btnArea .tel_btn .tel_link span {
  font-family: "Josefin Sans";
  font-size: 1.3rem;
  font-weight: 600;
}
.contact .btnArea .tel_btn::before {
  content: "";
  background-image: url(../img/tel_btn_icon.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: inline-block;
  width: 2.2rem;
  height: 2.2rem;
}
.contact .btnArea > p {
  color: #888;
  margin-top: 0.6rem;
}
.contact .contact_done {
  height: 100vh;
}
.contact .contact_done article section {
  margin-top: 0;
}
.contact .contact_done article section h2, .contact .contact_done article section p {
  text-align: center;
}
.contact .contact_done article section h2 {
  margin-bottom: 1.6rem;
}
.contact .contact_done article section p {
  margin-bottom: 1rem;
}
.contact .contact_done article section p:last-child {
  color: #cb0808;
}

.database::before {
  background-image: url(../img/database.jpg);
  background-position: right center;
}
.database h2 span {
  color: rgba(255, 255, 255, 0.8);
}

.database_sclist li {
  width: 100px;
  float: left;
  height: 100px;
  padding: 0.5rem;
  border: 1px #cccccc solid;
  margin: 0.5rem;
}
.database_sclist li a {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: inline-block;
}
.database_sclist li a img {
  width: auto;
  height: 100%;
  transform: translateX(-25%);
}
.database_sclist li.database_sclist_sp {
  width: 50px;
  float: left;
  height: 100px;
}
.database_sclist li.database_sclist_sp a img {
  transform: none;
}

.privacy_policy main {
  width: auto;
  margin: 0 auto;
}
.privacy_policy main h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: initial;
  margin: 0 auto;
}
.privacy_policy main h1 em {
  position: static;
  writing-mode: initial;
  font-size: 7.8rem;
  line-height: 1;
  color: rgba(244, 227, 32, 0.4);
  z-index: 1;
}
.privacy_policy main h1 span {
  margin-top: -1.5rem;
}
.privacy_policy main article {
  max-width: 720px;
  text-align: left;
  margin: 0 auto;
  padding: 1rem 0;
}
.privacy_policy main article p, .privacy_policy main article section {
  margin-bottom: 2rem;
}
.privacy_policy main article h2 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.privacy_policy main article section ul li {
  display: flex;
  gap: 0.2rem;
  justify-content: flex-start;
}
.privacy_policy main article section ul li::before {
  content: "・";
}

/*-article崩れ防止css-*/
@media (min-width: 1280px) and (max-width: 1439px) {
  .layout-r article {
    margin: 0 auto 0 6rem;
  }
  .layout-r h1 {
    margin-left: 6rem;
  }
  .layout-l article {
    margin: 0 6rem 0 auto;
  }
  .layout-l h1 {
    margin-right: 6rem;
  }
}
/*--タブ--*/
@media (max-width: 1279px) {
  a.button, button {
    opacity: 1;
  }
  body.blur {
    overflow: hidden;
  }
  body::before {
    width: 100%;
    background-position: center;
    top: 0;
    display: block;
    height: 20rem;
    filter: brightness(0.8);
    transform: none;
    transition: none;
  }
  main {
    width: 100%;
    padding-bottom: 5rem;
    overflow: hidden;
  }
  section h2 {
    font-size: 1.2rem;
  }
  .layout-l::before, .layout-r::before {
    left: 0;
    right: 0;
  }
  .layout-l main, .layout-r main {
    margin: 0;
    overflow: visible;
    margin-top: 20rem;
  }
  .layout-l h1, .layout-r h1 {
    margin: 0;
    text-align: center;
  }
  .layout-l h1 em, .layout-r h1 em {
    top: -11rem;
    left: auto;
    right: auto;
    display: block;
  }
  .layout-l article, .layout-r article {
    margin: 0 auto;
  }
  article {
    padding: 1rem;
    margin: 0 auto;
    max-width: 720px;
  }
  h1 {
    width: 100%;
    padding: 4rem 0 1rem;
    font-size: 1.5rem;
  }
  h1 em {
    color: rgba(255, 255, 255, 0.4);
    font-size: 6rem;
    writing-mode: initial;
    width: 100%;
    position: absolute;
    z-index: 1;
  }
  h1 span::after {
    width: 3rem;
    height: 0.2rem;
  }
  header {
    padding: 0.8rem 1rem 0.6rem;
  }
  header .inner {
    width: 100%;
  }
  header .inner a span {
    font-size: 0.9rem;
  }
  header .inner a span.logo {
    font-size: 1.8rem;
    line-height: 1;
  }
  header .inner .header_menu {
    position: relative;
    z-index: 30;
    display: block;
    width: 2rem;
    height: 1.75rem;
    padding: 0;
    background: none;
  }
  header .inner .header_menu span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
    transition: 0.3s ease;
  }
  header .inner .header_menu span:nth-of-type(1) {
    top: 0;
  }
  header .inner .header_menu span:nth-of-type(2) {
    top: 50%;
  }
  header .inner .header_menu span:nth-of-type(3) {
    bottom: 0;
  }
  header .inner .header_menu.active {
    height: 1.1rem;
  }
  header .inner .header_menu.active span {
    height: 1px;
  }
  header .inner .header_menu.active span:nth-of-type(1) {
    transform: translateY(0.5rem) rotate(145deg);
  }
  header .inner .header_menu.active span:nth-of-type(2) {
    display: none;
  }
  header .inner .header_menu.active span:nth-of-type(3) {
    transform: translateY(-0.5rem) rotate(-145deg);
  }
  header nav {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    visibility: hidden;
    background: rgba(255, 255, 255, 0.6);
    opacity: 0;
    backdrop-filter: blur(0.8rem);
  }
  header nav.active {
    visibility: visible;
    opacity: 1;
  }
  header nav ul {
    flex-direction: column;
  }
  header nav ul li {
    overflow: initial;
  }
  header nav ul li a::after {
    display: none;
  }
  header nav ul li.current a::after {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 100%;
    height: 1px;
    background: #333;
  }
  header nav ul li.current a:hover::after {
    animation: none;
  }
  footer {
    width: 100%;
  }
  footer .inner {
    padding: 1.6rem 1rem;
    max-width: 720px;
    align-items: stretch;
    gap: 1.5rem;
  }
  footer .inner a {
    color: #fff;
  }
  footer .inner .footer_left {
    display: flex;
    flex-direction: column;
    width: 30rem;
  }
  footer .inner .footer_left a.footer_logo span {
    font-size: 0.8rem;
  }
  footer .inner .footer_left a.footer_logo span.logo {
    font-size: 1.5rem;
  }
  footer .inner .footer_left p {
    line-height: 1.4;
  }
  footer .inner .footer_left p.footer_tel {
    margin-top: 0.4rem;
  }
  footer .inner .footer_left p.footer_tel span {
    font-size: 1.1rem;
  }
  footer .inner .footer_left p.footer_address {
    font-size: 0.9rem;
  }
  footer .inner .footer_left p.footer_address br {
    display: none;
  }
  footer .inner .footer_right {
    width: 50%;
  }
  footer .inner .footer_right nav {
    padding-bottom: 2.3rem;
  }
  footer .inner .footer_right nav ul {
    width: auto;
  }
  footer .inner .footer_right nav ul li {
    display: none;
  }
  footer .inner .footer_right nav ul li.privacy_policy {
    display: block;
  }
  footer .inner .footer_right nav ul li a {
    text-decoration: underline;
  }
  footer .inner .footer_right nav ul li a::after {
    display: none;
  }
  footer .inner .footer_right > p {
    font-size: 0.8rem;
  }
  .about::before {
    background-image: url(../img/about_bg_tab.webp);
  }
  .about article .about_promise ul li {
    padding: 2rem 0.3rem 1.5rem;
  }
  .about article .about_reason > div::before {
    width: 19rem;
  }
  .about article .about_skill dl {
    padding: 1.3rem;
  }
  .about article .about_skill dl div dt {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .about article .about_skill dl div:nth-of-type(2), .about article .about_skill dl div:nth-of-type(4) {
    padding-left: 1.3rem;
  }
  .service::before {
    background-image: url(../img/service_bg_tab.webp);
  }
  div.layout_style > section figure, div.layout_style > div figure {
    width: 15.7rem;
    height: 15.7rem;
  }
  div.layout_style > section figure::before, div.layout_style > div figure::before {
    width: 15.7rem;
    height: 15.7rem;
  }
  div.layout_style > section div {
    padding-top: 5.2rem;
  }
  div.layout_style > section ul {
    padding-top: 9rem;
    gap: 0.6rem 1.2rem;
  }
  div.layout_style > section:nth-of-type(5)::before {
    top: 45%;
  }
  div.layout_style > section:nth-of-type(5) div {
    padding-top: 4.6rem;
  }
  div.layout_style > section:nth-of-type(5) ul {
    padding-top: 8.5rem;
  }
  div.layout_style > section:nth-of-type(5) ul li:nth-child(3), div.layout_style > section:nth-of-type(5) ul li:nth-child(4) {
    width: calc(50% - 0.6rem);
  }
  div.layout_style > div {
    gap: 1.2rem;
  }
  div.layout_style > div section {
    padding-top: 5.2rem;
  }
  div.layout_style > div section p span {
    font-size: 2.3rem;
  }
  div.layout_style > div:last-child figure {
    width: 15.7rem;
    height: 15.7rem;
  }
  .price::before {
    background-image: url(../img/price_bg_tab.webp);
  }
  .works::before {
    background-image: url(../img/works_bg_tab.webp);
  }
  .works article section figure {
    width: 22rem;
    height: auto;
  }
  .works article section dl dd ul {
    gap: 1rem;
  }
  .works article section dl dd ul li {
    width: 9rem;
    height: 9rem;
  }
  .popup_overlay img {
    width: 45rem;
    height: 25rem;
  }
  .company::before {
    background-image: url(../img/company_bg_tab.webp);
    background-position: center;
  }
  .company article > picture {
    width: 43rem;
  }
  .company article .company_profile .company-map {
    width: 17rem;
    height: 30rem;
  }
  .company article section picture {
    width: 33rem;
  }
  .company article section .btnArea .group_link {
    opacity: 1;
  }
  .recruit::before {
    background-image: url(../img/recruit_bg_tab.webp);
  }
  .recruit article > picture {
    width: 43rem;
  }
  .recruit article .recruit_message figure {
    width: 43rem;
  }
  .contact::before {
    background-image: url(../img/contact_bg_tab.webp);
  }
  .contact .flow ul li::before {
    font-size: 3rem;
  }
  .contact .btnArea .tel_btn {
    opacity: 1;
  }
  .privacy_policy main {
    padding-top: 6rem;
  }
  .privacy_policy main h1 {
    padding-top: 2rem;
  }
  .privacy_policy main h1 em {
    font-size: 5.5rem;
  }
  .privacy_policy main article {
    padding: 1rem 2rem;
  }
}
/*--スマホ--*/
@media (max-width: 743px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  html {
    font-size: 4vw;
  }
  body::before {
    height: 16rem;
  }
  article {
    padding: 1rem;
  }
  header .inner a span {
    font-size: 0.7rem;
  }
  header .inner a span.logo {
    font-size: 1.4rem;
    line-height: 1;
  }
  header .inner .header_menu {
    width: 2rem;
    height: 2rem;
  }
  footer .inner {
    flex-direction: column;
    gap: 0;
  }
  footer .inner .footer_left {
    flex-direction: column;
    border-bottom: 1px solid #666;
    padding-bottom: 1.3rem;
    width: 100%;
  }
  footer .inner .footer_left a.footer_logo span {
    font-size: 0.8rem;
  }
  footer .inner .footer_left a.footer_logo span.logo {
    font-size: 1.5rem;
  }
  footer .inner .footer_right {
    padding-top: 1.3rem;
    width: auto;
  }
  footer .inner .footer_right nav {
    border-bottom: none;
    padding-bottom: 0;
  }
  .layout-r main, .layout-l main {
    margin-top: 16rem;
  }
  .layout-r h1 em, .layout-l h1 em {
    top: -8rem;
  }
  .database_detail {
    display: block;
  }
  .database_detail > div {
    display: block;
    margin-bottom: 2rem;
  }
  h1 {
    width: 100%;
    padding: 2rem 0 1rem;
    font-size: 1.3rem;
  }
  h1 em {
    font-size: 3.5rem;
    writing-mode: initial;
    width: 100%;
  }
  h1 span {
    gap: 0.6rem;
  }
  section h2 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }
  .about article > p {
    margin-bottom: 1rem;
  }
  .about article .about_promise ul {
    flex-wrap: wrap;
    gap: 1.8rem 0.6rem;
  }
  .about article .about_promise ul li {
    width: calc((100% - 0.6rem) / 2);
  }
  .about article .about_reason > div {
    flex-direction: column;
    gap: 1.3rem;
  }
  .about article .about_reason > div::before {
    background-image: url(../img/about_reason_sp.webp);
    width: 100%;
    height: 13rem;
  }
  .about article .about_reason > div ul li h3 {
    font-size: 1.1rem;
  }
  .about article .about_reason > div ul li h3 span {
    font-size: 2.6rem;
  }
  .about article .about_reason > div ul li h3 span::before {
    left: 4.3rem;
  }
  .about article .about_skill dl {
    flex-direction: column;
    gap: 0.6rem;
    padding: 0;
    background-color: initial;
  }
  .about article .about_skill dl div {
    width: 100%;
    background-color: #f0f0f0;
  }
  .about article .about_skill dl div:nth-of-type(n) {
    border: none;
    padding: 1.3rem;
  }
  .about article .about_skill dl div dt {
    font-size: 1.5rem;
    line-height: 1.9;
  }
  .service article, .price article {
    padding: 0;
  }
  .service article > p, .price article > p {
    text-align: left;
    padding: 0 1rem;
  }
  .service article > ul {
    flex-wrap: wrap;
    padding: 0 1rem;
    margin: 2rem 0;
  }
  .service article > ul li {
    width: 50%;
    border-right: none;
    height: 7rem;
  }
  .service article > ul li:first-child {
    border-left: none;
  }
  .service article > ul li:nth-of-type(1), .service article > ul li:nth-of-type(3) {
    border-right: 1px solid #ddd;
  }
  .service article > ul li:nth-of-type(1), .service article > ul li:nth-of-type(2) {
    border-bottom: 1px solid #ddd;
    padding-top: 0;
  }
  .service article > ul li:nth-of-type(3), .service article > ul li:nth-of-type(4) {
    padding-bottom: 0;
  }
  .price::before {
    background-image: url(../img/price_bg_sp.webp);
  }
  div.layout_style {
    margin-top: 3rem;
  }
  div.layout_style > section, div.layout_style > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 0;
  }
  div.layout_style > section figure::before, div.layout_style > div figure::before {
    display: none;
  }
  div.layout_style > section {
    margin: 3rem 0;
  }
  div.layout_style > section::before {
    top: 3.1rem;
  }
  div.layout_style > section div {
    padding: 0.8rem 1rem 0;
    grid-column: 1;
    grid-row: 1;
  }
  div.layout_style > section div h2 {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
  }
  div.layout_style > section figure {
    width: 12.2rem;
    height: 12rem;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
  div.layout_style > section ul {
    padding: 0 1rem 0 2rem;
    grid-column: 1/3;
    grid-row: 2;
    width: auto;
    margin-top: 1.3rem;
  }
  div.layout_style > section:nth-of-type(5)::before {
    top: 3.1rem;
  }
  div.layout_style > section:nth-of-type(5) div {
    padding-top: 0.8rem;
  }
  div.layout_style > section:nth-of-type(5) div h2 {
    font-size: 1.05rem;
  }
  div.layout_style > section:nth-of-type(5) ul {
    padding-top: 0;
  }
  div.layout_style > section:nth-of-type(5) ul li:nth-of-type(3), div.layout_style > section:nth-of-type(5) ul li:nth-of-type(4) {
    width: auto;
  }
  div.layout_style > section:nth-child(even) div {
    grid-column: 2;
  }
  div.layout_style > section:nth-child(even) figure {
    grid-column: 1;
    justify-self: start;
  }
  div.layout_style > section:nth-child(even) ul {
    justify-content: left;
  }
  div.layout_style > section:nth-child(even) ul li::before {
    left: -0.85rem;
    right: auto;
    border-right: 0.9rem solid #e0e0e0;
    border-left: none;
  }
  div.layout_style > section:nth-child(even) ul li::after {
    left: -0.2rem;
    right: auto;
  }
  div.layout_style > div {
    align-items: center;
  }
  div.layout_style > div section {
    padding: 0 1rem;
  }
  div.layout_style > div section:first-child {
    grid-column: 1;
    grid-row: 1;
  }
  div.layout_style > div section:last-child {
    grid-column: 1;
    grid-row: 2;
  }
  div.layout_style > div section h2 {
    font-size: 1.2rem;
    margin-bottom: 0;
  }
  div.layout_style > div section p span {
    font-size: 2rem;
  }
  div.layout_style > div figure {
    width: 12rem;
    height: 16.5rem;
    grid-column: 2;
    grid-row: 1/3;
    justify-self: end;
  }
  div.layout_style > div:nth-child(even) section:first-child {
    grid-column: 2;
    grid-row: 1;
  }
  div.layout_style > div:nth-child(even) section:last-child {
    grid-column: 2;
    grid-row: 2;
  }
  div.layout_style > div:nth-child(even) figure {
    grid-column: 1;
    justify-self: start;
  }
  div.layout_style > div:last-child {
    display: flex;
    justify-content: space-between;
  }
  div.layout_style > div:last-child figure {
    width: 12rem;
    height: 16.5rem;
  }
  div.layout_style > div:last-child section h2 {
    margin-bottom: 1.6rem;
  }
  div.layout_style > div:last-child::before {
    top: 7.1rem;
  }
  .works::before {
    background-image: url(../img/works_bg_sp.webp);
  }
  .works article section {
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 3rem;
  }
  .works article section figure {
    width: 100%;
    height: 13rem;
  }
  .works article section dl {
    gap: 0.6rem;
    flex-direction: column-reverse;
  }
  .works article section dl dd ul {
    flex-wrap: nowrap;
    gap: 0.6rem;
  }
  .works article section dl dd ul li {
    width: calc((100% - 1.8rem) / 4);
    height: 5.3rem;
  }
  .popup_overlay {
    padding: 0 1rem;
  }
  .popup_overlay img {
    width: 100%;
    height: auto;
  }
  .company::before {
    background-image: url(../img/company_bg_sp.webp);
    background-position: center -4.5rem;
  }
  .company article {
    padding: 1rem 0;
  }
  .company article > p {
    padding: 0 1rem;
  }
  .company article > p:first-of-type {
    margin-bottom: 1rem;
  }
  .company article > picture {
    width: 100%;
    margin: 2rem 0 1rem 0;
  }
  .company article .company_profile {
    flex-direction: column;
    padding: 0 1rem;
  }
  .company article .company_profile dl div:last-child dd {
    padding-right: 0;
    padding-bottom: 0;
  }
  .company article .company_profile .company-map {
    width: 100%;
    height: 14rem;
  }
  .company article section {
    width: 100%;
    padding: 1.5rem 0 1rem;
  }
  .company article section h2 {
    padding: 0 1rem;
  }
  .company article section > p {
    padding: 0 1rem;
  }
  .company article section picture {
    width: 100%;
  }
  .company article section .btnArea {
    padding: 0 1rem;
  }
  .company article section .btnArea .group_link {
    width: 100%;
    justify-content: center;
  }
  .company article section .btnArea .group_link::before {
    width: 8.6rem;
    height: 1.3rem;
  }
  .recruit::before {
    background-image: url(../img/recruit_bg_sp.webp);
  }
  .recruit article {
    padding: 1rem 0;
  }
  .recruit article > picture {
    width: 100%;
  }
  .recruit article .recruit_message h2 {
    padding: 0 1rem;
  }
  .recruit article .recruit_message .message_txt {
    padding: 0 1rem;
  }
  .recruit article .recruit_message .message_txt p:first-of-type {
    margin-bottom: 1rem;
  }
  .recruit article .recruit_message ul {
    padding: 0 1rem;
    flex-wrap: wrap;
  }
  .recruit article .recruit_message figure {
    width: 100%;
    gap: 0.6rem;
  }
  .recruit article .recruit_guide {
    padding: 0 1rem;
  }
  .recruit article .recruit_guide dl div dt {
    width: 8rem;
  }
  .recruit article .recruit_guide dl div dd {
    padding: 1rem;
  }
  .contact::before {
    background-image: url(../img/contact_bg_sp.webp);
  }
  .contact article > p {
    text-align: left;
  }
  .contact article .flow ul {
    flex-direction: column;
    gap: 2rem;
  }
  .contact article .flow ul li::before {
    font-size: 2.8rem;
  }
  .contact article .flow ul::before {
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .contact article form dl div {
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 2rem;
  }
  .contact article form dl div dt {
    width: auto;
    margin-top: 0;
    height: auto;
  }
  .contact article form dl div dd {
    width: auto;
  }
  .contact article form > p {
    text-align: left;
  }
  .contact .contact_done article section p {
    text-align: justify;
  }
  .privacy_policy main {
    padding-top: 4rem;
  }
  .privacy_policy main h1 em {
    font-size: 3rem;
  }
  .privacy_policy main h1 span {
    margin-top: -1rem;
  }
  .privacy_policy main article {
    padding: 1rem;
  }
  .privacy_policy main article p, .privacy_policy main article section {
    margin-bottom: 1.5rem;
  }
}/*# sourceMappingURL=new_happiness.css.map */