@charset "UTF-8";
/* reset ///////////////////////////////////////////////////////////// */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-style: normal;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

ol, ul {
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: inherit;
}

/* base ///////////////////////////////////////////////////////////// */
*, *::after, *::before {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: "Arial", YuGothic, "Yu Gothic", Meiryo, sans-serif;
  font-size: 1.125rem;
  line-height: normal;
  letter-spacing: normal;
  color: #201F1F;
  margin: 0 auto;
}
@media screen and (max-width: 1500px) {
  body {
    font-size: 1.125rem;
  }
}

body * {
  line-height: 1.6;
  letter-spacing: normal;
}

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

table {
  border-collapse: collapse;
}

iframe {
  max-width: 100%;
}

.site-wrap {
  max-width: 1920px;
  overflow: hidden;
}

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

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

.color-red {
  color: #CE0505;
}

.font-bold {
  font-weight: bold;
}

/* header ///////////////////////////////////////////////////////////// */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.header_container {
  display: flex;
  align-items: center;
  gap: 3.125vw;
  background-color: #FFFFD8;
  border-radius: 0 0 0 20px;
  padding: 0 2.6041666667vw;
  margin-left: 10.4166666667vw;
}
@media screen and (max-width: 980px) {
  .header_container {
    border-radius: 0;
    margin-left: 0;
  }
}
.header_container.--top-color {
  background-color: rgba(255, 255, 216, 0.2);
}
.header_logo {
  flex: 1;
}
.header_logo a {
  display: flex;
  align-items: center;
  transition: 0.3s;
}
.header_logo a:hover {
  opacity: 0.8;
}
.header_logo img {
  width: 70px;
  height: 70px;
  margin-right: 16px;
}
@media screen and (max-width: 500px) {
  .header_logo img {
    width: 40px;
    height: 40px;
  }
}
.header_logo span {
  font-size: 1.875rem;
  font-weight: bold;
}
@media screen and (max-width: 1500px) {
  .header_logo span {
    font-size: 1.375rem;
  }
}

.hamburger-btn-wrapper {
  display: none;
}
@media screen and (max-width: 1200px) {
  .hamburger-btn-wrapper {
    display: block;
  }
}

.hamburger-btn {
  display: block;
  position: relative;
  width: 50px;
  height: 48px;
  margin-bottom: 1.0416666667vw;
  z-index: 1000;
}
.hamburger-btn > div {
  width: 30px;
  height: 4px;
  background: #201F1F;
  position: absolute;
  left: 10px;
  transition: all 0.2s;
}
.hamburger-btn > div:nth-of-type(1) {
  top: 10px;
}
.hamburger-btn > div:nth-of-type(2) {
  top: 22px;
}
.hamburger-btn > div:nth-of-type(3) {
  bottom: 10px;
}
.hamburger-btn.active > div:nth-of-type(1) {
  -webkit-transform: translateY(12px) rotate(-45deg);
          transform: translateY(12px) rotate(-45deg);
}
.hamburger-btn.active > div:nth-of-type(2) {
  opacity: 0;
}
.hamburger-btn.active > div:nth-of-type(3) {
  -webkit-transform: translateY(-12px) rotate(45deg);
          transform: translateY(-12px) rotate(45deg);
}

.hamburger-nav {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(0, -100%);
          transform: translate(0, -100%);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  width: 100%;
  height: 100vh;
  opacity: 0;
  transition: 0.2s;
}
.hamburger-nav_inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
.hamburger-nav_logo a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  margin-bottom: 8px;
}
.hamburger-nav_logo a img {
  width: 40px;
}
.hamburger-nav_logo a span {
  font-size: 18px;
  font-weight: bold;
}
.hamburger-nav_lists {
  text-align: center;
}
.hamburger-nav_lists li {
  margin-bottom: 8px;
}
.hamburger-nav_lists a {
  display: block;
  font-size: 14px;
  font-weight: bold;
  padding: 4px;
}
.hamburger-nav_contact {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 8px 8px;
}
.hamburger-nav_contact_txt {
  font-size: 15px;
  font-weight: bold;
}
.hamburger-nav_contact_img img {
  width: 40px;
  height: 26px;
}
.hamburger-nav.active {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.pc-nav {
  align-self: flex-end;
}
@media screen and (max-width: 1200px) {
  .pc-nav {
    display: none;
  }
}
.pc-nav_lists {
  display: flex;
  align-items: flex-end;
  gap: 2.34375vw;
}
.pc-nav_lists > li {
  position: relative;
  padding-bottom: 20px;
}
.pc-nav_lists > li:hover > .accent-1::before {
  opacity: 1;
}
.pc-nav_lists > li:hover .pc-nav_child-lists {
  visibility: visible;
}
.pc-nav_lists > li .accent-1 {
  position: relative;
}
.pc-nav_lists > li .accent-1::before {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-35%, -30%);
          transform: translate(-35%, -30%);
  content: "";
  background-color: #FFE033;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  opacity: 0;
  transition: 0.3s;
}
.pc-nav_lists a {
  position: relative;
  font-weight: bold;
}
.pc-nav_child-lists {
  position: absolute;
  top: 100%;
  left: 0;
  visibility: hidden;
  background-color: rgba(255, 255, 255, 0.6);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.7em 1.5em;
  transition: 0.3s;
}
.pc-nav_child-lists > li:not(:last-of-type) {
  margin-bottom: 8px;
}
.pc-nav_child-lists > li:hover > .accent-2::before {
  opacity: 1;
}
.pc-nav_child-lists > li .accent-2 {
  position: relative;
}
.pc-nav_child-lists > li .accent-2::before {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-60%, 0);
          transform: translate(-60%, 0);
  content: "";
  background-color: #FFE033;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  opacity: 0;
  transition: 0.3s;
}
.pc-nav_contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 8px 0;
}
@media screen and (max-width: 1200px) {
  .pc-nav_contact {
    display: none;
  }
}
.pc-nav_contact .tel {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pc-nav_contact .tel_txt {
  font-size: 1.125rem;
  font-weight: bold;
}
@media screen and (max-width: 1500px) {
  .pc-nav_contact .tel_txt {
    font-size: 1.125rem;
  }
}
.pc-nav_contact .tel_num {
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 1500px) {
  .pc-nav_contact .tel_num {
    font-size: 1.5rem;
  }
}
.pc-nav_contact .mail {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}
.pc-nav_contact .mail:hover {
  opacity: 0.8;
}
.pc-nav_contact .mail_txt {
  font-size: 1.625rem;
  font-weight: bold;
}
@media screen and (max-width: 1500px) {
  .pc-nav_contact .mail_txt {
    font-size: 1.5rem;
  }
}
.pc-nav_contact .mail img {
  width: 60px;
  height: 40px;
}

.container {
  max-width: calc(1000px + 60px);
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 auto;
}
@media screen and (max-width: 720px) {
  .container {
    max-width: calc(1000px + 40px);
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* common /////////////////////////////////////////////////////////////// */
.breadcrumb {
  max-width: calc(1000px + 60px);
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 auto;
  padding-top: 20px;
  margin-bottom: 75px;
}
@media screen and (max-width: 720px) {
  .breadcrumb {
    max-width: calc(1000px + 40px);
    padding-left: 20px;
    padding-right: 20px;
  }
}
.breadcrumb a[href] {
  transition: 0.3s;
}
.breadcrumb a[href]:hover {
  opacity: 0.7;
}

.ttl-style-1 {
  position: relative;
  border-radius: 50%;
  width: 270px;
  height: 270px;
}
@media screen and (max-width: 1500px) {
  .ttl-style-1 {
    width: 180px;
    height: 180px;
  }
}
.ttl-style-1.--bg-yellow {
  background-color: #FFFBE3;
}
.ttl-style-1.--bg-white {
  background-color: #fff;
}
.ttl-style-1.--center {
  margin: 0 auto;
}
.ttl-style-1_txt {
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.ttl-style-1_txt span {
  font-size: 3rem;
  font-weight: bold;
}
@media screen and (max-width: 1500px) {
  .ttl-style-1_txt span {
    font-size: 1.875rem;
  }
}

.ttl-style-2 {
  position: relative;
  background-color: #fff;
  border-radius: 50%;
  width: 270px;
  height: 270px;
}
.ttl-style-2_txt {
  white-space: nowrap;
  position: absolute;
  top: 20px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.ttl-style-2_txt span {
  font-size: 3rem;
  font-weight: bold;
}
@media screen and (max-width: 1500px) {
  .ttl-style-2_txt span {
    font-size: 1.625rem;
  }
}

.header-style-1 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.header-style-1 img {
  width: 50px;
  height: 50px;
}
.header-style-1_txt {
  font-size: 1.375rem;
  font-weight: bold;
}
@media screen and (max-width: 1500px) {
  .header-style-1_txt {
    font-size: 1.25rem;
  }
}
.header-style-1_txt.--color-white {
  color: white;
}

.table-style-1 {
  width: 100%;
  margin: 0 auto;
}
.table-style-1.--bg_blue > tbody > tr > th {
  background-color: #E5F2FE;
}
.table-style-1.--bg_gray > tbody > tr > th {
  background-color: #F3F3F3;
}
.table-style-1 > tbody > tr > th, .table-style-1 > tbody > tr > td {
  padding: 0.7em 1em;
  border-bottom: 1px solid #707070;
}
.table-style-1 > tbody > tr > th:first-of-type, .table-style-1 > tbody > tr > td:first-of-type {
  border-top: 1px solid #707070;
}
.table-style-1 > tbody > tr > th {
  text-align: start;
  font-weight: bold;
  white-space: nowrap;
}
.table-style-1 > tbody > tr > td > table th {
  text-align: start;
}
.table-style-1 > tbody > tr > td > table td {
  white-space: nowrap;
  padding-left: 1em;
}

.outside-left {
  margin-left: calc(50% - 50vw);
}

.outside-right {
  margin-right: calc(50% - 50vw);
}

.top-btn {
  position: fixed;
  bottom: 5%;
  right: 4%;
  width: 70px;
  height: 70px;
  cursor: pointer;
  z-index: 1;
  transition: 0.2s;
}
@media screen and (max-width: 500px) {
  .top-btn {
    width: 50px;
    height: 50px;
  }
}
.top-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(assets/img/common/to_top_off.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.top-btn:hover::before {
  opacity: 0;
}
.top-btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* フェードイン用css */
.fade-in {
  opacity: 0;
  transition-duration: 0.5s;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}

.fade-in-left {
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
}

.fade-in-right {
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
}

.fade-in-right2 {
  -webkit-transform: translate(-20%, 0);
          transform: translate(-20%, 0);
}

.fade-in-top {
  -webkit-transform: translate(0, 100px);
          transform: translate(0, 100px);
}

.scroll-in {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.top-fade-1 {
  -webkit-animation-name: fade1;
          animation-name: fade1;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}

@-webkit-keyframes fade1 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fade1 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.top-fade-2 {
  -webkit-animation-name: fade2;
          animation-name: fade2;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

@-webkit-keyframes fade2 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fade2 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.top-fade-3 {
  -webkit-animation-name: fade3;
          animation-name: fade3;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

@-webkit-keyframes fade3 {
  0% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fade3 {
  0% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* footer ///////////////////////////////////////////////////////////// */
.footer {
  padding-right: 11.4583333333vw;
}
@media screen and (max-width: 980px) {
  .footer {
    padding-right: 0;
  }
}
.footer_bg {
  background-image: url(./assets/img/common/footer.png);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 0 100px 0 0;
}
.footer_inner {
  padding: 70px 6.7708333333vw 40px;
}
@media screen and (max-width: 980px) {
  .footer_inner {
    padding: 30px 20px;
  }
}
.footer_content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
@media screen and (max-width: 980px) {
  .footer_content {
    margin-bottom: 8px;
  }
}
.footer_content_group2 {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
@media screen and (max-width: 980px) {
  .footer_content_group2 {
    display: none;
  }
}
.footer_content_address .name {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 8px;
}
@media screen and (max-width: 1500px) {
  .footer_content_address .name {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 980px) {
  .footer_content_address .name {
    margin-bottom: 0;
  }
}
.footer_content_address .address {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
@media screen and (max-width: 1500px) {
  .footer_content_address .address {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 980px) {
  .footer_content_address .address {
    margin-bottom: 0;
  }
}
.footer_content_address .tel {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 32px;
}
@media screen and (max-width: 1500px) {
  .footer_content_address .tel {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 980px) {
  .footer_content_address .tel {
    margin-bottom: 0;
  }
}
.footer_content_address .mail {
  transition: 0.3s;
}
.footer_content_address .mail:hover {
  opacity: 0.8;
}
.footer_content_address .mail img {
  width: 86px;
  height: 86px;
}
.footer_content_nav li {
  margin-bottom: 10px;
}
.footer_content_nav li a {
  transition: 0.3s;
}
.footer_content_nav li a:hover {
  opacity: 0.8;
}
.footer .copy {
  text-align: center;
}

/* page-index /////////////////////////////////////////////////////////////// */
body {
  position: relative;
}

.top-bg {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(#fff, 60%, #E7E7E7);
  width: 100%;
  height: 100%;
  z-index: -100;
}

.top-mv {
  position: relative;
  overflow: hidden;
}
.top-mv_img {
  width: 100%;
  height: 640px;
}
@media screen and (max-width: 720px) {
  .top-mv_img {
    display: none;
  }
}
.top-mv_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-mv_img-sp {
  display: none;
  width: 100%;
  height: 432px;
}
@media screen and (max-width: 720px) {
  .top-mv_img-sp {
    display: block;
  }
}
.top-mv_img-sp img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-mv_catch {
  position: absolute;
  bottom: 30px;
  left: 10%;
}
@media screen and (max-width: 720px) {
  .top-mv_catch {
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 50%);
            transform: translate(-50%, 50%);
  }
}
.top-mv_catch_circle-left {
  position: absolute;
  top: 22%;
  left: -15%;
  background-color: #FFF6C4;
  border-radius: 50%;
  width: 111px;
  height: 111px;
}
@media screen and (max-width: 720px) {
  .top-mv_catch_circle-left {
    top: -10%;
    left: -5%;
    width: 120px;
    height: 120px;
  }
}
.top-mv_catch_circle-right {
  position: absolute;
  top: 45%;
  right: -18%;
  background-color: #FFF6C4;
  border-radius: 50%;
  width: 151px;
  height: 151px;
}
@media screen and (max-width: 720px) {
  .top-mv_catch_circle-right {
    display: none;
  }
}
.top-mv_catch_circle {
  position: relative;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  width: 404px;
  height: 404px;
}
@media screen and (max-width: 720px) {
  .top-mv_catch_circle {
    width: 375px;
    height: 375px;
  }
}
.top-mv_catch_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-47%, -50%);
          transform: translate(-47%, -50%);
  font-size: 3.5rem;
  font-weight: bold;
  white-space: nowrap;
}
@media screen and (max-width: 1500px) {
  .top-mv_catch_txt {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 1200px) {
  .top-mv_catch_txt {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 1200px) and (max-width: 1500px) {
  .top-mv_catch_txt {
    font-size: 2.1875rem;
  }
}
@media screen and (max-width: 720px) {
  .top-mv_catch_txt {
    font-size: 3.5rem;
    top: 50%;
    -webkit-transform: translate(-47%, -110%);
            transform: translate(-47%, -110%);
  }
}
@media screen and (max-width: 720px) and (max-width: 1500px) {
  .top-mv_catch_txt {
    font-size: 2.1875rem;
  }
}
.top-mv_catch_txt .small {
  font-size: 2.875rem;
  font-weight: bold;
}
@media screen and (max-width: 1500px) {
  .top-mv_catch_txt .small {
    font-size: 2.875rem;
  }
}
@media screen and (max-width: 1200px) {
  .top-mv_catch_txt .small {
    font-size: 2.875rem;
  }
}
@media screen and (max-width: 1200px) and (max-width: 1500px) {
  .top-mv_catch_txt .small {
    font-size: 1.5625rem;
  }
}
.top-mv_catch_txt .spacing {
  font-weight: bold;
  letter-spacing: -4px;
}
.top-mv_recruit {
  position: absolute;
  bottom: 60px;
  right: 10%;
}
@media screen and (max-width: 720px) {
  .top-mv_recruit {
    display: none;
  }
}
.top-mv_recruit a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  background-color: #60B4FC;
  border-radius: 10px;
  padding: 1.6em 2em;
}
.top-mv_recruit a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #2D9EFA;
  border-radius: 10px;
  transition: all 0.4s ease-out;
  z-index: 0;
}
.top-mv_recruit a span {
  position: relative;
  font-size: 1.625rem;
  font-weight: bold;
  color: #fff;
  z-index: 1;
}
@media screen and (max-width: 1500px) {
  .top-mv_recruit a span {
    font-size: 1.25rem;
  }
}
.top-mv_recruit a img {
  position: relative;
  z-index: 1;
}
.top-mv_recruit a:hover::before {
  width: 100%;
}

.top-intro {
  padding-top: 30px;
  margin-bottom: 46px;
}
.top-intro p {
  font-size: 1.375rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1500px) {
  .top-intro p {
    font-size: 1.1875rem;
  }
}

.top-service {
  overflow: hidden;
  margin-bottom: 60px;
}
.top-service_box {
  margin-bottom: 100px;
}
@media screen and (max-width: 720px) {
  .top-service_box {
    display: none;
  }
}
.top-service_box_group {
  display: flex;
  justify-content: space-between;
  margin-top: -100px;
}
@media screen and (max-width: 1200px) {
  .top-service_box_group {
    justify-content: space-evenly;
  }
}
.top-service_box_group2 {
  display: flex;
  justify-content: center;
  margin-top: -280px;
}
@media screen and (max-width: 1200px) {
  .top-service_box_group2 {
    margin-top: 0;
  }
}
.top-service_box_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 360px;
}
.top-service_box_item:hover .top-service_box_item_img {
  opacity: 0.7;
}
@media screen and (max-width: 1200px) {
  .top-service_box_item {
    width: 310px;
  }
}
.top-service_box_item.--item-1 {
  position: relative;
}
.top-service_box_item.--item-1::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -45%);
          transform: translate(-50%, -45%);
  content: "";
  background-color: #FFFEF5;
  border-radius: 50%;
  width: 480px;
  height: 480px;
  z-index: -1;
}
.top-service_box_item.--item-2 {
  position: relative;
}
.top-service_box_item.--item-2::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -45%);
          transform: translate(-50%, -45%);
  content: "";
  background-color: #FFFEF5;
  border-radius: 50%;
  width: 480px;
  height: 480px;
  z-index: -1;
}
.top-service_box_item.--item-3 {
  position: relative;
}
.top-service_box_item.--item-3::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -43%);
          transform: translate(-50%, -43%);
  content: "";
  background-color: #FFFCDC;
  border-radius: 50%;
  width: 600px;
  height: 600px;
  z-index: -1;
}
.top-service_box_item_ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.top-service_box_item_ttl img {
  width: 70px;
  height: 70px;
}
.top-service_box_item_ttl span {
  font-size: 1.625rem;
  font-weight: bold;
}
@media screen and (max-width: 1500px) {
  .top-service_box_item_ttl span {
    font-size: 1.625rem;
  }
}
.top-service_box_item_img {
  margin-bottom: 16px;
  transition: 0.3s;
}
.top-service_box_item_txt {
  padding: 0 48px;
}
.top-service_box_item_txt.--wide {
  padding: 0 12px;
}
.top-service_box-sp {
  display: none;
  padding-top: 40px;
}
@media screen and (max-width: 720px) {
  .top-service_box-sp {
    display: block;
  }
}
.top-service_box-sp_item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 480px;
  margin-bottom: 40px;
}
.top-service_box-sp_item::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -45%);
          transform: translate(-50%, -45%);
  content: "";
  background-color: #FFFEF5;
  border-radius: 50%;
  width: 480px;
  height: 480px;
  z-index: -1;
}
.top-service_box-sp_item_ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.top-service_box-sp_item_ttl span {
  font-size: 1.625rem;
  font-weight: bold;
}
@media screen and (max-width: 1500px) {
  .top-service_box-sp_item_ttl span {
    font-size: 1.625rem;
  }
}
.top-service_box-sp_item_img {
  width: 200px;
  margin-bottom: 16px;
}
.top-service_box-sp_item_img img {
  width: 100%;
}
.top-service_box-sp_item_txt {
  max-width: 300px;
}

.top-accent {
  margin-bottom: 100px;
}
@media screen and (max-width: 720px) {
  .top-accent {
    display: none;
  }
}
.top-accent_img img {
  width: 100%;
}

.top-nav {
  margin-bottom: 100px;
}
.top-nav_box {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 720px) {
  .top-nav_box {
    display: none;
  }
}
.top-nav_box_group {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.top-nav_box_item {
  position: relative;
  transition: 0.3s;
}
.top-nav_box_item:hover {
  opacity: 0.8;
}
.top-nav_box_item_bg {
  position: relative;
  border: 6px solid #fff;
  border-radius: 0 50px 50px 0;
  border-left: none;
  width: 100%;
  height: 300px;
  z-index: -1;
}
.top-nav_box_item_contact {
  position: absolute;
  top: 120px;
  left: 50%;
}
@media screen and (max-width: 980px) {
  .top-nav_box_item_contact {
    left: 20%;
  }
}
.top-nav_box_item_contact .tel {
  display: flex;
  align-items: center;
  gap: 16px;
}
.top-nav_box_item_contact .tel span {
  font-weight: bold;
}
.top-nav_box_item_contact .tel span:last-of-type {
  font-size: 2.75rem;
}
@media screen and (max-width: 1500px) {
  .top-nav_box_item_contact .tel span:last-of-type {
    font-size: 1.875rem;
  }
}
.top-nav_box_item_contact .mail {
  display: flex;
  align-items: center;
  gap: 16px;
}
.top-nav_box_item_contact .mail span {
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 1500px) {
  .top-nav_box_item_contact .mail span {
    font-size: 1.5rem;
  }
}
.top-nav_box_item_desc {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-nav_box_item_desc::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-60%, -50%);
          transform: translate(-60%, -50%);
  background-color: #FFF6C4;
  border-radius: 50%;
  width: 123px;
  height: 123px;
  z-index: -1;
}
.top-nav_box_item.--item-1 {
  margin-top: 200px;
}
.top-nav_box_item.--item-2 {
  margin-top: 50px;
}
.top-nav_box_item_ttl.--ttl-1 {
  position: absolute;
  left: 40%;
  bottom: 80%;
}
@media screen and (max-width: 980px) {
  .top-nav_box_item_ttl.--ttl-1 {
    left: 20%;
  }
}
.top-nav_box_item_ttl.--ttl-2 {
  position: absolute;
  top: -80px;
  left: 40%;
}
@media screen and (max-width: 980px) {
  .top-nav_box_item_ttl.--ttl-2 {
    left: 20%;
  }
}
.top-nav_box_item_ttl.--ttl-3 {
  margin-top: -120px;
  margin-left: 100px;
}
.top-nav_box_item_ttl.--ttl-4 {
  position: absolute;
  top: 0;
  left: 22%;
  z-index: -1;
}
.top-nav_box_item_ttl.--ttl-4 + .top-nav_box_item_img {
  padding-top: 160px;
}
.top-nav_box_item_txt-1 {
  position: relative;
  font-size: 1.625rem;
  font-weight: bold;
  margin-bottom: 16px;
  margin-top: -30px;
  z-index: 1;
}
@media screen and (max-width: 1500px) {
  .top-nav_box_item_txt-1 {
    font-size: 1.375rem;
  }
}
.top-nav_box_item_txt-2 {
  position: relative;
  z-index: 1;
  padding-right: 20px;
}
.top-nav_box_item_txt-3 {
  font-size: 1.625rem;
  font-weight: bold;
  padding-top: 32px;
  margin-bottom: 16px;
}
@media screen and (max-width: 1500px) {
  .top-nav_box_item_txt-3 {
    font-size: 1.375rem;
  }
}
.top-nav_box_item_txt-4 {
  padding-right: 20px;
}
.top-nav_box-sp {
  display: none;
}
@media screen and (max-width: 720px) {
  .top-nav_box-sp {
    display: block;
  }
}
.top-nav_box-sp_item {
  position: relative;
  display: block;
  min-height: 270px;
}
.top-nav_box-sp_item.--item-1 {
  margin-bottom: 50px;
}
.top-nav_box-sp_item.--item-2 {
  padding-top: 68px;
  margin-bottom: 50px;
}
.top-nav_box-sp_item.--item-3 {
  padding-top: 100px;
  margin-bottom: 50px;
}
.top-nav_box-sp_item.--item-4 {
  padding-top: 60px;
  margin-bottom: 50px;
}
.top-nav_box-sp_item_img.--left {
  text-align: start;
}
.top-nav_box-sp_item_img.--right {
  text-align: end;
}
.top-nav_box-sp_item_img.--width img {
  width: 90%;
}
.top-nav_box-sp_item_ttl.--ttl-1 {
  position: absolute;
  top: 220px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.top-nav_box-sp_item_ttl.--ttl-2 {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: -1;
}
.top-nav_box-sp_item_ttl.--ttl-3 {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: -1;
}
.top-nav_box-sp_item_ttl.--ttl-4 {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: -1;
}
.top-nav_box-sp_item_txt {
  position: relative;
  z-index: 1;
}
.top-nav_box-sp_item_txt.--txt-1 {
  font-size: 1.625rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 8px;
}
@media screen and (max-width: 1500px) {
  .top-nav_box-sp_item_txt.--txt-1 {
    font-size: 1.375rem;
  }
}
.top-nav_box-sp_item_txt.--txt-2 {
  padding: 0 20px;
}
.top-nav_box-sp_item_txt.--txt-3 {
  font-size: 1.625rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 8px;
}
@media screen and (max-width: 1500px) {
  .top-nav_box-sp_item_txt.--txt-3 {
    font-size: 1.5625rem;
  }
}
.top-nav_box-sp_item_txt.--txt-4 {
  padding: 0 20px;
}
.top-nav_box-sp_item_bg {
  position: relative;
  border: 6px solid #fff;
  border-radius: 0 50px 50px 0;
  border-left: none;
  width: calc(100% - 20px);
  height: 229px;
  z-index: -1;
}
.top-nav_box-sp_item_contact {
  position: absolute;
  top: 110px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.top-nav_box-sp_item_contact .tel {
  display: flex;
  align-items: center;
  gap: 16px;
}
.top-nav_box-sp_item_contact .tel span {
  font-weight: bold;
}
.top-nav_box-sp_item_contact .tel span:last-of-type {
  font-size: 2.75rem;
}
@media screen and (max-width: 1500px) {
  .top-nav_box-sp_item_contact .tel span:last-of-type {
    font-size: 1.875rem;
  }
}
.top-nav_box-sp_item_contact .mail {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.top-nav_box-sp_item_contact .mail span {
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 1500px) {
  .top-nav_box-sp_item_contact .mail span {
    font-size: 1.5rem;
  }
}
.top-nav_box-sp_item_contact .mail img {
  width: 40px;
  height: 30px;
}
.top-nav_box-sp_item_desc {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -50px;
}
.top-nav_box-sp_item_desc::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  background-color: #FFF6C4;
  border-radius: 50%;
  width: 123px;
  height: 123px;
  z-index: -1;
}

.fade-accent {
  position: relative;
  z-index: -1;
}
@media screen and (max-width: 720px) {
  .fade-accent {
    display: none;
  }
}
.fade-accent::before {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.fade-accent.--accent-1::before {
  top: 100px;
  left: 0;
  background-color: #FFF6C4;
  width: 33px;
  height: 33px;
}
.fade-accent.--accent-2::before {
  top: 100px;
  left: 100%;
  background-color: #FEF1AB;
  width: 137px;
  height: 137px;
}
.fade-accent.--accent-3::before {
  left: 0;
  bottom: 50px;
  background-color: #FFFEF5;
  width: 97px;
  height: 97px;
}
.fade-accent.--accent-4::before {
  right: 50px;
  bottom: 50px;
  background-color: #FFFEF5;
  width: 62px;
  height: 62px;
}

/* page-home-use ///////////////////////////////////////////////////////////// */
.home-use-mv {
  position: relative;
}
.home-use-mv_bg {
  background-image: url(assets/img/home-use/homeuse_head.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 0 0 50px 0;
  height: 380px;
  margin-right: 4.1666666667vw;
}
@media screen and (max-width: 980px) {
  .home-use-mv_bg {
    height: 240px;
  }
}
.home-use-mv_header {
  max-width: calc(920px + 60px);
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 auto;
  padding-top: 190px;
}
@media screen and (max-width: 720px) {
  .home-use-mv_header {
    max-width: calc(920px + 40px);
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 980px) {
  .home-use-mv_header {
    padding-top: 100px;
  }
}

.home-use-intro {
  margin-bottom: 80px;
}
.home-use-intro_ttl {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
}
@media screen and (max-width: 1500px) {
  .home-use-intro_ttl {
    font-size: 1.5rem;
  }
}
.home-use-intro_content {
  display: flex;
  justify-content: space-between;
  gap: 114px;
  margin-bottom: 80px;
}
@media screen and (max-width: 980px) {
  .home-use-intro_content {
    flex-direction: column;
    gap: 20px;
  }
}
.home-use-intro_content_txt {
  line-height: 1.8;
  width: 70%;
}
@media screen and (max-width: 980px) {
  .home-use-intro_content_txt {
    width: 100%;
  }
}
.home-use-intro_content_img {
  width: 30%;
}
@media screen and (max-width: 980px) {
  .home-use-intro_content_img {
    text-align: end;
    width: 100%;
  }
}
.home-use-intro_content2 {
  position: relative;
}
.home-use-intro_content2_bg {
  background-image: url(assets/img/home-use/homeuse_02.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0 0 0 50px;
  height: 398px;
}
.home-use-intro_content2_txt-wrap {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background-color: rgba(255, 255, 255, 0.7);
  max-width: 761px;
  padding: 45px;
}
.home-use-intro_content2_ttl {
  font-size: 1.375rem;
  font-weight: bold;
}
@media screen and (max-width: 1500px) {
  .home-use-intro_content2_ttl {
    font-size: 1.1875rem;
  }
}

.home-use-socket {
  margin-bottom: 70px;
}
.home-use-socket_content {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 980px) {
  .home-use-socket_content {
    flex-direction: column;
  }
}
.home-use-socket_group {
  width: 60%;
}
@media screen and (max-width: 980px) {
  .home-use-socket_group {
    width: 100%;
  }
}
.home-use-socket_group_ttl-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
}
.home-use-socket_group_ttl {
  font-size: 1.625rem;
  font-weight: bold;
}
@media screen and (max-width: 1500px) {
  .home-use-socket_group_ttl {
    font-size: 1.375rem;
  }
}
.home-use-socket_group_txt {
  line-height: 1.8;
}
.home-use-socket_group2 {
  width: 40%;
}
@media screen and (max-width: 980px) {
  .home-use-socket_group2 {
    text-align: end;
    width: 100%;
  }
}

.home-use-example {
  margin-bottom: 70px;
}
.home-use-example_list {
  display: flex;
  gap: 36px;
}
@media screen and (max-width: 980px) {
  .home-use-example_list {
    gap: 16px;
    flex-wrap: wrap;
  }
}
.home-use-example_item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: 1px solid #707070;
  border-radius: 11px;
  padding: 25px 5px;
}
@media screen and (max-width: 980px) {
  .home-use-example_item {
    flex: initial;
    width: calc(50% - 8px);
    margin: 0 auto;
  }
}
.home-use-example_item_txt {
  font-size: 1.375rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1500px) {
  .home-use-example_item_txt {
    font-size: 1.1875rem;
  }
}

.home-use-voltage {
  margin-bottom: 70px;
}
.home-use-voltage_ttl-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
}
.home-use-voltage_ttl {
  font-size: 1.625rem;
  font-weight: bold;
}
@media screen and (max-width: 1500px) {
  .home-use-voltage_ttl {
    font-size: 1.375rem;
  }
}
.home-use-voltage_txt {
  line-height: 1.8;
}

.home-use-contact {
  margin-bottom: 100px;
}
.home-use-contact_circle {
  border: 1px solid #707070;
  border-radius: 50%;
  box-shadow: 8px 8px 0 #FFE033;
  width: 362px;
  max-width: 100%;
  margin: 0 auto;
}
.home-use-contact_circle_inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 0;
  padding: 8px;
  padding-top: 100%;
}
.home-use-contact_content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.home-use-contact_content img {
  margin-bottom: 16px;
}
.home-use-contact_content .txt2 {
  font-size: 1.625rem;
  font-weight: bold;
  margin-bottom: 8px;
}
@media screen and (max-width: 1500px) {
  .home-use-contact_content .txt2 {
    font-size: 1.375rem;
  }
}
.home-use-contact_content .txt3 {
  font-size: 1.625rem;
  font-weight: bold;
  margin-bottom: 8px;
}
@media screen and (max-width: 1500px) {
  .home-use-contact_content .txt3 {
    font-size: 1.375rem;
  }
}
.home-use-contact_content .txt4 {
  font-size: 1rem;
}
@media screen and (max-width: 1500px) {
  .home-use-contact_content .txt4 {
    font-size: 0.875rem;
  }
}

/* page-business ///////////////////////////////////////////////////////////// */
.business-mv {
  position: relative;
}
.business-mv_bg {
  background-image: url(assets/img/business-use/business_head.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 0 0 50px 0;
  height: 380px;
  margin-right: 4.1666666667vw;
}
@media screen and (max-width: 980px) {
  .business-mv_bg {
    height: 240px;
  }
}
.business-mv_header {
  max-width: calc(920px + 60px);
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 auto;
  padding-top: 190px;
}
@media screen and (max-width: 720px) {
  .business-mv_header {
    max-width: calc(920px + 40px);
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 980px) {
  .business-mv_header {
    padding-top: 100px;
  }
}

.business-intro {
  margin-bottom: 100px;
}
.business-intro_txt {
  text-align: center;
}

.business {
  margin-bottom: 100px;
}
.business_content {
  display: flex;
}
@media screen and (max-width: 980px) {
  .business_content {
    flex-direction: column;
  }
}
.business_content_group {
  flex: 1;
  display: flex;
  flex-direction: column;
  border: 1px solid #60B4FC;
  border-right: none;
  margin-bottom: -20px;
}
@media screen and (max-width: 980px) {
  .business_content_group {
    border-right: 1px solid #60B4FC;
    margin-bottom: 0;
  }
}
.business_content_group_item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.business_content_group_item:not(:last-of-type) {
  border-bottom: 1px solid #60B4FC;
}
.business_content_group_item.--padding {
  padding: 80px 60px;
}
@media screen and (max-width: 720px) {
  .business_content_group_item.--padding {
    padding: 30px;
  }
}
.business_content_group_item .facility-ttl {
  font-size: 1.625rem;
  font-weight: bold;
  margin-bottom: 6px;
}
@media screen and (max-width: 1500px) {
  .business_content_group_item .facility-ttl {
    font-size: 1.375rem;
  }
}
.business_content_group_item .facility-list {
  margin-bottom: 30px;
}
.business_content_group_item .facility-list li {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 3px;
}
.business_content_group_item .facility-list li::before {
  content: "▶︎";
  font-size: 10px;
  color: #60B4FC;
  margin-right: 0.5em;
}
.business_content_group_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.business_content_group2 {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid #60B4FC;
  margin-top: -30px;
}
@media screen and (max-width: 980px) {
  .business_content_group2 {
    margin-top: 0;
  }
}
.business_content_group2_item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.business_content_group2_item:not(:last-of-type) {
  border-bottom: 1px solid #60B4FC;
}
.business_content_group2_item.--padding {
  padding: 50px;
}
@media screen and (max-width: 720px) {
  .business_content_group2_item.--padding {
    padding: 30px;
  }
}
.business_content_group2_item .txt {
  font-size: 1.625rem;
  font-weight: bold;
}
@media screen and (max-width: 1500px) {
  .business_content_group2_item .txt {
    font-size: 1.375rem;
  }
}
.business_content_group2_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.business-imgs {
  display: flex;
  margin-bottom: 100px;
}
@media screen and (max-width: 720px) {
  .business-imgs {
    flex-direction: column;
  }
}
.business-imgs img {
  width: 33.3333333333%;
}
@media screen and (max-width: 720px) {
  .business-imgs img {
    width: 100%;
  }
}

/* page-about ///////////////////////////////////////////////////////////// */
.about-mv {
  margin-top: 120px;
}

.about-overview_header {
  margin-bottom: 45px;
}
.about-overview_table {
  max-width: 783px;
  margin-bottom: 45px;
}

.about-img {
  text-align: end;
  margin-bottom: 100px;
}
.about-img img {
  border-radius: 50px 0 0 0;
}

/* page-works ///////////////////////////////////////////////////////////// */
.works-mv {
  position: relative;
}
.works-mv_bg {
  background-image: url(assets/img/works/works_head.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 0 0 50px 0;
  height: 380px;
  margin-right: 4.1666666667vw;
}
@media screen and (max-width: 980px) {
  .works-mv_bg {
    height: 240px;
  }
}
.works-mv_header {
  max-width: calc(920px + 60px);
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 auto;
  padding-top: 190px;
}
@media screen and (max-width: 720px) {
  .works-mv_header {
    max-width: calc(920px + 40px);
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 980px) {
  .works-mv_header {
    padding-top: 100px;
  }
}

.works-public {
  margin-bottom: 24px;
}
.works-public_header {
  margin-bottom: 45px;
}
.works-public_content {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 980px) {
  .works-public_content {
    flex-direction: column;
    margin-right: 0;
  }
}
.works-public_table {
  max-width: 783px;
  margin-bottom: 45px;
}
.works-public_img {
  max-width: 535px;
  margin-top: -150px;
}
@media screen and (max-width: 980px) {
  .works-public_img {
    margin-top: 0;
  }
}
.works-public_img_cap {
  line-height: 1.2;
}
.works-public_img_cap span {
  font-weight: bold;
}

.works-media {
  margin-bottom: 80px;
}
.works-media_content {
  display: flex;
  gap: 4px;
}
@media screen and (max-width: 720px) {
  .works-media_content {
    flex-direction: column;
    gap: 24px;
  }
}
.works-media_item {
  flex: 1;
}
.works-media_item_img {
  margin-bottom: 8px;
}
.works-media_item_img img {
  width: 100%;
}
.works-media_item_ttl {
  font-weight: bold;
  padding: 0 16px;
  margin-bottom: 4px;
}
.works-media_item_txt {
  font-size: 1rem;
  padding: 0 16px;
}
@media screen and (max-width: 1500px) {
  .works-media_item_txt {
    font-size: 0.875rem;
  }
}

.works-private {
  margin-bottom: 100px;
}
.works-private_content {
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 720px) {
  .works-private_content {
    flex-direction: column;
    gap: 24px;
  }
}
.works-private_item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #60B4FC;
  padding: 16px;
}
.works-private_item_ttl {
  font-weight: bold;
  margin-bottom: 8px;
}
.works-private_item_img {
  margin-bottom: 8px;
}
.works-private_item_txt span {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 1500px) {
  .works-private_item_txt span {
    font-size: 1.75rem;
  }
}

/* page-recruit ///////////////////////////////////////////////////////////// */
.recruit-mv {
  position: relative;
}
.recruit-mv_bg {
  background-image: url(assets/img/recruit/recruit_head.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 0 0 50px 0;
  height: 380px;
  margin-right: 4.1666666667vw;
}
@media screen and (max-width: 980px) {
  .recruit-mv_bg {
    height: 240px;
  }
}
.recruit-mv_header {
  max-width: calc(920px + 60px);
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 auto;
  padding-top: 190px;
}
@media screen and (max-width: 720px) {
  .recruit-mv_header {
    max-width: calc(920px + 40px);
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 980px) {
  .recruit-mv_header {
    padding-top: 100px;
  }
}
.recruit-mv_illust {
  position: absolute;
  left: 40%;
  bottom: 0;
  -webkit-transform: translate(0, 40%);
          transform: translate(0, 40%);
}

.recruit-intro {
  margin-bottom: 80px;
}
.recruit-intro_ttl {
  font-size: 1.625rem;
  font-weight: bold;
  margin-bottom: 16px;
}
@media screen and (max-width: 1500px) {
  .recruit-intro_ttl {
    font-size: 1.375rem;
  }
}
.recruit-intro_txt {
  line-height: 1.8;
}

.recruit-requirements {
  margin-bottom: 24px;
}
.recruit-requirements_header {
  margin-bottom: 20px;
}
.recruit-requirements .labels {
  margin-bottom: 28px;
}
.recruit-requirements .labels .label {
  display: inline-block;
  color: #fff;
  background-color: #1B92F8;
  padding: 0 16px;
}
.recruit-requirements_content {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
}
@media screen and (max-width: 980px) {
  .recruit-requirements_content {
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }
}
.recruit-requirements_table {
  max-width: 783px;
  margin-bottom: 45px;
}
.recruit-requirements_img.--right {
  text-align: right;
}
.recruit-requirements_img.--right img {
  border-radius: 0 0 0 50px;
}
.recruit-requirements_img.--left img {
  border-radius: 0 50px 0 0;
}

.recruit-contact {
  padding-top: 50px;
  margin-bottom: 100px;
}
.recruit-contact_content {
  text-align: center;
  border: 1px solid #60B4FC;
  max-width: 460px;
  padding: 0 16px 16px 16px;
  margin: 0 auto;
}
.recruit-contact_content .ttl {
  font-weight: bold;
  border: 1px solid #60B4FC;
  background-color: #fff;
  padding: 8px 16px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.recruit-contact_content .txt {
  font-weight: bold;
}
.recruit-contact_content .txt2 {
  font-weight: bold;
}
.recruit-contact_content .txt2 span {
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 1500px) {
  .recruit-contact_content .txt2 span {
    font-size: 1.5rem;
  }
}
.recruit-contact_content .txt3 span {
  font-weight: bold;
}

/* page-works ///////////////////////////////////////////////////////////// */
.work-mv {
  position: relative;
}
.work-mv_bg {
  background-image: url(assets/img/work/work_head.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  border-radius: 0 0 50px 0;
  height: 500px;
  margin-right: 23.9583333333vw;
}
@media screen and (max-width: 980px) {
  .work-mv_bg {
    height: 240px;
  }
}
.work-mv_header {
  max-width: calc(540px + 60px);
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 auto;
  padding-top: 250px;
}
@media screen and (max-width: 720px) {
  .work-mv_header {
    max-width: calc(540px + 40px);
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 980px) {
  .work-mv_header {
    padding-top: 100px;
  }
}

.work-intro {
  margin-bottom: 70px;
}
.work-intro_ttl {
  font-size: 1.625rem;
  font-weight: bold;
  margin-bottom: 16px;
}
@media screen and (max-width: 1500px) {
  .work-intro_ttl {
    font-size: 1.375rem;
  }
}
.work-intro_txt {
  line-height: 1.8;
}

.work-interview {
  margin-bottom: 100px;
}
.work-interview_box + .work-interview_block {
  padding-top: 60px;
}
.work-interview_box + .work-interview_box {
  padding-top: 60px;
}
.work-interview_box::after {
  content: "";
  display: block;
  clear: both;
}
.work-interview_box_item.float-left {
  float: left;
  margin-right: 60px;
  margin-bottom: 30px;
}
@media screen and (max-width: 720px) {
  .work-interview_box_item.float-left {
    float: none;
  }
}
.work-interview_box_item.float-right {
  float: right;
  margin-left: 60px;
  margin-bottom: 30px;
}
@media screen and (max-width: 720px) {
  .work-interview_box_item.float-right {
    float: none;
  }
}
.work-interview_block {
  display: flex;
  gap: 35px;
}
@media screen and (max-width: 720px) {
  .work-interview_block {
    flex-direction: column;
  }
}
.work-interview_block + .work-interview_block {
  padding-top: 60px;
}
.work-interview_block + .work-interview_box {
  padding-top: 60px;
}
.work-interview_block + .work-interview_txt {
  padding-top: 60px;
}
@media screen and (max-width: 720px) {
  .work-interview_circle {
    display: flex;
  }
}
.work-interview_circle .txt {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.625rem;
  font-weight: bold;
  height: 122px;
  min-width: 122px;
}
@media screen and (max-width: 1500px) {
  .work-interview_circle .txt {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 720px) {
  .work-interview_circle .txt {
    height: 90px;
    min-width: 90px;
  }
}
.work-interview_circle .txt.--bg-blue {
  color: #fff;
}
.work-interview_circle .txt.--bg-blue::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "";
  width: 122px;
  height: 122px;
  border: 2px solid #60B4FC;
  border-radius: 50%;
  background-color: #60B4FC;
  z-index: -1;
}
@media screen and (max-width: 720px) {
  .work-interview_circle .txt.--bg-blue::before {
    width: 90px;
    height: 90px;
  }
}
.work-interview_circle .txt.--bg-white::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "";
  width: 122px;
  height: 122px;
  border: 2px solid #60B4FC;
  border-radius: 50%;
  background-color: #fff;
  z-index: -1;
}
@media screen and (max-width: 720px) {
  .work-interview_circle .txt.--bg-white::before {
    width: 90px;
    height: 90px;
  }
}
.work-interview_circle .txt.--bg-white2 {
  padding-left: 1.5em;
}
@media screen and (max-width: 720px) {
  .work-interview_circle .txt.--bg-white2 {
    padding-left: 0.5em;
  }
}
.work-interview_circle .txt.--bg-white2::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-85%, -50%);
          transform: translate(-85%, -50%);
  content: "";
  width: 122px;
  height: 122px;
  border: 2px solid #60B4FC;
  border-radius: 50%;
  background-color: #fff;
  z-index: -1;
}
@media screen and (max-width: 1500px) {
  .work-interview_circle .txt.--bg-white2::before {
    -webkit-transform: translate(-75%, -50%);
            transform: translate(-75%, -50%);
  }
}
@media screen and (max-width: 720px) {
  .work-interview_circle .txt.--bg-white2::before {
    width: 90px;
    height: 90px;
    -webkit-transform: translate(-100%, -50%);
            transform: translate(-100%, -50%);
  }
}
.work-interview_txt {
  flex: 1;
}
.work-interview_txt + .work-interview_block {
  padding-top: 60px;
}
.work-interview_txt .txt {
  line-height: 1.8;
}
.work-interview_txt .txt.--bold {
  font-size: 1.625rem;
  font-weight: bold;
}
@media screen and (max-width: 1500px) {
  .work-interview_txt .txt.--bold {
    font-size: 1.375rem;
  }
}
.work-interview_txt .txt + .txt {
  padding-top: 16px;
}
.work-interview_img {
  width: 33.59375vw;
}
@media screen and (max-width: 720px) {
  .work-interview_img {
    width: 100%;
  }
}
.work-interview_img.--left {
  border-radius: 0 0 50px 0;
}
.work-interview_img.--right {
  border-radius: 0 0 0 50px;
}

.work-flow {
  margin-bottom: 80px;
}
.work-flow_ttl {
  font-size: 1.375rem;
  font-weight: bold;
  margin-bottom: 60px;
}
@media screen and (max-width: 1500px) {
  .work-flow_ttl {
    font-size: 1.1875rem;
  }
}
.work-flow_block {
  position: relative;
  border: 1px solid #60B4FC;
}
.work-flow_block:not(:last-of-type) {
  margin-bottom: 40px;
}
.work-flow_block:not(:last-of-type)::after {
  position: absolute;
  top: 100%;
  left: 36px;
  content: "";
  display: block;
  background-color: #1B92F8;
  width: 2px;
  height: 40px;
}
.work-flow_block:not(:last-of-type) .work-flow_block_inner {
  border-left: 2px solid #1B92F8;
}
.work-flow_block_inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 24px;
  margin-left: 36px;
}
@media screen and (max-width: 1500px) {
  .work-flow_block_inner {
    gap: 16px;
  }
}
@media screen and (max-width: 720px) {
  .work-flow_block_inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.work-flow_block .num {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(12px, -50%);
          transform: translate(12px, -50%);
  align-self: flex-start;
}
.work-flow_block .num span {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.625rem;
  font-weight: bold;
  color: #fff;
  background-color: #1B92F8;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 1500px) {
  .work-flow_block .num span {
    font-size: 1.375rem;
  }
}
.work-flow_block .ttl {
  font-size: 1.375rem;
  font-weight: bold;
  width: 180px;
  padding: 24px 0;
}
@media screen and (max-width: 1500px) {
  .work-flow_block .ttl {
    font-size: 1.1875rem;
  }
}
@media screen and (max-width: 720px) {
  .work-flow_block .ttl {
    padding: 24px 0 0;
  }
}
.work-flow_block .txt {
  flex: 1;
  padding: 24px 0;
}
@media screen and (max-width: 720px) {
  .work-flow_block .txt {
    padding: 0 0 24px;
  }
}

.work-inspection {
  margin-bottom: 100px;
}
.work-inspection_content {
  display: flex;
  gap: 20px;
  background-color: #E5F2FE;
  padding: 20px;
}
@media screen and (max-width: 720px) {
  .work-inspection_content {
    flex-direction: column;
  }
}
.work-inspection_img {
  width: 42%;
}
.work-inspection_img img {
  width: 100%;
}
@media screen and (max-width: 720px) {
  .work-inspection_img {
    width: 100%;
  }
}
.work-inspection_txt {
  width: 58%;
}
@media screen and (max-width: 720px) {
  .work-inspection_txt {
    width: 100%;
  }
}
.work-inspection_txt .ttl {
  font-size: 1.375rem;
  font-weight: bold;
  margin-bottom: 8px;
}
@media screen and (max-width: 1500px) {
  .work-inspection_txt .ttl {
    font-size: 1.1875rem;
  }
}
.work-inspection_txt .txt {
  line-height: 1.8;
}

/* page-contact /////////////////////////////////////////////////////////////// */
.form {
  max-width: 590px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 720px) {
  .form {
    max-width: 400px;
  }
}
.form-item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.form-item.--msg {
  margin-bottom: 90px;
}
.form-item-label {
  flex: 1;
}
@media screen and (max-width: 720px) {
  .form-item-label {
    flex: initial;
    width: 100%;
    max-width: 400px;
  }
}
.form-item-label.--msg {
  align-self: flex-start;
  padding-top: 4px;
}
.form-item-input {
  width: 100%;
  max-width: 400px;
  padding: 4px 8px;
}
.form-item-textarea {
  width: 100%;
  height: 224px;
  max-width: 400px;
  padding: 4px 8px;
}
.form-btn {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  display: block;
  font-size: 1.125rem;
  color: #201F1F;
  border: 1px solid #201F1F;
  border-radius: 10px;
  background-color: #fff;
  width: 180px;
  padding: 8px 40px;
  margin: 0 auto;
  transition: 0.3s;
}
@media screen and (max-width: 1500px) {
  .form-btn {
    font-size: 1.125rem;
  }
}
.form-btn:hover {
  opacity: 0.7;
}/*# sourceMappingURL=style.css.map */