:root {
  --main-color: #D2382B;
  --accent-color: #068998;
  --text-color: #0F0F0F;
  --gray-color: #F2F0EE;
  --lightgrey-color: #FCFAF9;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
@media screen and (max-width: 479px) {
  html {
    font-size: 14px;
  }
}
html * {
  box-sizing: border-box;
}

:target {
  scroll-margin-top: var(--headerHeight, 120px);
}
@media screen and (max-width: 991px) {
  :target {
    scroll-margin-top: var(--headerHeight, 45px);
  }
}

body {
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-color);
  margin: 0;
  padding: 0;
}
body.open-menu {
  overflow: hidden;
}

body:has(form[data-screen=input]) .contact-flow-block li:nth-child(1) span,
body:has(form[data-screen=invalid]) .contact-flow-block li:nth-child(1) span,
body:has(form[data-screen=back]) .contact-flow-block li:nth-child(1) span,
body:has(form[data-screen=confirm]) .contact-flow-block li:nth-child(2) span,
body:has(form[data-screen=complete]) .contact-flow-block li:nth-child(3) span {
  color: var(--main-color) !important;
}

body:has(form[data-screen=input]) .contact-flow-block li:nth-child(1) span::after,
body:has(form[data-screen=invalid]) .contact-flow-block li:nth-child(1) span::after,
body:has(form[data-screen=back]) .contact-flow-block li:nth-child(1) span::after,
body:has(form[data-screen=confirm]) .contact-flow-block li:nth-child(2) span::after,
body:has(form[data-screen=complete]) .contact-flow-block li:nth-child(3) span::after {
  background-color: var(--text-color);
}

body:has(form[data-screen=confirm]) .inout-wrapper .label {
  padding-top: 0 !important;
}

body:has(form[data-screen=confirm]) .input-type,
body:has(form[data-screen=confirm]) .input-inner .wp-block-list {
  display: none !important;
}

body:has(form[data-screen=confirm]) .smf-item__col .policy {
  visibility: hidden;
  margin: 1rem;
}

body:has(form[data-screen=confirm]) .smf-action {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  body:has(form[data-screen=confirm]) .smf-action {
    justify-content: center;
  }
}

body:has(form[data-screen=confirm]) .smf-action .smf-button-control__control {
  width: 150px !important;
  align-items: center !important;
  justify-content: center !important;
  padding-right: 1rem !important;
  background-image: none !important;
}

body:has(form[data-screen=confirm]) .inout-wrapper .input .input-inner {
  padding: 0 !important;
  background-color: transparent !important;
  border: none !important;
  font-size: 1rem !important;
}

.en-text {
  font-family: "Inter Tight", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h1,
h2,
h3 {
  font-weight: 600;
}

ul,
ol,
dl,
dt,
dd {
  margin: 0;
}

p {
  margin-top: 0;
}

address {
  font-style: normal;
}

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

.is-for-tb {
  display: none;
}
@media screen and (max-width: 767px) {
  .is-for-tb {
    display: block !important;
  }
}

.is-for-sp {
  display: none !important;
}
@media screen and (max-width: 479px) {
  .is-for-sp {
    display: block !important;
  }
}

.is-no-sp {
  display: block !important;
}
@media screen and (max-width: 479px) {
  .is-no-sp {
    display: none !important;
  }
}

main {
  padding: 0 0 9.375rem;
}
@media screen and (max-width: 991px) {
  main {
    padding: 0 0 7.5rem;
  }
}
@media screen and (max-width: 767px) {
  main {
    padding: 0 0 5.625rem;
  }
}
@media screen and (max-width: 479px) {
  main {
    padding: 0 0 4.6875rem;
  }
}

section {
  content-visibility: auto;
}

.container {
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
@media screen and (max-width: 1280px) {
  .container {
    width: 100%;
    max-width: none;
  }
}
.container.is-navbar {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0 2.78% 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  .container.is-navbar {
    padding: 0 3.125% 0;
  }
}
@media screen and (max-width: 479px) {
  .container.is-navbar {
    padding: 0 5% 0;
  }
}
@media screen and (max-width: 1280px) {
  .container {
    max-width: none;
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media screen and (max-width: 767px) {
  .container {
    padding-left: 5%;
    padding-right: 5%;
  }
}

#header {
  width: 100%;
  height: 120px;
  background-color: rgba(255, 255, 255, 0.6);
  display: flex;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
  padding-top: 25px;
}
@media screen and (max-width: 767px) {
  #header {
    height: 82.5px;
    padding-top: 30px;
  }
}
@media screen and (max-width: 479px) {
  #header {
    height: 64.009px;
    padding-top: 10px;
  }
}
#header .site-top {
  transition: 0.3s;
}
#header .site-top.hide {
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
#header .navbar_site-id {
  width: 240px;
  height: 29px;
  display: block;
  position: relative;
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  #header .navbar_site-id {
    width: 180px;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #header .navbar_site-id {
    width: 132px;
  }
}
#header .site-top2 {
  width: 100%;
  height: 150px;
  max-width: none;
  margin: 0 auto;
  padding: 0 2.78% 0;
  display: flex;
  position: fixed;
  top: 0;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  #header .site-top2 {
    padding: 0 3.125% 0;
  }
}
@media screen and (max-width: 767px) {
  #header .site-top2 {
    height: 112px;
    padding: 0 3.125% 0;
  }
}
@media screen and (max-width: 479px) {
  #header .site-top2 {
    height: 74px;
    padding: 0 5% 0;
  }
}
#header .navbar_menu-button_wrapper {
  position: fixed;
  top: 2.5rem;
  right: 2.5rem;
  width: 70px;
  height: 70px;
  background-color: #000;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;
}
@media (any-hover: hover) {
  #header .navbar_menu-button_wrapper:hover {
    background-color: var(--main-color);
  }
}
@media screen and (max-width: 767px) {
  #header .navbar_menu-button_wrapper {
    top: 1.875rem;
    right: 1.875rem;
    width: 52.5px;
    height: 52.5px;
  }
}
@media screen and (max-width: 479px) {
  #header .navbar_menu-button_wrapper {
    top: 1.3215rem;
    right: 1.3215rem;
    width: 37.002px;
    height: 37.002px;
  }
}
#header .navbar_menu-button {
  cursor: pointer;
  display: block;
  width: 32px;
  height: 32px;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  #header .navbar_menu-button {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 479px) {
  #header .navbar_menu-button {
    width: 16.9152px;
    height: 16.9152px;
  }
}
#header .navbar_menu-button div {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
}
@media screen and (max-width: 767px) {
  #header .navbar_menu-button div {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 479px) {
  #header .navbar_menu-button div {
    width: 16.9152px;
    height: 16.9152px;
  }
}
#header .navbar_menu-button span {
  display: block;
  height: 2px;
  background: #FFF;
  position: absolute;
  width: 100%;
  left: 0;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
#header .navbar_menu-button span:nth-child(1) {
  top: 10px;
}
@media screen and (max-width: 767px) {
  #header .navbar_menu-button span:nth-child(1) {
    top: 7.5px;
  }
}
@media screen and (max-width: 479px) {
  #header .navbar_menu-button span:nth-child(1) {
    top: 5.286px;
  }
}
#header .navbar_menu-button span:nth-child(2) {
  top: 20px;
}
@media screen and (max-width: 767px) {
  #header .navbar_menu-button span:nth-child(2) {
    top: 15px;
  }
}
@media screen and (max-width: 479px) {
  #header .navbar_menu-button span:nth-child(2) {
    top: 10.572px;
  }
}
#header.open .navbar_menu-button span:nth-child(1) {
  top: 15px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
}
@media screen and (max-width: 767px) {
  #header.open .navbar_menu-button span:nth-child(1) {
    top: 11.25px;
  }
}
@media screen and (max-width: 479px) {
  #header.open .navbar_menu-button span:nth-child(1) {
    top: 7.929px;
  }
}
#header.open .navbar_menu-button span:nth-child(2) {
  top: 15px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
@media screen and (max-width: 767px) {
  #header.open .navbar_menu-button span:nth-child(2) {
    top: 11.25px;
  }
}
@media screen and (max-width: 479px) {
  #header.open .navbar_menu-button span:nth-child(2) {
    top: 7.929px;
  }
}
#header .navbar_menu {
  display: none;
  position: absolute;
  top: 100px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: var(--gray-color);
  z-index: 999;
  overflow: scroll;
}
#header .navbar_menu .navbar_menu-inner {
  padding: 120px 112px;
  margin: 0 auto;
  width: 75rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1280px) {
  #header .navbar_menu .navbar_menu-inner {
    width: 100%;
    padding: 120px 3.125%;
  }
}
@media screen and (max-width: 991px) {
  #header .navbar_menu .navbar_menu-inner {
    width: 100%;
    padding: 120px 3.125%;
  }
}
@media screen and (max-width: 767px) {
  #header .navbar_menu .navbar_menu-inner {
    flex-direction: column;
    width: 100%;
  }
}
@media screen and (max-width: 479px) {
  #header .navbar_menu .navbar_menu-inner {
    padding: 90px 11.63%;
    flex-direction: column;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #header .navbar_menu .navbar_item.is-trigger {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  #header .navbar_menu .navbar_item.is-trigger span {
    display: flex;
    justify-content: flex-start;
  }
  #header .navbar_menu .navbar_item.is-trigger span::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 1px solid #7B7A79;
    border-right: 1px solid #7B7A79;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    margin-left: auto;
    margin-right: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  #header .navbar_menu .navbar_item.is-trigger.open span::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: 0.5rem;
  }
}
#header .navbar_menu .navbar_item span,
#header .navbar_menu .navbar_item a {
  width: 309px;
  height: 40px;
  background-color: #FFF;
  display: flex;
  align-items: center;
  font-family: "Zen Kaku Gothic New";
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.14em;
  padding: 0 1rem;
  margin-bottom: 10px;
  transition: 0.2s;
}
@media screen and (max-width: 1280px) {
  #header .navbar_menu .navbar_item span,
  #header .navbar_menu .navbar_item a {
    width: 29.5vw;
  }
}
@media screen and (max-width: 991px) {
  #header .navbar_menu .navbar_item span,
  #header .navbar_menu .navbar_item a {
    width: 29.5vw;
    padding: 0 0.5rem 0 1rem;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 767px) {
  #header .navbar_menu .navbar_item span,
  #header .navbar_menu .navbar_item a {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 479px) {
  #header .navbar_menu .navbar_item span,
  #header .navbar_menu .navbar_item a {
    width: 100%;
  }
}
#header .navbar_menu .navbar_item span::before,
#header .navbar_menu .navbar_item a::before {
  content: "";
  background-color: #231815;
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 0.5rem;
}
@media (any-hover: hover) {
  #header .navbar_menu .navbar_item a:hover {
    color: #FFF;
    background-color: var(--main-color);
  }
  #header .navbar_menu .navbar_item a:hover::before {
    background-color: #FFF;
  }
}
#header .navbar_menu .navbar_item .navbar_link {
  text-decoration: none;
  color: var(--text-color);
  position: relative;
  transition: 0.2s;
}
#header .navbar_menu .navbar_item .navbar_link::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  bottom: -5px;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.5s;
}
@media (any-hover: hover) {
  #header .navbar_menu .navbar_item .navbar_link:hover::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}
@media screen and (max-width: 767px) {
  #header .navbar_menu .navbar_item-sub {
    display: none;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
  #header .navbar_menu .navbar_item-sub.active {
    display: block;
  }
}
@media screen and (max-width: 479px) {
  #header .navbar_menu .navbar_item-sub {
    width: 100%;
  }
}
#header .navbar_menu .navbar_item-list {
  padding: 0;
  list-style: none;
}
#header .navbar_menu .navbar_item-sub-list {
  padding-left: 1.75rem;
  margin-top: 20px;
  font-weight: 400;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  #header .navbar_menu .navbar_item-sub-list {
    margin-top: 0.75rem;
    padding-bottom: 1rem;
  }
}
#header .navbar_menu .navbar_item-sub-list li {
  margin-bottom: 0.5rem;
}
#header .navbar_menu .navbar_item-sub-list .navbar_link {
  color: var(--text-color);
}
@media (any-hover: hover) {
  #header .navbar_menu .navbar_item-sub-list .navbar_link:hover {
    text-decoration: none;
    color: var(--accent-color);
  }
}

.banners {
  padding: 80px 0 20px;
}
.banners .container.is-banner {
  width: 100%;
  max-width: 1400px;
  max-width: none;
  padding: 0 2.78%;
  display: flex;
  justify-content: space-between;
  gap: 21px;
}
@media screen and (max-width: 640px) {
  .banners .container.is-banner {
    flex-direction: column;
  }
}
.banners a {
  text-decoration: none;
  color: var(--text-color);
}
.banners .banner-title {
  color: #000;
  font-size: 1.875rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .banners .banner-title {
    font-size: 1.6875rem;
    letter-spacing: 0.04em;
  }
}
@media screen and (max-width: 991px) {
  .banners .banner-title {
    font-size: 1.40625rem;
  }
}
.banners .banner-title span {
  color: #d2382b;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  margin-bottom: 0.75rem;
  display: block;
}
.banners .recruit-banner {
  border: 1.5px solid #0f0f0f;
  width: 50%;
}
@media screen and (max-width: 640px) {
  .banners .recruit-banner {
    width: 100%;
  }
}
.banners .recruit-banner a {
  display: block;
  padding: 1.74vw 2.92vw 1.74vw 4.51vw;
  position: relative;
  height: 100%;
}
@media screen and (max-width: 991px) {
  .banners .recruit-banner a {
    padding: 4vw;
  }
}
@media screen and (max-width: 640px) {
  .banners .recruit-banner a {
    padding-top: 2vw;
  }
}
.banners .recruit-banner a::after {
  content: "";
  width: 40px;
  height: 40px;
  background-image: url(../images/common/arrow-pagetop.svg);
  background-size: cover;
  transition: 0.3s;
  transform: rotate(90deg);
  display: block;
  position: absolute;
  right: 2.5vw;
  bottom: 1.74vw;
}
@media screen and (max-width: 479px) {
  .banners .recruit-banner a::after {
    width: 30px;
    height: 30px;
  }
}
@media (any-hover: hover) {
  .banners .recruit-banner a:hover::after {
    background-image: url(../images/common/arrow-pagetop-on.svg);
    transition: 0.3s;
  }
}
.banners .recruit-banner .banner-title::after {
  content: "";
  height: 1.5px;
  width: 248px;
  background-color: var(--text-color);
  display: block;
  margin: 10px 0 5px;
}
@media screen and (max-width: 767px) {
  .banners .recruit-banner .banner-title::after {
    width: 100%;
  }
}
.banners .recruit-banner p {
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.375;
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .banners .recruit-banner p {
    line-height: 1.9;
  }
}
@media screen and (max-width: 991px) {
  .banners .recruit-banner p {
    font-size: 0.8rem;
  }
}
.banners .contact-banner {
  border: 1.5px solid #0f0f0f;
  width: 50%;
  padding: 3.89vw 2.5vw 3.89vw 3.125vw;
}
@media screen and (max-width: 991px) {
  .banners .contact-banner {
    padding: 4vw;
  }
}
@media screen and (max-width: 640px) {
  .banners .contact-banner {
    padding-top: 2vw;
    width: 100%;
  }
}
.banners .contact-banner .banner-title {
  margin-top: -1rem;
}
@media screen and (max-width: 991px) {
  .banners .contact-banner .banner-title {
    margin-bottom: 1rem;
    margin-top: 0;
  }
}
.banners .contact-banner .contact-wrpper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .banners .contact-banner .contact-wrpper {
    flex-direction: column;
    align-items: flex-start;
  }
}
.banners .contact-banner .btns {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
@media screen and (max-width: 991px) {
  .banners .contact-banner .btns {
    width: 100%;
  }
}
.banners .contact-banner .btns a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 22.76vw;
  height: 63px;
  background: #fff;
  border: 2px solid var(--text-color);
  padding: 13px 18px;
}
@media screen and (max-width: 1200px) {
  .banners .contact-banner .btns a {
    padding: 5.2px 10.8px;
  }
}
@media screen and (max-width: 991px) {
  .banners .contact-banner .btns a {
    width: 100%;
    height: 50.4px;
  }
}
@media (any-hover: hover) {
  .banners .contact-banner .btns a:hover {
    color: #FFF;
  }
}
.banners .contact-banner .btns a.button_phone {
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.85;
}
@media screen and (max-width: 991px) {
  .banners .contact-banner .btns a.button_phone {
    line-height: 1.5;
  }
}
.banners .contact-banner .btns a.button_phone em {
  font-size: 1rem;
  font-weight: 600;
  font-style: normal;
}
.banners .contact-banner .btns a.button_phone::after {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url(../images/common/button_phone-icon.svg);
  background-size: cover;
}
@media (any-hover: hover) {
  .banners .contact-banner .btns a.button_phone:hover {
    background-color: var(--main-color);
    border: 2px solid var(--main-color);
    transition: 0.3s;
  }
  .banners .contact-banner .btns a.button_phone:hover::after {
    background-image: url(../images/common/button_phone-icon-over.svg);
    transition: 0.3s;
  }
}
.banners .contact-banner .btns a.button_form::after {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url(../images/common/button_form-icon.svg);
  background-size: cover;
}
@media (any-hover: hover) {
  .banners .contact-banner .btns a.button_form:hover {
    background-color: var(--accent-color);
    border: 2px solid var(--accent-color);
    transition: 0.3s;
  }
  .banners .contact-banner .btns a.button_form:hover::after {
    background-image: url(../images/common/button_form-icon-over.svg);
    transition: 0.3s;
  }
}

#footer {
  padding: 140px 0 0;
  position: relative;
  background-color: var(--gray-color);
  overflow-x: clip;
}
@media screen and (max-width: 991px) {
  #footer {
    padding-top: 98px;
  }
}
@media screen and (max-width: 479px) {
  #footer {
    padding-top: 70px;
  }
}
#footer::before {
  content: "";
  width: 345px;
  height: 151px;
  background-image: url(../images/common/footer-ornament.svg);
  background-size: cover;
  position: absolute;
  top: -142px;
  right: -37px;
  z-index: -1;
}
@media screen and (max-width: 991px) {
  #footer::before {
    width: 293.25px;
    height: 128.35px;
    top: -120.7px;
    right: -31.45px;
  }
}
@media screen and (max-width: 479px) {
  #footer::before {
    width: 207px;
    height: 90.6px;
    top: -85.2px;
    right: -22.2px;
  }
}
#footer a {
  color: var(--text-color);
}
#footer .menu_item .menu_link {
  text-decoration: none;
  display: inline-block;
  position: relative;
}
@media (any-hover: hover) {
  #footer .menu_item .menu_link:hover {
    color: var(--main-color);
  }
}
#footer .footer-top {
  padding-bottom: 30px;
}
#footer .footer-top .container {
  width: 100%;
  max-width: none;
  padding: 0 2.78%;
}
#footer .footer-top .wrapper-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 991px) {
  #footer .footer-top .wrapper-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}
#footer .footer-top .footer-site-id {
  width: 240px;
  height: 39px;
  margin-bottom: 29px;
}
@media screen and (max-width: 991px) {
  #footer .footer-top .footer-site-id {
    width: 180px;
    height: auto;
    margin-bottom: 24.65px;
  }
}
@media screen and (max-width: 479px) {
  #footer .footer-top .footer-site-id {
    width: 132px;
    margin-bottom: 20.3px;
  }
}
#footer .footer-top address {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 20px;
}
#footer .footer-top address .company-name {
  font-size: 1rem;
  display: block;
  margin-bottom: 12px;
}
@media screen and (max-width: 991px) {
  #footer .footer-top address .company-name {
    margin-bottom: 0.5rem;
  }
}
#footer .footer-top address a {
  text-decoration: none !important;
}
#footer .footer-top address span {
  display: inline-block;
  white-space: nowrap;
}
#footer .footer-top .footer-nav {
  display: flex;
  justify-content: flex-end;
  gap: 50px;
  list-style: none;
  padding: 0;
  font-size: 0.9375rem;
  font-weight: 500;
}
@media screen and (max-width: 991px) {
  #footer .footer-top .footer-nav {
    gap: 25px;
  }
}
@media screen and (max-width: 640px) {
  #footer .footer-top .footer-nav {
    display: none !important;
  }
}
#footer .footer-top .footer-nav li .footer-nav-sub {
  padding-top: 0.75rem;
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}
#footer .footer-top .footer-nav li .footer-nav-sub li {
  margin-bottom: 0.5rem;
}
#footer .footer-top .footer-nav a {
  text-decoration: none;
}
#footer .footer-bottom {
  padding: 20px 0;
  border-top: solid 1px #434343;
}
#footer .footer-bottom .container {
  width: 100%;
  max-width: none;
  padding: 0 2.78%;
}
#footer .footer-bottom .wrapper-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-direction: row-reverse;
}
@media screen and (max-width: 991px) {
  #footer .footer-bottom .wrapper-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
#footer .footer-bottom .other-menu {
  display: flex;
  justify-content: flex-end;
  gap: 46px;
  list-style: none;
  padding: 0;
  font-size: 0.875rem;
  font-weight: 500;
}
@media screen and (max-width: 991px) {
  #footer .footer-bottom .other-menu {
    justify-content: flex-start;
    gap: 23px;
  }
}
@media screen and (max-width: 479px) {
  #footer .footer-bottom .other-menu {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}
#footer .footer-bottom .other-menu .menu_link {
  text-decoration: none;
}
@media (any-hover: hover) {
  #footer .footer-bottom .other-menu .menu_link:hover {
    color: var(--accent-color);
  }
}
#footer .footer-bottom .copy-right {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
#footer .page-top {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 33px;
  right: 38px;
  font-size: 0.75rem;
  text-decoration: none;
}
@media screen and (max-width: 1280px) {
  #footer .page-top {
    top: 2.568vw;
    right: 3.125%;
  }
}
#footer .page-top::before {
  content: "";
  width: 40px;
  height: 40px;
  background-image: url(../images/common/arrow-pagetop.svg);
  background-size: cover;
  transition: 0.3s;
}
@media (any-hover: hover) {
  #footer .page-top:hover::before {
    background-image: url(../images/common/arrow-pagetop-on.svg);
    transition: 0.3s;
  }
}

.topic-path {
  background: #f2f0ee;
}
.topic-path ul {
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 25px;
}
@media screen and (max-width: 767px) {
  .topic-path ul {
    height: auto;
    min-height: 25px;
  }
}
.topic-path ul li {
  list-style: none;
  margin-right: 1.125rem;
  display: inline-flex;
  align-items: center;
  font-family: "Inter Tight";
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-align: left;
  color: #8e8e8e;
}
.topic-path ul li::after {
  content: "";
  margin-left: 1.125rem;
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 6px;
  height: 6px;
  border: 1px solid #8E8E8E;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
}
.topic-path ul li:last-child::after {
  content: none;
  margin-left: 0;
}
.topic-path ul li a {
  color: #8E8E8E;
  text-decoration: none;
}
@media (any-hover: hover) {
  .topic-path ul li a:hover {
    text-decoration: underline;
  }
}
.topic-path ul li img {
  display: block;
}

.fadeup,
.slidein-r,
.slidein-l {
  opacity: 0;
}

.fadeup.is-animated {
  animation: fadeup 2.5s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

@keyframes fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.slidein-r.is-animated {
  animation: slidein-r 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slidein-r {
  0% {
    transform: translate(60px, 30px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
  }
  40%, 100% {
    opacity: 1;
  }
}
.slidein-l.is-animated {
  animation: slidein-l 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slidein-l {
  0% {
    transform: translate(-60px, 30px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
  }
  40%, 100% {
    opacity: 1;
  }
}
.matrix .anim-wrap {
  overflow: hidden;
  opacity: 0;
}

.matrix .anim-wrap .inn {
  opacity: 0;
  transform: matrix(1, 0, 0, 1, 0, 100);
  transition: 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.matrix.is-animated .anim-wrap {
  opacity: 1;
}

.matrix.is-animated .anim-wrap .inn {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, 0);
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  padding-top: 8%;
}
@media screen and (max-width: 479px) {
  .nav-links {
    gap: 12.5px;
  }
}

.nav-links .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid #0f0f0f;
  padding: 13px;
  text-align: center;
  margin: 0 !important;
  font-family: "Inter Tight";
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 39px;
  color: #0f0f0f;
  text-decoration: none;
}
.nav-links .page-numbers:hover {
  color: var(--main-color);
}

.nav-links .current {
  background-color: var(--main-color);
  color: #fff;
}

.nav-links .next,
.nav-links .prev {
  width: 80px;
  height: 50px;
  font-size: 16px;
  line-height: 1.2;
  color: #000;
  white-space: nowrap;
}

@media screen and (max-width: 520px) {
  .nav-links .page-numbers {
    width: 25px;
    height: 25px;
    padding: 3px;
    line-height: 0.8;
  }
  .nav-links .page-numbers.next, .nav-links .page-numbers.prev {
    width: auto;
    height: 30px;
    font-size: 14px;
    padding: 0 0.5rem;
  }
}
.home .hero .hero-wrapper {
  position: relative;
}
@media screen and (max-width: 767px) {
  .home .hero .hero-wrapper {
    display: none;
  }
}
.home .hero .hero-wrapper-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .home .hero .hero-wrapper-sp {
    display: block;
  }
}
.home .hero .hero-wrapper-sp h1 {
  margin: 1rem 0 0;
}
.home .hero .tagline {
  position: absolute;
  left: 0;
  bottom: 1.94%;
  margin: 0;
  width: 100%;
}
.home .hero .tagline img {
  width: 33.72%;
}
.home .hero .hero-wrapper-inner {
  aspect-ratio: 129/63;
  background-image: url(../images/home/home-hero-bg3.png);
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.home .hero .hero-wrapper-inner .anm-tool {
  position: absolute;
  opacity: 0;
  animation-name: fadeInOut;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.home .hero .hero-wrapper-inner .tool1-1 {
  width: 6.1240310078%;
  height: auto;
  left: 68.8372093023%;
  top: 45.7142857143%;
}
.home .hero .hero-wrapper-inner .tool1-2 {
  width: 7.7519379845%;
  height: auto;
  left: 23.1782945736%;
  top: 0%;
}
.home .hero .hero-wrapper-inner .tool1-3 {
  width: 1.5503875969%;
  height: auto;
  left: 0%;
  top: 27.4603174603%;
}
.home .hero .hero-wrapper-inner .tool2-1 {
  width: 15.7364341085%;
  height: auto;
  right: 0%;
  top: 10.3174603175%;
}
.home .hero .hero-wrapper-inner .tool2-2 {
  width: 12.0930232558%;
  height: auto;
  left: 54.6511627907%;
  top: 43.9682539683%;
}
.home .hero .hero-wrapper-inner .tool3-1 {
  width: 15.503875969%;
  height: auto;
  right: 17.0542635659%;
  top: 14.4444444444%;
}
.home .hero .hero-wrapper-inner .tool3-2 {
  width: 18.992248062%;
  height: auto;
  left: 36.976744186%;
  top: 68.8888888889%;
}
.home .hero .hero-wrapper-inner .tool4-1 {
  width: 13.7209302326%;
  height: auto;
  left: -55.0387596899%;
  top: 0%;
}
.home .hero .hero-wrapper-inner .tool4-2 {
  width: 30.6976744186%;
  height: auto;
  left: 57.984496124%;
  top: 80%;
}
.home .hero .hero-wrapper-inner .tool5-1 {
  width: 8.5271317829%;
  height: auto;
  left: 31.2403100775%;
  top: 6.1904761905%;
}
.home .hero .hero-wrapper-inner .tool5-2 {
  width: 8.5271317829%;
  height: auto;
  left: 11.3953488372%;
  top: 0%;
}
.home .hero .hero-wrapper-inner .tool6-1 {
  width: 9.6899224806%;
  height: auto;
  right: 0%;
  top: 47.619047619%;
}
.home .hero .hero-wrapper-inner .tool6-2 {
  width: 4.8837209302%;
  height: auto;
  left: 18.4496124031%;
  top: 31.4285714286%;
}
.home .hero .hero-wrapper-inner .tool7-1 {
  width: 23.7984496124%;
  height: auto;
  right: 0%;
  top: 31.4285714286%;
}
.home .hero .hero-wrapper-inner .tool7-2 {
  width: 14.8062015504%;
  height: auto;
  left: 0%;
  top: 10.4761904762%;
}
.home .hero .hero-wrapper-inner .tool8-1 {
  width: 12.5581395349%;
  height: auto;
  left: 42.0930232558%;
  top: 3.4920634921%;
}
.home .hero .hero-wrapper-inner .tool8-2 {
  width: 9.8449612403%;
  height: auto;
  left: 0%;
  top: 0%;
}
.home .hero .hero-wrapper-inner .tool8-3 {
  width: 7.5968992248%;
  height: auto;
  right: 0%;
  top: 63.4920634921%;
}
.home .hero .hero-wrapper-inner .tool9-1 {
  width: 33.1007751938%;
  height: auto;
  left: 23.1782945736%;
  top: 47.619047619%;
}
.home .hero .hero-wrapper-inner .tool9-2 {
  width: 33.1007751938%;
  height: auto;
  left: 69.0697674419%;
  top: 0%;
}
@media screen and (min-width: 768px) {
  .home .hero .hero-wrapper-inner img[class*=tool1-] {
    animation-duration: 10s;
  }
  .home .hero .hero-wrapper-inner img[class*=tool2-] {
    animation-duration: 8s;
    animation-delay: 1s;
  }
  .home .hero .hero-wrapper-inner img[class*=tool3-] {
    animation-duration: 7.5s;
    animation-delay: 1.5s;
  }
  .home .hero .hero-wrapper-inner img[class*=tool4-] {
    animation-duration: 12s;
    animation-delay: 0.5s;
  }
  .home .hero .hero-wrapper-inner img[class*=tool5-] {
    animation-duration: 6s;
    animation-delay: 0.5s;
  }
  .home .hero .hero-wrapper-inner img[class*=tool6-] {
    animation-duration: 9.5s;
    animation-delay: 1s;
  }
  .home .hero .hero-wrapper-inner img[class*=tool7-] {
    animation-duration: 10s;
  }
  .home .hero .hero-wrapper-inner img[class*=tool8-] {
    animation-duration: 8s;
    animation-delay: 1s;
  }
  .home .hero .hero-wrapper-inner img[class*=tool9-] {
    animation-duration: 7.5s;
    animation-delay: 1.5s;
  }
  @keyframes fadeInOut {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
}
.home .contents-wrapper {
  display: flex;
  gap: 80px;
  justify-content: space-between;
}
.home .contents-wrapper .pic {
  width: 50%;
}
.home .contents-wrapper .guide {
  width: 50%;
}
.home .contents-wrapper .guide .button_more {
  color: var(--text-color);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.14em;
  width: 260px;
  height: 60px;
  margin-top: 1.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFF;
  border: solid 1.5px var(--text-color);
  text-decoration: none;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 767px) {
  .home .contents-wrapper .guide .button_more {
    height: 50px;
  }
}
@media screen and (max-width: 479px) {
  .home .contents-wrapper .guide .button_more {
    width: 95%;
    font-size: 1.125rem;
  }
}
.home .contents-wrapper .guide .button_more::after {
  content: "";
  background-image: url(../images/common/arrow-button.svg);
  background-size: cover;
  width: 13px;
  height: 8px;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}
@media (any-hover: hover) {
  .home .contents-wrapper .guide .button_more:hover {
    color: #fff;
    background-color: var(--main-color);
    border: solid 1.5px var(--main-color);
  }
  .home .contents-wrapper .guide .button_more:hover::after {
    filter: invert(100%);
  }
}
@media (any-hover: hover) {
  .home .contents-wrapper .guide:has(.button_more:hover) .contents-title.is-business {
    color: var(--main-color);
    transition: 0.1s;
  }
}
.home .contents-wrapper .guide p:last-of-type {
  margin-bottom: 0;
}
.home .section-label {
  color: var(--main-color);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 767px) {
  .home .section-label {
    font-size: 1.0625rem;
  }
}
.home .section-title {
  color: #000;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.08em;
  margin: 0 0 1rem;
}
@media screen and (max-width: 1024px) {
  .home .section-title {
    font-size: 1.6875rem;
  }
}
@media screen and (max-width: 767px) {
  .home .section-title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 479px) {
  .home .section-title {
    font-size: 1.21875rem;
    letter-spacing: 0.05em;
  }
}
.home .home-about {
  position: relative;
  z-index: 1;
}
.home .home-about .contents-wrapper.is-about {
  flex-direction: row-reverse;
  padding: 6.32vw 0 8.06vw;
}
@media screen and (max-width: 1280px) {
  .home .home-about .contents-wrapper.is-about {
    gap: 45px;
  }
}
@media screen and (max-width: 991px) {
  .home .home-about .contents-wrapper.is-about {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 767px) {
  .home .home-about .contents-wrapper.is-about {
    padding: 0;
  }
}
.home .home-about .contents-wrapper.is-about .pic {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media screen and (max-width: 991px) {
  .home .home-about .contents-wrapper.is-about .pic {
    width: 100%;
  }
}
.home .home-about .contents-wrapper.is-about .pic img {
  margin-bottom: 37px;
}
@media screen and (max-width: 991px) {
  .home .home-about .contents-wrapper.is-about .pic img {
    margin-bottom: 0;
    width: 75%;
  }
}
.home .home-about .contents-wrapper.is-about .guide {
  width: 41.92%;
}
@media screen and (max-width: 1280px) {
  .home .home-about .contents-wrapper.is-about .guide {
    width: 54.496%;
  }
}
@media screen and (max-width: 991px) {
  .home .home-about .contents-wrapper.is-about .guide {
    width: 100%;
  }
}
.home .home-about .section-label {
  margin-bottom: 75px;
}
@media screen and (max-width: 991px) {
  .home .home-about .section-label {
    margin-bottom: 18.75px;
  }
}
.home .home-about .section-title {
  margin-bottom: 33px;
}
@media screen and (max-width: 991px) {
  .home .home-about .section-title {
    line-height: 1.75;
    margin-bottom: 16.5px;
  }
}
.home .home-about p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.375;
}
.home .home-about .button_more {
  margin-top: 1.5rem;
}
.home .home-business {
  position: relative;
  margin-top: -35.76vw;
}
.home .home-business-inner {
  background-color: #FCFAF9;
  position: relative;
  padding-bottom: 34.375vw;
}
.home .home-business-inner::before {
  content: "";
  background-image: url(../images/home/home-business-bg.svg);
  background-color: #FFF;
  background-size: cover;
  width: 100vw;
  padding-top: 17.64%;
  display: block;
}
.home .section-separate.is-red {
  position: relative;
  top: 27.78vw;
  left: 0;
  z-index: 1000;
}
.home .section-separate.is-red img {
  transition: clip-path 1s;
  clip-path: inset(0 0 0 100%);
}
.home .section-separate.is-red.inview img {
  clip-path: inset(0);
}
.home .section-separate.is-blue {
  bottom: 0;
  left: 0;
  position: relative;
  transform: translateY(-65%);
  margin-bottom: 0;
}
.home .section-separate.is-blue img {
  transition: clip-path 1s;
  clip-path: inset(0 100% 0 0);
}
.home .section-separate.is-blue.inview img {
  clip-path: inset(0);
}
.home .section-label {
  margin-top: 12.5vw;
}
@media screen and (max-width: 1024px) {
  .home .contents-wrapper {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .home .contents-wrapper {
    flex-direction: column-reverse;
  }
}
.home .contents-wrapper.is-invert {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .home .contents-wrapper.is-invert {
    flex-direction: column-reverse;
  }
}
.home .contents-wrapper .pic {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .home .contents-wrapper .pic {
    width: 45%;
  }
}
@media screen and (max-width: 767px) {
  .home .contents-wrapper .pic {
    width: 100%;
  }
}
.home .contents-wrapper .pic img {
  height: auto;
}
.home .contents-wrapper .guide {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .home .contents-wrapper .guide {
    width: 55%;
  }
}
@media screen and (max-width: 767px) {
  .home .contents-wrapper .guide {
    width: 100%;
  }
}
.home .contents-wrapper .guide .guide-inner {
  display: flex;
  flex-direction: column-reverse;
}
.home .contents-wrapper .guide .business-num {
  transform: rotate(90deg);
  position: absolute;
  top: 2rem;
  left: -2.875rem;
  color: var(--accent-color);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 767px) {
  .home .contents-wrapper .guide .business-num {
    top: 2.28rem;
    left: -2.3rem;
    font-size: 1.125rem;
  }
}
.home .contents-wrapper .guide .contents-title {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.76;
  letter-spacing: 0.15em;
  margin: -0.85rem 0 2rem;
}
@media screen and (max-width: 1024px) {
  .home .contents-wrapper .guide .contents-title {
    font-size: 1.40625rem;
  }
}
@media screen and (max-width: 767px) {
  .home .contents-wrapper .guide .contents-title {
    font-size: 1.171875rem;
    margin: -0.85rem 0 1rem;
  }
  .home .contents-wrapper .guide .contents-title .for-pc {
    display: none;
  }
}
@media screen and (max-width: 479px) {
  .home .contents-wrapper .guide .contents-title {
    font-size: 1.015625rem;
    letter-spacing: 0.05em;
  }
}
.home .contents-wrapper .guide .contents-title span {
  display: inline-block;
  border-bottom: solid 1.5px #000;
}
.home .contents-wrapper .guide .contents-title .busiess-category {
  display: inline-block;
  background-color: #000;
  color: #FFF;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  padding: 0.5rem;
  margin-bottom: 0.55rem;
}
@media screen and (max-width: 1280px) {
  .home .contents-wrapper .guide .contents-title .busiess-category {
    line-height: 1.5;
  }
}
@media screen and (max-width: 767px) {
  .home .contents-wrapper .guide .contents-title .busiess-category {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 479px) {
  .home .contents-wrapper .guide .contents-title .busiess-category {
    font-size: 1.25rem;
  }
}
.home .contents-wrapper .guide p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.375;
}
@media screen and (max-width: 767px) {
  .home .contents-wrapper .guide p {
    line-height: 2;
  }
}
.home .contents-wrapper.is-business0 {
  padding: 6vw 0 0;
}
@media screen and (min-width: 1280px) {
  .home .contents-wrapper.is-business0 .contents-title {
    white-space: nowrap;
  }
}
.home .contents-wrapper.is-business0 .pic img {
  width: 100%;
  margin-top: -20%;
}
@media screen and (max-width: 767px) {
  .home .contents-wrapper.is-business0 .pic img {
    width: 90%;
    margin-top: 0;
  }
}
.home .contents-wrapper.is-business0 .guide .contents-title span {
  display: inline;
}
.home .contents-wrapper.is-business0 .guide p {
  width: 100%;
}
.home .contents-wrapper.is-business0 .guide p strong {
  color: var(--main-color);
  display: inline-flex;
  align-items: center;
}
@media screen and (min-width: 1280px) {
  .home .contents-wrapper.is-business0 .guide p strong {
    flex-wrap: nowrap;
  }
}
.home .contents-wrapper.is-business1 {
  padding: 17.505vw 0 0;
}
.home .contents-wrapper.is-business1 .pic {
  margin-left: -50px;
}
@media screen and (max-width: 767px) {
  .home .contents-wrapper.is-business1 .pic {
    margin-left: 0;
  }
}
.home .contents-wrapper.is-business1 .pic img {
  width: 100%;
  margin-top: 1.26%;
}
.home .contents-wrapper.is-business1 .guide {
  padding-left: 2.875rem;
}
.home .contents-wrapper.is-business1 .guide .contents-title span {
  display: inline;
}
.home .contents-wrapper.is-business1 .guide p {
  width: 81.18%;
}
@media screen and (max-width: 767px) {
  .home .contents-wrapper.is-business1 .guide p {
    width: 95%;
  }
}
.home .contents-wrapper.is-business2 {
  padding: 10.49vw 0 0;
}
@media screen and (max-width: 767px) {
  .home .contents-wrapper.is-business2 {
    padding: 17.505vw 0 0;
  }
}
.home .contents-wrapper.is-business2 .pic {
  margin-right: -50px;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .home .contents-wrapper.is-business2 .pic {
    justify-content: center;
    margin-right: 0;
  }
}
.home .contents-wrapper.is-business2 .pic img {
  width: 100%;
  margin-bottom: 2.16%;
}
@media screen and (max-width: 767px) {
  .home .contents-wrapper.is-business2 .pic img {
    width: 72.4455%;
  }
}
.home .contents-wrapper.is-business2 .guide {
  padding-left: 7.3rem;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 991px) {
  .home .contents-wrapper.is-business2 .guide {
    padding-left: 6.3rem;
  }
}
@media screen and (max-width: 767px) {
  .home .contents-wrapper.is-business2 .guide {
    padding-left: 2.875rem;
  }
}
.home .contents-wrapper.is-business2 .guide .business-num {
  left: 1.4375rem;
}
@media screen and (max-width: 991px) {
  .home .contents-wrapper.is-business2 .guide .business-num {
    left: 0.4375rem;
  }
}
@media screen and (max-width: 767px) {
  .home .contents-wrapper.is-business2 .guide .business-num {
    left: -2.875rem;
  }
}
.home .contents-wrapper.is-business2 p {
  width: 91.2%;
}
@media screen and (max-width: 767px) {
  .home .contents-wrapper.is-business2 p {
    width: 95%;
  }
}
.home .contents-wrapper.is-business3 {
  padding: 10.49vw 0 0;
}
@media screen and (max-width: 767px) {
  .home .contents-wrapper.is-business3 {
    padding: 15.735vw 0 0;
  }
}
.home .contents-wrapper.is-business3 .pic {
  align-items: flex-end;
  margin-left: -50px;
}
@media screen and (max-width: 767px) {
  .home .contents-wrapper.is-business3 .pic {
    margin-left: 0;
  }
}
.home .contents-wrapper.is-business3 .pic img {
  width: 100%;
  margin-bottom: 10.67%;
}
@media screen and (max-width: 767px) {
  .home .contents-wrapper.is-business3 .pic img {
    width: 72.59%;
    margin-bottom: 5.335%;
  }
}
.home .contents-wrapper.is-business3 .guide {
  padding-left: 2.875rem;
}
.home .contents-wrapper.is-business3 p {
  width: 81.18%;
}
@media screen and (max-width: 767px) {
  .home .contents-wrapper.is-business3 p {
    width: 95%;
  }
}
.home .home-news {
  margin-top: -25.5vw;
  padding-bottom: 127px;
}
.home .home-news .section-title-wrapper {
  position: relative;
}
@media screen and (max-width: 767px) {
  .home .home-news .section-title-wrapper::after {
    content: "";
    background-image: url(../images/home/home-news-pic.svg);
    background-size: cover;
    width: 133.2px;
    height: 103.2px;
    position: absolute;
    right: 1rem;
    bottom: -3.5rem;
  }
}
.home .home-news .section-title {
  margin-bottom: 2.6875rem;
}
.home .home-news .contents-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 0;
}
.home .home-news .pic {
  width: 29.17%;
}
@media screen and (max-width: 767px) {
  .home .home-news .pic {
    display: none;
  }
}
.home .home-news .pic img {
  width: 95.14%;
  margin-left: -60px;
}
.home .home-news .news-list {
  width: 70.87%;
}
@media screen and (max-width: 767px) {
  .home .home-news .news-list {
    width: 100%;
  }
}
.home .home-news .news-list ul {
  margin-bottom: 31px;
  padding-left: 0;
  list-style: none;
  border-top: 1.5px solid #dedede;
}
@media screen and (max-width: 767px) {
  .home .home-news .news-list ul {
    margin-bottom: 21.7px;
  }
}
@media screen and (max-width: 449px) {
  .home .home-news .news-list ul {
    margin-bottom: 15.5px;
  }
}
.home .home-news .news-list li {
  min-height: 64px;
  border-bottom: 1.5px solid #dedede;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 639px) {
  .home .home-news .news-list li {
    height: auto;
    padding-top: 1rem;
  }
}
.home .home-news .news-list li::before {
  content: "";
  width: 20px;
  height: 1.5px;
  background-color: var(--main-color);
  position: absolute;
  left: 0;
  bottom: -1px;
}
@media (any-hover: hover) {
  .home .home-news .news-list li:hover::before {
    transition: 0.3s;
    width: 100%;
  }
}
.home .home-news .news-list .news-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 20px;
  text-decoration: none;
  color: var(--text-color);
  width: 100%;
  position: relative;
  min-height: 58px;
}
@media screen and (max-width: 639px) {
  .home .home-news .news-list .news-item {
    flex-wrap: wrap;
  }
}
@media (any-hover: hover) {
  .home .home-news .news-list .news-item:hover {
    color: var(--main-color);
  }
}
.home .home-news .news-list .news-item::after {
  content: "";
  width: 40px;
  height: 40px;
  background-image: url(../images/common/arrow-pagetop.svg);
  background-size: cover;
  transform: rotate(90deg);
  margin-right: 10px;
  margin-left: auto;
}
@media screen and (max-width: 639px) {
  .home .home-news .news-list .news-item::after {
    margin-top: -2.25rem;
    margin-bottom: 0.75rem;
  }
}
@media screen and (max-width: 479px) {
  .home .home-news .news-list .news-item::after {
    width: 28px;
    height: 28px;
  }
}
@media (any-hover: hover) {
  .home .home-news .news-list .news-item:hover::after {
    background-image: url(../images/common/arrow-pagetop-on.svg);
  }
}
.home .home-news .news-list .news-item .news-date {
  font-family: "Inter Tight";
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-align: left;
  color: #0f0f0f;
}
.home .home-news .news-list .news-item .news-category,
.home .home-news .news-list .news-item .category {
  font-weight: 700;
  font-size: 10px;
  padding: 0 0.25rem;
  color: #FFF;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 70px;
  height: 20px;
  background-color: var(--text-color);
}
.home .home-news .news-list .news-item .news-category.is-news, .home .home-news .news-list .news-item .news-category.news-infromation,
.home .home-news .news-list .news-item .category.is-news,
.home .home-news .news-list .news-item .category.news-infromation {
  background-color: var(--text-color);
}
.home .home-news .news-list .news-item .news-category.is-services, .home .home-news .news-list .news-item .news-category.news-service,
.home .home-news .news-list .news-item .category.is-services,
.home .home-news .news-list .news-item .category.news-service {
  background-color: var(--main-color);
}
.home .home-news .news-list .news-item .news-category.is-schedule, .home .home-news .news-list .news-item .news-category.news-schedule,
.home .home-news .news-list .news-item .category.is-schedule,
.home .home-news .news-list .news-item .category.news-schedule {
  background-color: var(--accent-color);
}
.home .home-news .news-list .news-item .news-title {
  font-family: "Zen Kaku Gothic New";
  font-weight: 500;
  font-size: 1rem;
  padding-left: 0.25rem;
}
@media screen and (max-width: 639px) {
  .home .home-news .news-list .news-item .news-title {
    width: 100%;
    padding: 0.5rem 4rem 0 0;
  }
}
.home .home-news .button_more {
  color: var(--text-color);
  font-size: 12px;
  font-weight: 700;
  line-height: 58px;
  letter-spacing: 0.08em;
  width: 200px;
  height: 50px;
  margin-top: 1.875rem;
  margin: 0 0 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 1.5625rem;
  background-color: #FFF;
  border: solid 1.5px var(--text-color);
  text-decoration: none;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 767px) {
  .home .home-news .button_more {
    height: 50px;
  }
}
@media screen and (max-width: 479px) {
  .home .home-news .button_more {
    width: 95%;
  }
}
.home .home-news .button_more::after {
  content: "";
  background-image: url(../images/common/arrow-button.svg);
  background-size: cover;
  width: 13px;
  height: 8px;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}
@media (any-hover: hover) {
  .home .home-news .button_more:hover {
    color: #fff !important;
    background-color: var(--main-color);
    border: solid 1.5px var(--main-color);
  }
  .home .home-news .button_more:hover::after {
    filter: invert(100%);
  }
}
.home .home-shop {
  position: relative;
}
@media screen and (max-width: 1280px) {
  .home .home-shop {
    padding-bottom: 5vw;
  }
}
.home .home-shop::after {
  content: "";
  background-image: url(../images/home/home-shop-pic2.webp);
  background-size: cover;
  width: 11.94vw;
  height: 22.22vw;
  position: absolute;
  left: 0;
  bottom: 2.78vw;
}
@media screen and (max-width: 1280px) {
  .home .home-shop::after {
    left: -2vw;
    bottom: 4.17vw;
  }
}
@media screen and (max-width: 1024px) {
  .home .home-shop::after {
    left: -3vw;
    bottom: 8.34vw;
  }
}
@media screen and (max-width: 991px) {
  .home .home-shop::after {
    left: -5vw;
  }
}
@media screen and (max-width: 767px) {
  .home .home-shop::after {
    left: -5vw;
    bottom: 0;
  }
}
.home .home-shop .section-title {
  margin-bottom: 3.26vw;
}
.home .home-shop .contents-wrapper {
  gap: 0;
  margin-bottom: -1.74vw;
  align-items: flex-start;
}
.home .home-shop .contents-wrapper.is-invert {
  flex-direction: row-reverse;
}
.home .home-shop .pic {
  width: 25%;
}
@media screen and (max-width: 991px) {
  .home .home-shop .pic {
    width: 20%;
  }
}
.home .home-shop .pic img {
  width: 123.33%;
  max-width: none;
  height: auto;
  transform: translate(-4.72vw, -4.86vw);
}
@media screen and (min-width: 1440px) {
  .home .home-shop .pic img {
    transform: translate(-68px, -70px);
  }
}
@media screen and (max-width: 1200px) {
  .home .home-shop .pic img {
    transform: translate(-4.72vw, -2.86vw);
  }
}
@media screen and (max-width: 991px) {
  .home .home-shop .pic img {
    width: 154.1625%;
    transform: translate(-11.8vw, -4.86vw);
  }
}
@media screen and (max-width: 991px) {
  .home .home-shop .pic img {
    width: 141.8295%;
    transform: translate(-7.08vw, -3.645vw);
  }
}
.home .home-shop .guide {
  width: 75%;
  min-height: 340px;
  background-color: #FCFAF9;
  padding: 5vw 7.92vw;
}
@media screen and (min-width: 1440px) {
  .home .home-shop .guide {
    padding: 72px 114px;
  }
}
@media screen and (max-width: 1024px) {
  .home .home-shop .guide {
    min-height: auto;
  }
}
@media screen and (max-width: 991px) {
  .home .home-shop .guide {
    width: 80%;
  }
}
@media screen and (max-width: 991px) {
  .home .home-shop .guide {
    padding: 3.25vw 3.96vw;
  }
}
.home .home-shop .guide .contents-title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 2.73;
  letter-spacing: 0.14em;
  margin: 0;
}
@media screen and (max-width: 1280px) {
  .home .home-shop .guide .contents-title {
    font-size: 1.6875rem;
  }
}
@media screen and (max-width: 1024px) {
  .home .home-shop .guide .contents-title {
    font-size: 1.40625rem;
    line-height: 2.0475;
  }
}
@media screen and (max-width: 991px) {
  .home .home-shop .guide .contents-title {
    line-height: 1.365;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .home .home-shop .guide .contents-title {
    width: 90%;
    font-size: 1.29375rem;
  }
  .home .home-shop .guide .contents-title span {
    display: inline-block;
  }
}
.home .home-shop .guide p {
  font-family: "Zen Kaku Gothic New";
  font-weight: 500;
  font-size: 1rem;
  line-height: 2.375;
  text-align: left;
  color: #0f0f0f;
}
@media screen and (max-width: 1024px) {
  .home .home-shop .guide p {
    line-height: 1.78125;
  }
}
@media screen and (max-width: 767px) {
  .home .home-shop .guide p {
    width: 90%;
  }
}
.home .home-shop .guide p span {
  display: inline-block;
}
.home .home-shop .guide .button_more {
  width: 420px;
  height: 50px;
  background: #FFF;
  border: 1.5px solid var(--text-color);
}
@media screen and (max-width: 767px) {
  .home .home-shop .guide .button_more {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 479px) {
  .home .home-shop .guide .button_more {
    width: calc(100vw - 3.25rem - 10%);
    font-size: 1rem;
  }
  .home .home-shop .guide .button_more::after {
    right: 1.25rem;
  }
}
@media screen and (max-width: 360px) {
  .home .home-shop .guide .button_more::after {
    display: none;
  }
}
@media (any-hover: hover) {
  .home .home-shop .guide .button_more:hover {
    background: var(--main-color);
    border: 1.5px solid var(--main-color);
  }
}

@supports (font: -apple-system-body) {
  .banners .recruit-banner a::after {
    transition: none;
  }
}
@supports (font: -apple-system-body) {
  .banners .recruit-banner a:hover::after {
    transition: none;
  }
}
.page-title-header .page-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--main-color);
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.page-title-header .page-title .en {
  font-family: "Inter Tight";
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: var(--text-color);
  display: block;
}

.contents-title-header {
  height: 402px;
  background: #fcfaf9;
}
@media screen and (max-width: 767px) {
  .contents-title-header {
    height: 321.6px;
  }
}
@media screen and (max-width: 479px) {
  .contents-title-header {
    min-height: 281.4px;
    height: auto;
  }
}
.contents-title-header .container {
  min-height: 402px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  width: 61rem;
}
@media screen and (max-width: 991px) {
  .contents-title-header .container {
    width: 100%;
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .contents-title-header .container {
    min-height: 321.6px;
  }
}
@media screen and (max-width: 479px) {
  .contents-title-header .container {
    min-height: 281.4px;
  }
}
.contents-title-header .contents-title {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 2;
  color: #000;
  margin: 0;
}
.contents-title-header .contents-title.is-inside {
  font-size: 1.375rem;
}
@media screen and (max-width: 767px) {
  .contents-title-header .contents-title {
    font-size: 1.375rem;
    margin-left: 1rem;
    margin-bottom: 6rem;
    line-height: 1.75;
  }
}
.contents-title-header p {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2.25;
  color: var(--text-color);
  max-width: 52rem;
}
.contents-title-header p.notice {
  color: var(--main-color);
  font-weight: 700;
}

.guide {
  position: relative;
}
@media screen and (max-width: 991px) {
  .guide {
    padding-left: 6.3rem;
  }
}
@media screen and (max-width: 767px) {
  .guide {
    padding-left: 0;
  }
}
.guide .business-num {
  transform: rotate(90deg);
  position: absolute;
  top: 4.85rem;
  left: -4.75rem;
  color: var(--accent-color);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 767px) {
  .guide .business-num {
    top: 4rem;
    left: -3.8rem;
    font-size: 1.125rem;
  }
}
.guide .contents-title {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.76;
  letter-spacing: 0.15em;
  margin: -0.85rem 0 2rem;
}
@media screen and (max-width: 1024px) {
  .guide .contents-title {
    font-size: 1.40625rem;
  }
}
@media screen and (max-width: 767px) {
  .guide .contents-title {
    font-size: 1.171875rem;
    margin: -0.85rem 0 1rem;
  }
  .guide .contents-title .for-pc {
    display: none;
  }
}
@media screen and (max-width: 479px) {
  .guide .contents-title {
    font-size: 1.015625rem;
    letter-spacing: 0.05em;
  }
}
.guide .contents-title span {
  display: inline-block;
  border-bottom: solid 1.5px #000;
}
.guide .contents-title .busiess-category,
.guide .contents-title .strengths-category {
  display: inline-block;
  background-color: #000;
  color: #FFF;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 1280px) {
  .guide .contents-title .busiess-category,
  .guide .contents-title .strengths-category {
    line-height: 1.5;
  }
}
@media screen and (max-width: 767px) {
  .guide .contents-title .busiess-category,
  .guide .contents-title .strengths-category {
    font-size: 1.5625rem;
  }
}
@media screen and (max-width: 479px) {
  .guide .contents-title .busiess-category,
  .guide .contents-title .strengths-category {
    font-size: 1.25rem;
  }
}
.guide p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.375;
}
@media screen and (max-width: 767px) {
  .guide p {
    line-height: 2;
  }
}

.strengths .contents-title-header .container,
.business.page-parent .contents-title-header .container {
  width: 68rem;
  background-image: url(../images/recruit/recruit-title-pic.svg);
  background-size: 447px 286px;
  background-position: right bottom 30px;
  background-repeat: no-repeat;
  overflow: visible;
}
@media screen and (max-width: 1280px) {
  .strengths .contents-title-header .container,
  .business.page-parent .contents-title-header .container {
    width: 100%;
    max-width: none;
    padding-left: 5%;
    background-position: right 42px center;
    background-position: right bottom 30px;
  }
}
@media screen and (max-width: 991px) {
  .strengths .contents-title-header .container,
  .business.page-parent .contents-title-header .container {
    background-size: 335.25px 214.5px;
    background-position: right 30px center;
    background-position: right bottom 30px;
  }
}
@media screen and (max-width: 767px) {
  .strengths .contents-title-header .container,
  .business.page-parent .contents-title-header .container {
    background-size: 312.9px 200.2px;
    background-position: right 30px bottom 25px;
    background-position: right bottom 30px;
  }
}
@media screen and (max-width: 639px) {
  .strengths .contents-title-header .container,
  .business.page-parent .contents-title-header .container {
    background-size: 223.5px 143px;
    background-position: right 24px bottom 20px;
    background-position: right bottom 30px;
    justify-content: flex-start;
    padding-top: 4rem;
  }
}
@media screen and (max-width: 479px) {
  .strengths .contents-title-header .container,
  .business.page-parent .contents-title-header .container {
    background-size: 178.8px 114.4px;
    padding-top: 3rem;
  }
}
.strengths .contents-title-header .contents-title,
.business.page-parent .contents-title-header .contents-title {
  width: 58%;
}
@media screen and (max-width: 1024px) {
  .strengths .contents-title-header .contents-title,
  .business.page-parent .contents-title-header .contents-title {
    white-space: nowrap;
  }
}
@media screen and (max-width: 991px) {
  .strengths .contents-title-header .contents-title,
  .business.page-parent .contents-title-header .contents-title {
    white-space: wrap;
    width: 60%;
  }
}
@media screen and (max-width: 639px) {
  .strengths .contents-title-header .contents-title,
  .business.page-parent .contents-title-header .contents-title {
    width: 100%;
  }
}
.strengths .section-label.en-text,
.business.page-parent .section-label.en-text {
  font-family: "Inter Tight";
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--main-color);
}
.strengths .section-title,
.business.page-parent .section-title {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 2;
  margin: 0 0 72px;
}
@media screen and (max-width: 767px) {
  .strengths .section-title,
  .business.page-parent .section-title {
    font-size: 1.5rem;
    margin: 0 0 57.6px;
  }
}
@media screen and (max-width: 639px) {
  .strengths .section-title,
  .business.page-parent .section-title {
    font-size: 1.3125rem;
    margin: 0 0 36px;
  }
}
.strengths .lead,
.business.page-parent .lead {
  padding: 133px 0 110px;
  position: relative;
}
.strengths .lead::before,
.business.page-parent .lead::before {
  content: "";
  background-image: url(../images/strengths/strengths_bg1.svg);
  background-size: cover;
  display: block;
  width: 248px;
  height: 376px;
  position: absolute;
  top: 41px;
  left: 0;
}
.strengths .lead::after,
.business.page-parent .lead::after {
  content: "";
  background-image: url(../images/strengths/strengths_bg2.svg);
  background-size: cover;
  display: block;
  width: 212px;
  height: 226px;
  position: absolute;
  bottom: -24px;
  right: 0;
}
.strengths .lead .container,
.business.page-parent .lead .container {
  width: 61rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 991px) {
  .strengths .lead .container,
  .business.page-parent .lead .container {
    width: 100%;
    max-width: none;
  }
}
.strengths .lead .section-title,
.business.page-parent .lead .section-title {
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}
.strengths .lead p,
.business.page-parent .lead p {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2.72;
  text-align: center;
  margin: 0;
}
.strengths .lead p strong,
.business.page-parent .lead p strong {
  color: var(--main-color);
}
.strengths .strengths-guide,
.business.page-parent .strengths-guide {
  padding: 86px 0 160px;
  background: #FCFAF9;
  position: relative;
}
@media screen and (max-width: 767px) {
  .strengths .strengths-guide,
  .business.page-parent .strengths-guide {
    padding: 60.2px 0 40px;
  }
}
@media screen and (max-width: 479px) {
  .strengths .strengths-guide,
  .business.page-parent .strengths-guide {
    padding: 43px 0 0;
  }
}
.strengths .strengths-guide .section-title,
.business.page-parent .strengths-guide .section-title {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .strengths .strengths-guide .section-title,
  .business.page-parent .strengths-guide .section-title {
    margin-bottom: 1rem;
  }
}
.strengths .strengths-guide .strengths-list,
.business.page-parent .strengths-guide .strengths-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 125px 0;
  width: 68rem;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .strengths .strengths-guide .strengths-list,
  .business.page-parent .strengths-guide .strengths-list {
    width: 100%;
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .strengths .strengths-guide .strengths-list,
  .business.page-parent .strengths-guide .strengths-list {
    flex-direction: column;
    gap: 5rem;
    margin: 0 auto 77.6px;
  }
}
.strengths .strengths-guide .contents-wrapper,
.business.page-parent .strengths-guide .contents-wrapper {
  width: 42.56%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .strengths .strengths-guide .contents-wrapper,
  .business.page-parent .strengths-guide .contents-wrapper {
    width: 100%;
    gap: 3rem;
  }
}
.strengths .strengths-guide .contents-wrapper .pic,
.business.page-parent .strengths-guide .contents-wrapper .pic {
  width: 100%;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .strengths .strengths-guide .contents-wrapper .pic,
  .business.page-parent .strengths-guide .contents-wrapper .pic {
    width: auto;
    height: auto;
  }
}
.strengths .strengths-guide .contents-wrapper .pic img,
.business.page-parent .strengths-guide .contents-wrapper .pic img {
  display: block;
}
.strengths .strengths-guide .contents-wrapper.is-strengths1 .pic img,
.business.page-parent .strengths-guide .contents-wrapper.is-strengths1 .pic img {
  width: 360px;
  height: 377px;
}
@media screen and (max-width: 991px) {
  .strengths .strengths-guide .contents-wrapper.is-strengths1 .pic img,
  .business.page-parent .strengths-guide .contents-wrapper.is-strengths1 .pic img {
    width: 100;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .strengths .strengths-guide .contents-wrapper.is-strengths1 .pic img,
  .business.page-parent .strengths-guide .contents-wrapper.is-strengths1 .pic img {
    width: 60%;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  .strengths .strengths-guide .contents-wrapper.is-strengths1 .pic img,
  .business.page-parent .strengths-guide .contents-wrapper.is-strengths1 .pic img {
    width: 75%;
    height: auto;
  }
}
.strengths .strengths-guide .contents-wrapper.is-strengths2 .pic img,
.business.page-parent .strengths-guide .contents-wrapper.is-strengths2 .pic img {
  width: 418px;
  height: 306px;
}
@media screen and (max-width: 991px) {
  .strengths .strengths-guide .contents-wrapper.is-strengths2 .pic img,
  .business.page-parent .strengths-guide .contents-wrapper.is-strengths2 .pic img {
    width: 100;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .strengths .strengths-guide .contents-wrapper.is-strengths2 .pic img,
  .business.page-parent .strengths-guide .contents-wrapper.is-strengths2 .pic img {
    width: 60%;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  .strengths .strengths-guide .contents-wrapper.is-strengths2 .pic img,
  .business.page-parent .strengths-guide .contents-wrapper.is-strengths2 .pic img {
    width: 75%;
    height: auto;
  }
}
.strengths .strengths-guide .contents-wrapper.is-strengths3 .pic img,
.business.page-parent .strengths-guide .contents-wrapper.is-strengths3 .pic img {
  width: 364px;
  height: 356px;
}
@media screen and (max-width: 991px) {
  .strengths .strengths-guide .contents-wrapper.is-strengths3 .pic img,
  .business.page-parent .strengths-guide .contents-wrapper.is-strengths3 .pic img {
    width: 100;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .strengths .strengths-guide .contents-wrapper.is-strengths3 .pic img,
  .business.page-parent .strengths-guide .contents-wrapper.is-strengths3 .pic img {
    width: 60%;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  .strengths .strengths-guide .contents-wrapper.is-strengths3 .pic img,
  .business.page-parent .strengths-guide .contents-wrapper.is-strengths3 .pic img {
    width: 75%;
    height: auto;
  }
}
.strengths .strengths-guide .contents-wrapper.is-strengths4 .pic img,
.business.page-parent .strengths-guide .contents-wrapper.is-strengths4 .pic img {
  width: 365px;
  height: 374px;
}
@media screen and (max-width: 991px) {
  .strengths .strengths-guide .contents-wrapper.is-strengths4 .pic img,
  .business.page-parent .strengths-guide .contents-wrapper.is-strengths4 .pic img {
    width: 100;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .strengths .strengths-guide .contents-wrapper.is-strengths4 .pic img,
  .business.page-parent .strengths-guide .contents-wrapper.is-strengths4 .pic img {
    width: 60%;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  .strengths .strengths-guide .contents-wrapper.is-strengths4 .pic img,
  .business.page-parent .strengths-guide .contents-wrapper.is-strengths4 .pic img {
    width: 75%;
    height: auto;
  }
}
.strengths .strengths-guide .contents-wrapper .guide,
.business.page-parent .strengths-guide .contents-wrapper .guide {
  padding-left: 3rem;
}
.strengths .container.is-bestanswer,
.business.page-parent .container.is-bestanswer {
  width: 68rem;
  background: #F2F0EE;
  margin: 5.1875rem auto 0;
  padding: 4rem 3.5rem;
  gap: 0 !important;
}
@media screen and (max-width: 767px) {
  .strengths .container.is-bestanswer,
  .business.page-parent .container.is-bestanswer {
    width: 90% !important;
    margin: 5.1875rem 5% 0;
    padding: 3rem 2.625rem;
  }
}
.strengths .container.is-bestanswer .bestanswer-header,
.business.page-parent .container.is-bestanswer .bestanswer-header {
  display: inline-block;
  background-color: #000;
  color: #FFF;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  padding: 0.15rem 0 0.15rem 1rem;
  margin: 0 0 1.5rem;
}
@media screen and (max-width: 767px) {
  .strengths .container.is-bestanswer .bestanswer-header,
  .business.page-parent .container.is-bestanswer .bestanswer-header {
    font-size: 1.375rem;
  }
}
.strengths .container.is-bestanswer .bestanswer-sub-header,
.business.page-parent .container.is-bestanswer .bestanswer-sub-header {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.15em;
  color: var(--main-color);
  margin: 0 0 2rem;
}
@media screen and (max-width: 767px) {
  .strengths .container.is-bestanswer .bestanswer-sub-header,
  .business.page-parent .container.is-bestanswer .bestanswer-sub-header {
    font-size: 1.25rem;
  }
}
.strengths .container.is-bestanswer .bestanswer-body,
.business.page-parent .container.is-bestanswer .bestanswer-body {
  max-width: 760px;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .strengths .container.is-bestanswer .bestanswer-body,
  .business.page-parent .container.is-bestanswer .bestanswer-body {
    text-align: left;
    margin-bottom: 2rem;
  }
}
.strengths .container.is-bestanswer .bestanswer-figs,
.business.page-parent .container.is-bestanswer .bestanswer-figs {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .strengths .container.is-bestanswer .bestanswer-figs,
  .business.page-parent .container.is-bestanswer .bestanswer-figs {
    flex-direction: column;
    gap: 1.5rem;
    width: 90%;
  }
}
@media screen and (max-width: 480px) {
  .strengths .container.is-bestanswer .bestanswer-figs,
  .business.page-parent .container.is-bestanswer .bestanswer-figs {
    width: 100%;
  }
}
.strengths .container.is-bestanswer .bestanswer-figs li,
.business.page-parent .container.is-bestanswer .bestanswer-figs li {
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  border: 2px solid var(--text-color);
  padding: 25px 35px;
}
@media screen and (max-width: 767px) {
  .strengths .container.is-bestanswer .bestanswer-figs li,
  .business.page-parent .container.is-bestanswer .bestanswer-figs li {
    min-height: 26.6vw;
  }
}
@media screen and (max-width: 480px) {
  .strengths .container.is-bestanswer .bestanswer-figs li,
  .business.page-parent .container.is-bestanswer .bestanswer-figs li {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
  }
}
.strengths .container.is-bestanswer .bestanswer-figs li img,
.business.page-parent .container.is-bestanswer .bestanswer-figs li img {
  display: block;
  height: auto;
}
.strengths .container.is-bestanswer .bestanswer-figs li img[src*=fig1a],
.business.page-parent .container.is-bestanswer .bestanswer-figs li img[src*=fig1a] {
  width: 41.47%;
}
@media screen and (max-width: 480px) {
  .strengths .container.is-bestanswer .bestanswer-figs li img[src*=fig1a],
  .business.page-parent .container.is-bestanswer .bestanswer-figs li img[src*=fig1a] {
    width: 76.7195%;
  }
}
.strengths .container.is-bestanswer .bestanswer-figs li img[src*=fig1b],
.business.page-parent .container.is-bestanswer .bestanswer-figs li img[src*=fig1b] {
  width: 45.5%;
}
@media screen and (max-width: 480px) {
  .strengths .container.is-bestanswer .bestanswer-figs li img[src*=fig1b],
  .business.page-parent .container.is-bestanswer .bestanswer-figs li img[src*=fig1b] {
    width: 84.175%;
  }
}
.strengths .container.is-bestanswer .bestanswer-figs li img[src*=fig2a],
.business.page-parent .container.is-bestanswer .bestanswer-figs li img[src*=fig2a] {
  width: 32.7%;
}
@media screen and (max-width: 480px) {
  .strengths .container.is-bestanswer .bestanswer-figs li img[src*=fig2a],
  .business.page-parent .container.is-bestanswer .bestanswer-figs li img[src*=fig2a] {
    width: 60.495%;
  }
}
.strengths .container.is-bestanswer .bestanswer-figs li img[src*=fig2b],
.business.page-parent .container.is-bestanswer .bestanswer-figs li img[src*=fig2b] {
  width: 54.03%;
}
@media screen and (max-width: 480px) {
  .strengths .container.is-bestanswer .bestanswer-figs li img[src*=fig2b],
  .business.page-parent .container.is-bestanswer .bestanswer-figs li img[src*=fig2b] {
    width: 99.9555%;
  }
}
.strengths .anniversary,
.business.page-parent .anniversary {
  padding: 71px 0 110px;
  background: var(--main-color);
}
@media screen and (max-width: 767px) {
  .strengths .anniversary,
  .business.page-parent .anniversary {
    padding: 49.7px 0 66px;
  }
}
@media screen and (max-width: 480px) {
  .strengths .anniversary,
  .business.page-parent .anniversary {
    padding: 35.5px 0 44px;
  }
}
.strengths .anniversary .anniversary-banner,
.business.page-parent .anniversary .anniversary-banner {
  width: 61rem;
  padding: 38px 48px;
  margin: 0 auto 0;
  display: flex;
  justify-content: space-between;
  background: #fff;
  border: 1.5px solid #0f0f0f;
  position: relative;
}
@media screen and (max-width: 991px) {
  .strengths .anniversary .anniversary-banner,
  .business.page-parent .anniversary .anniversary-banner {
    width: 100%;
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .strengths .anniversary .anniversary-banner,
  .business.page-parent .anniversary .anniversary-banner {
    padding: 30.4px 38.4px;
  }
}
@media screen and (max-width: 639px) {
  .strengths .anniversary .anniversary-banner,
  .business.page-parent .anniversary .anniversary-banner {
    flex-direction: column;
    gap: 2rem;
    padding: 30.4px 28.8px;
  }
}
.strengths .anniversary .anniversary-banner::after,
.business.page-parent .anniversary .anniversary-banner::after {
  content: "";
  background-image: url(../images/company/anniversary-pic2.svg);
  background-size: cover;
  width: 243px;
  height: 189px;
  position: absolute;
  right: -57px;
  bottom: -89px;
}
@media screen and (max-width: 767px) {
  .strengths .anniversary .anniversary-banner::after,
  .business.page-parent .anniversary .anniversary-banner::after {
    width: 170.1px;
    height: 132.3px;
    right: -47px;
    bottom: -50px;
  }
}
@media screen and (max-width: 479px) {
  .strengths .anniversary .anniversary-banner::after,
  .business.page-parent .anniversary .anniversary-banner::after {
    width: 121.5px;
    height: 94.5px;
    right: -27px;
    bottom: -50px;
  }
}
@media screen and (max-width: 767px) {
  .strengths .anniversary .anniversary-banner .pic,
  .business.page-parent .anniversary .anniversary-banner .pic {
    width: 40%;
  }
}
@media screen and (max-width: 639px) {
  .strengths .anniversary .anniversary-banner .pic,
  .business.page-parent .anniversary .anniversary-banner .pic {
    align-self: center;
    width: 100%;
  }
}
.strengths .anniversary .anniversary-banner .pic img,
.business.page-parent .anniversary .anniversary-banner .pic img {
  width: 333px;
  height: 253px;
}
@media screen and (max-width: 767px) {
  .strengths .anniversary .anniversary-banner .pic img,
  .business.page-parent .anniversary .anniversary-banner .pic img {
    width: 100%;
    height: auto;
  }
}
.strengths .anniversary .anniversary-banner .guide,
.business.page-parent .anniversary .anniversary-banner .guide {
  width: 55.87%;
}
@media screen and (max-width: 991px) {
  .strengths .anniversary .anniversary-banner .guide,
  .business.page-parent .anniversary .anniversary-banner .guide {
    padding-left: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .strengths .anniversary .anniversary-banner .guide,
  .business.page-parent .anniversary .anniversary-banner .guide {
    padding-left: 0;
  }
}
@media screen and (max-width: 639px) {
  .strengths .anniversary .anniversary-banner .guide,
  .business.page-parent .anniversary .anniversary-banner .guide {
    width: 100%;
  }
}
.strengths .anniversary .anniversary-banner .guide .contents-title,
.business.page-parent .anniversary .anniversary-banner .guide .contents-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin: 0 0 0.5rem;
}
.strengths .anniversary .anniversary-banner .guide p,
.business.page-parent .anniversary .anniversary-banner .guide p {
  font-size: 16px;
  font-weight: 500;
  line-height: 2.35;
  margin: 0;
}
.strengths .anniversary .anniversary-banner .button_view-pdf,
.business.page-parent .anniversary .anniversary-banner .button_view-pdf {
  color: var(--text-color);
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 3.5;
  width: 250px;
  height: 50px;
  margin: 1rem 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 1rem;
  background-color: #FFF;
  border: solid 1.5px var(--text-color);
  text-decoration: none;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 479px) {
  .strengths .anniversary .anniversary-banner .button_view-pdf,
  .business.page-parent .anniversary .anniversary-banner .button_view-pdf {
    width: 100%;
    font-size: 1.06875rem;
  }
}
.strengths .anniversary .anniversary-banner .button_view-pdf::after,
.business.page-parent .anniversary .anniversary-banner .button_view-pdf::after {
  content: "";
  background-image: url(../images/common/arrow-button.svg);
  background-size: cover;
  width: 13px;
  height: 8px;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}
@media (any-hover: hover) {
  .strengths .anniversary .anniversary-banner .button_view-pdf:hover,
  .business.page-parent .anniversary .anniversary-banner .button_view-pdf:hover {
    color: #fff;
    background-color: var(--main-color);
    border: solid 1.5px var(--main-color);
  }
  .strengths .anniversary .anniversary-banner .button_view-pdf:hover::after,
  .business.page-parent .anniversary .anniversary-banner .button_view-pdf:hover::after {
    filter: invert(100%);
  }
}
.strengths .flow,
.business.page-parent .flow {
  padding: 90px 0;
  background: #FCFAF9;
  margin-top: 14px;
  margin-bottom: 14px;
}
@media screen and (max-width: 767px) {
  .strengths .flow,
  .business.page-parent .flow {
    padding: 67.5px 0;
  }
}
.strengths .flow::before,
.business.page-parent .flow::before {
  content: "";
  background-image: url(../images/strengths/strengths_bg3.svg);
  background-size: cover;
  display: block;
  width: 405px;
  height: 435px;
  position: absolute;
  bottom: -85px;
  left: -150px;
}
@media screen and (max-width: 1200px) {
  .strengths .flow::before,
  .business.page-parent .flow::before {
    width: 344.25px;
    height: 369.75px;
    bottom: -85px;
    left: -5vw;
  }
}
@media screen and (max-width: 991px) {
  .strengths .flow::before,
  .business.page-parent .flow::before {
    width: 283.5px;
    height: 304.5px;
    bottom: -85px;
    left: -12vw;
  }
}
@media screen and (max-width: 767px) {
  .strengths .flow::before,
  .business.page-parent .flow::before {
    width: 243px;
    height: 261px;
    bottom: -85px;
  }
}
.strengths .flow::after,
.business.page-parent .flow::after {
  content: "";
  background-image: url(../images/strengths/strengths_bg4.svg);
  background-size: cover;
  display: block;
  width: 228px;
  height: 276px;
  position: absolute;
  bottom: -30px;
  right: -59px;
  z-index: -1;
}
@media screen and (max-width: 1200px) {
  .strengths .flow::after,
  .business.page-parent .flow::after {
    width: 193.8px;
    height: 234.6px;
    bottom: -10px;
    right: -49px;
  }
}
@media screen and (max-width: 767px) {
  .strengths .flow::after,
  .business.page-parent .flow::after {
    width: 171px;
    height: 207px;
  }
}
.strengths .flow .flow-list-wrapper,
.business.page-parent .flow .flow-list-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 80px;
  margin: 3.3rem 0 -1.5rem;
}
@media screen and (max-width: 767px) {
  .strengths .flow .flow-list-wrapper,
  .business.page-parent .flow .flow-list-wrapper {
    gap: 50px;
  }
}
.strengths .flow .flow-point,
.business.page-parent .flow .flow-point {
  text-align: center;
}
.strengths .flow .flow-point dt,
.business.page-parent .flow .flow-point dt {
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: var(--main-color);
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .strengths .flow .flow-point dt,
  .business.page-parent .flow .flow-point dt {
    font-size: 1.25rem;
  }
}
.strengths .flow .flow-item,
.business.page-parent .flow .flow-item {
  writing-mode: vertical-rl;
  list-style: none;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  display: flex;
}
@media screen and (max-width: 767px) {
  .strengths .flow .flow-item,
  .business.page-parent .flow .flow-item {
    writing-mode: horizontal-tb;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 479px) {
  .strengths .flow .flow-item,
  .business.page-parent .flow .flow-item {
    font-size: 1.125rem;
  }
}
.strengths .flow .flow-item::before,
.business.page-parent .flow .flow-item::before {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  background-color: #FFF;
  border: solid 2px #D2382B;
}
@media screen and (max-width: 767px) {
  .strengths .flow .flow-item::before,
  .business.page-parent .flow .flow-item::before {
    margin-right: 1rem;
    width: 16.8px;
    height: 16.8px;
  }
}
.strengths .flow .flow-item:first-of-type::before, .strengths .flow .flow-item:last-of-type::before,
.business.page-parent .flow .flow-item:first-of-type::before,
.business.page-parent .flow .flow-item:last-of-type::before {
  content: "";
  background-color: #D2382B;
}
.strengths .flow .flow-item span,
.business.page-parent .flow .flow-item span {
  padding-top: 1rem;
}
@media screen and (max-width: 767px) {
  .strengths .flow .flow-item span,
  .business.page-parent .flow .flow-item span {
    padding-top: 0;
  }
}
.strengths .button_download,
.strengths .button_more,
.business.page-parent .button_download,
.business.page-parent .button_more {
  color: var(--text-color);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 3.5;
  width: 250px;
  height: 50px;
  margin: 6rem auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 1rem;
  background-color: #FFF;
  border: solid 1.5px var(--text-color);
  text-decoration: none;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 767px) {
  .strengths .button_download,
  .strengths .button_more,
  .business.page-parent .button_download,
  .business.page-parent .button_more {
    height: 50px;
  }
}
@media screen and (max-width: 479px) {
  .strengths .button_download,
  .strengths .button_more,
  .business.page-parent .button_download,
  .business.page-parent .button_more {
    width: 95%;
  }
}
.strengths .button_download::after,
.strengths .button_more::after,
.business.page-parent .button_download::after,
.business.page-parent .button_more::after {
  content: "";
  background-image: url(../images/common/arrow-button.svg);
  background-size: cover;
  width: 13px;
  height: 8px;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}
@media (any-hover: hover) {
  .strengths .button_download:hover,
  .strengths .button_more:hover,
  .business.page-parent .button_download:hover,
  .business.page-parent .button_more:hover {
    color: #fff !important;
    background-color: var(--main-color);
    border: solid 1.5px var(--main-color);
  }
  .strengths .button_download:hover::after,
  .strengths .button_more:hover::after,
  .business.page-parent .button_download:hover::after,
  .business.page-parent .button_more:hover::after {
    filter: invert(100%);
  }
}
.strengths .button_download,
.business.page-parent .button_download {
  font-size: 0.8125rem;
  margin: 26px auto 0;
}
@media (any-hover: hover) {
  .strengths .button_download:hover,
  .business.page-parent .button_download:hover {
    border: solid 1.5px #FFF;
  }
}

.business.page-parent .lead::after {
  content: none !important;
}

.business.page .contents-title-header {
  margin-bottom: 3rem;
}
.business.page .contents-title-header .container {
  background-repeat: no-repeat;
  min-height: 402px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  width: 61rem;
}
@media screen and (max-width: 991px) {
  .business.page .contents-title-header .container {
    width: 100%;
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .business.page .contents-title-header .container {
    min-height: 321.6px;
  }
}
@media screen and (max-width: 639px) {
  .business.page .contents-title-header .container {
    justify-content: flex-start;
    padding-top: 10%;
  }
}
@media screen and (max-width: 479px) {
  .business.page .contents-title-header .container {
    min-height: 281.4px;
  }
}
.business.page .contents-title-header .business-category {
  display: inline-block;
  background-color: #000;
  color: #FFF;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  padding: 0.5rem;
}
@media screen and (max-width: 1280px) {
  .business.page .contents-title-header .business-category {
    line-height: 1.5;
  }
}
@media screen and (max-width: 767px) {
  .business.page .contents-title-header .business-category {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 479px) {
  .business.page .contents-title-header .business-category {
    font-size: 1.21875rem;
    letter-spacing: 0.05em;
  }
}
.business.page .contents-title-header .contents-title {
  margin: 1rem 0 0;
}
@media screen and (max-width: 479px) {
  .business.page .contents-title-header .contents-title {
    margin: 0.5rem 0 0;
  }
}
.business.page .section-title {
  font-family: "Zen Kaku Gothic New";
  font-weight: bold;
  font-size: 1.5625rem;
  letter-spacing: 0.08em;
  line-height: 2;
  text-align: left;
  color: var(--text-color);
  margin: 0;
}
@media screen and (max-width: 767px) {
  .business.page .section-title {
    font-size: 1.25rem;
  }
}
.business.page .section-title.is-flow {
  font-size: 1.875rem;
}
@media screen and (max-width: 767px) {
  .business.page .section-title.is-flow {
    font-size: 1.5625rem;
  }
}
.business.page .lead .container {
  width: 68rem;
}
@media screen and (max-width: 1280px) {
  .business.page .lead .container {
    width: 100%;
  }
}
.business.page .lead .section-title {
  width: 56vw;
  max-width: 690px;
  margin-bottom: 1.5rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .business.page .lead .section-title {
    width: 100%;
    white-space: wrap;
  }
}
@media screen and (max-width: 479px) {
  .business.page .lead .section-title br {
    display: none;
  }
}
.business.page .lead p {
  width: 58vw;
  max-width: 720px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.375;
  color: var(--text-color);
  margin: 0;
}
@media screen and (max-width: 767px) {
  .business.page .lead p {
    width: 100%;
  }
}
.business.page .business-guide .container.is-business-guide {
  width: 68rem;
  background: #FCFAF9;
  border: 2px solid var(--text-color);
  margin: 5.1875rem auto 5.3125rem;
  padding: 105px 90px 58px;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 1280px) {
  .business.page .business-guide .container.is-business-guide {
    width: 90%;
    max-width: none;
    margin-left: 5%;
    margin-right: 5%;
  }
}
@media screen and (max-width: 991px) {
  .business.page .business-guide .container.is-business-guide {
    padding: 84px 72px 46.4px;
  }
}
@media screen and (max-width: 767px) {
  .business.page .business-guide .container.is-business-guide {
    padding: 63px 45px 29px;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 479px) {
  .business.page .business-guide .container.is-business-guide {
    padding: 42px 27px 17.4px;
  }
}
.business.page .business-guide .section-label.en-text {
  font-family: "Inter Tight";
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-align: left;
  color: #d2382b;
}
.business.page .business-guide .section-title {
  font-family: "Zen Kaku Gothic New";
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.08em;
  line-height: 1.8;
  text-align: left;
  color: #0f0f0f;
  margin-bottom: 83px;
}
@media screen and (max-width: 479px) {
  .business.page .business-guide .section-title {
    margin-bottom: 41.5px;
  }
}
.business.page .business-guide .guide-list {
  padding-left: 0;
}
.business.page .business-guide .guide-item {
  list-style: none;
  margin-bottom: 7rem;
  display: flex;
  align-items: center;
  gap: 80px;
}
@media screen and (max-width: 991px) {
  .business.page .business-guide .guide-item {
    gap: 48px;
    align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .business.page .business-guide .guide-item {
    gap: 32px;
    margin-bottom: 3.5rem;
  }
}
@media screen and (max-width: 639px) {
  .business.page .business-guide .guide-item {
    gap: 20px;
  }
}
@media screen and (max-width: 479px) {
  .business.page .business-guide .guide-item {
    gap: 16px;
  }
}
.business.page .business-guide .guide-item::before {
  content: "";
  width: 145px;
  height: 145px;
  background-size: cover;
  display: block;
}
@media screen and (max-width: 991px) {
  .business.page .business-guide .guide-item::before {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .business.page .business-guide .guide-item::before {
    width: 101.5px;
    height: 101.5px;
  }
}
@media screen and (max-width: 639px) {
  .business.page .business-guide .guide-item::before {
    width: 87px;
    height: 87px;
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 479px) {
  .business.page .business-guide .guide-item::before {
    width: 58px;
    height: 58px;
  }
}
.business.page .business-guide .guide-item .guide-text-wrapper {
  flex: 1;
}
.business.page .business-guide .guide-item p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.375;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .business.page .business-guide .guide-item p {
    line-height: 2;
  }
}
.business.page .business-guide .guide-item .guide-notice {
  color: var(--main-color);
}
.business.page .business-guide .guide-item:nth-of-type(1)::before {
  background-image: url(../images/business/icon-business1.svg);
}
.business.page .business-guide .guide-item:nth-of-type(2)::before {
  background-image: url(../images/business/icon-business2.svg);
}
.business.page .business-guide .guide-item:nth-of-type(3)::before {
  background-image: url(../images/business/icon-business3.svg);
}
.business.page .business-guide .guide-item:nth-of-type(4)::before {
  background-image: url(../images/business/icon-business4.svg);
}
.business.page .business-guide .guide-item.is-inside:nth-of-type(1)::before {
  background-image: url(../images/business/icon-business1-inside.svg);
}
.business.page .business-guide .guide-item.is-inside:nth-of-type(2)::before {
  background-image: url(../images/business/icon-business2-inside.svg);
}
.business.page .business-guide .guide-item.is-inside:nth-of-type(3)::before {
  background-image: url(../images/business/icon-business3-inside.svg);
}
.business.page .business-guide .guide-item.is-inside:nth-of-type(4)::before {
  background-image: url(../images/business/icon-business4-inside.svg);
}
.business.page .business-guide .guide-item.is-inside:nth-of-type(5)::before {
  background-image: url(../images/business/icon-business5-inside.svg);
}
.business.page .business-guide .guide-item.is-inside:nth-of-type(6)::before {
  background-image: url(../images/business/icon-business6-inside.svg);
}
.business.page .business-guide .guide-item.is-facility:nth-of-type(1)::before {
  background-image: url(../images/business/icon-business1-facility.svg);
}
.business.page .business-guide .guide-item.is-facility:nth-of-type(2)::before {
  background-image: url(../images/business/icon-business2-facility.svg);
}
.business.page .business-guide .guide-item.is-facility:nth-of-type(3)::before {
  background-image: url(../images/business/icon-business3-facility.svg);
}
.business.page .business-guide .guide-item.is-facility:nth-of-type(4)::before {
  background-image: url(../images/business/icon-business4-facility.svg);
}
.business.page .business-guide .guide-item:last-of-type {
  margin-bottom: 3rem;
}
.business.page .business-guide .contents-title {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin: 0 0 0.751rem;
  border-bottom: solid 2px #0F0F0F;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .business.page .business-guide .contents-title {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 479px) {
  .business.page .business-guide .contents-title {
    font-size: 1.25rem;
  }
}
.business.page .business-guide .option-guide {
  margin-top: 176px;
}
@media screen and (max-width: 767px) {
  .business.page .business-guide .option-guide {
    margin-top: 88px;
  }
}
@media screen and (max-width: 479px) {
  .business.page .business-guide .option-guide {
    margin-top: 61.6px;
  }
}
.business.page .business-guide .option-guide .section-title {
  margin-bottom: 58px;
}
@media screen and (max-width: 479px) {
  .business.page .business-guide .option-guide .section-title {
    margin-bottom: 40.6px;
  }
}
.business.page .business-guide .option-guide .option-list {
  margin-bottom: 58px;
  display: flex;
  justify-content: space-between;
  padding-left: 0;
  list-style: none;
}
@media screen and (max-width: 639px) {
  .business.page .business-guide .option-guide .option-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}
.business.page .business-guide .option-guide .option-item {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .business.page .business-guide .option-guide .option-item {
    font-size: 0.8125rem;
  }
}
.business.page .business-guide .option-guide .option-item::before {
  content: "";
  background-size: cover;
  width: 145px;
  height: 145px;
}
@media screen and (max-width: 991px) {
  .business.page .business-guide .option-guide .option-item::before {
    width: 123.25px;
    height: 123.25px;
  }
}
@media screen and (max-width: 767px) {
  .business.page .business-guide .option-guide .option-item::before {
    width: 101.5px;
    height: 101.5px;
  }
}
@media screen and (max-width: 639px) {
  .business.page .business-guide .option-guide .option-item::before {
    width: 108.75px;
    height: 108.75px;
  }
}
.business.page .business-guide .option-guide .option-item:nth-of-type(1)::before {
  background-image: url(../images/business/icon-business-op1.svg);
}
.business.page .business-guide .option-guide .option-item:nth-of-type(2)::before {
  background-image: url(../images/business/icon-business-op2.svg);
}
.business.page .business-guide .option-guide .option-item:nth-of-type(3)::before {
  background-image: url(../images/business/icon-business-op3.svg);
}
.business.page .business-guide .option-guide .option-item:nth-of-type(4)::before {
  background-image: url(../images/business/icon-business-op4.svg);
}
.business.page .business-guide .option-guide a {
  font-family: "Zen Kaku Gothic New";
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 24px;
  color: #535353;
}
.business.page .other-business {
  padding: 85px 0 65px;
  background: #f2f0ee;
}
@media screen and (max-width: 767px) {
  .business.page .other-business {
    padding: 60px 0;
  }
}
.business.page .other-business .business-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10.83%;
  padding: 0;
}
@media screen and (max-width: 991px) {
  .business.page .other-business .business-list {
    gap: 5.415%;
  }
}
@media screen and (max-width: 639px) {
  .business.page .other-business .business-list {
    gap: 30px;
  }
}
.business.page .other-business .business-item {
  flex: 1;
  padding-bottom: 19px;
  border-bottom: 1.5px solid #0f0f0f;
  padding-left: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-family: "Zen Kaku Gothic New";
  font-weight: bold;
  font-size: 30px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-align: left;
  color: #000;
}
@media screen and (max-width: 991px) {
  .business.page .other-business .business-item {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 639px) {
  .business.page .other-business .business-item {
    width: 100%;
    flex: auto;
  }
}
.business.page .other-business .business-item::after {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url(../images/common/arrow-pagetop.svg);
  background-size: cover;
  transform: rotate(90deg);
  display: block;
}
@media (any-hover: hover) {
  .business.page .other-business .business-item:hover::after {
    background-image: url(../images/common/arrow-pagetop-on.svg);
    width: 32px;
    height: 30px;
  }
}
.business.page .other-business .business-item a {
  text-decoration: none;
  color: #000;
  width: 100%;
}
.business.page .other-business .business-item .en {
  font-family: "Inter Tight";
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-align: left;
  color: #d2382b;
  display: block;
}
.business.page.inside .contents-title-header .container {
  background-image: url(../images/home/home-business-pic1.webp);
  background-image: url(../images/home/home-business-pic1.svg);
  background-size: 438px 280px;
  background-position: right 20px bottom 40px;
}
@media screen and (max-width: 991px) {
  .business.page.inside .contents-title-header .container {
    background-size: 394.2px 252px;
    background-position: right 20px bottom 40px;
  }
}
@media screen and (max-width: 767px) {
  .business.page.inside .contents-title-header .container {
    background-size: 306.6px 196px;
    background-position: right 20px bottom 40px;
  }
}
@media screen and (max-width: 639px) {
  .business.page.inside .contents-title-header .container {
    background-size: 262.8px 168px;
    background-position: right 20px bottom 30px;
  }
}
@media screen and (max-width: 479px) {
  .business.page.inside .contents-title-header .container {
    background-size: 219px 140px;
    background-position: right 20px bottom 20px;
  }
}
.business.page.inside .business-guide {
  position: relative;
  padding-top: 324px;
  margin-top: -324px;
}
@media screen and (max-width: 767px) {
  .business.page.inside .business-guide {
    padding-top: 404px;
  }
}
@media screen and (max-width: 479px) {
  .business.page.inside .business-guide {
    padding-top: 360px;
  }
}
.business.page.inside .business-guide::before {
  content: "";
  background-image: url(../images/business/business-bg1-red.webp);
  background-size: cover;
  width: 100%;
  padding-top: 38.26%;
  position: absolute;
  top: 574px;
  left: 0;
  z-index: -1;
}
.business.page.inside .business-guide::after {
  content: "";
  background-image: url(../images/business/business-bg2-red.webp);
  background-size: cover;
  width: 100%;
  padding-top: 44.34%;
  position: absolute;
  bottom: 250px;
  left: 0;
}
.business.page.inside .business-guide .container.is-business-guide {
  position: relative;
}
.business.page.inside .business-guide .container.is-business-guide::before {
  content: "";
  background-image: url(../images/business/inside-men.svg);
  background-size: cover;
  display: block;
  width: 385px;
  height: 324px;
  position: absolute;
  right: -35px;
  top: -270px;
}
@media screen and (max-width: 1200px) {
  .business.page.inside .business-guide .container.is-business-guide::before {
    width: 346.5px;
    height: 291.6px;
    right: -35px;
    top: -240px;
  }
}
@media screen and (max-width: 1024px) {
  .business.page.inside .business-guide .container.is-business-guide::before {
    width: 269.5px;
    height: 226.8px;
    right: -35px;
    top: -190px;
  }
}
@media screen and (max-width: 767px) {
  .business.page.inside .business-guide .container.is-business-guide::before {
    width: 231px;
    height: 194.4px;
    right: -35px;
    top: -160px;
  }
}
@media screen and (max-width: 479px) {
  .business.page.inside .business-guide .container.is-business-guide::before {
    width: 154px;
    height: 129.6px;
    right: -20px;
    top: -105px;
  }
}
.business.page.inside .business-guide .container.is-business-guide a.info-more {
  color: var(--text-color);
}
.business.page.inside .business-guide .container.is-business-guide a.info-more:hover {
  text-decoration: none;
}
.business.page.facility .contents-title-header .container {
  background-image: url(../images/home/home-business-pic2.svg);
  background-size: 416px 280px;
  background-position: right 20px center;
}
@media screen and (max-width: 991px) {
  .business.page.facility .contents-title-header .container {
    background-size: 374.4px 252px;
    background-position: right 20px center;
  }
}
@media screen and (max-width: 767px) {
  .business.page.facility .contents-title-header .container {
    background-size: 291.2px 196px;
    background-position: right 20px bottom 40px;
  }
}
@media screen and (max-width: 639px) {
  .business.page.facility .contents-title-header .container {
    background-size: 249.6px 168px;
    background-position: right 20px bottom 30px;
  }
}
@media screen and (max-width: 479px) {
  .business.page.facility .contents-title-header .container {
    background-size: 187.2px 126px;
    background-position: right 20px bottom 20px;
  }
}
.business.page.facility .business-guide {
  position: relative;
  padding-top: 320px;
  margin-top: -320px;
}
@media screen and (max-width: 767px) {
  .business.page.facility .business-guide {
    padding-top: 404px;
  }
}
@media screen and (max-width: 479px) {
  .business.page.facility .business-guide {
    padding-top: 360px;
  }
}
.business.page.facility .business-guide::before {
  content: "";
  background-image: url(../images/business/business-bg1-blue.webp);
  background-size: cover;
  width: 100%;
  padding-top: 38.26%;
  position: absolute;
  top: 570px;
  left: 0;
  z-index: -1;
}
.business.page.facility .business-guide::after {
  content: "";
  background-image: url(../images/business/business-bg2-red.webp);
  background-size: cover;
  width: 100%;
  padding-top: 44.34%;
  position: absolute;
  bottom: 250px;
  left: 0;
}
.business.page.facility .business-guide .container.is-business-guide {
  position: relative;
}
.business.page.facility .business-guide .container.is-business-guide::before {
  content: "";
  background-image: url(../images/business/facility-men.svg);
  background-size: cover;
  display: block;
  width: 381px;
  height: 320px;
  position: absolute;
  right: -31px;
  top: -267px;
}
@media screen and (max-width: 1200px) {
  .business.page.facility .business-guide .container.is-business-guide::before {
    width: 342.9px;
    height: 288px;
    right: -27px;
    top: -240px;
  }
}
@media screen and (max-width: 1024px) {
  .business.page.facility .business-guide .container.is-business-guide::before {
    width: 266.7px;
    height: 224px;
    right: -21px;
    top: -190px;
  }
}
@media screen and (max-width: 767px) {
  .business.page.facility .business-guide .container.is-business-guide::before {
    width: 228.6px;
    height: 192px;
    right: -19px;
    top: -160px;
  }
}
@media screen and (max-width: 479px) {
  .business.page.facility .business-guide .container.is-business-guide::before {
    width: 152.4px;
    height: 128px;
    right: -13px;
    top: -105px;
  }
}
.business.page.others .contents-title-header .container {
  background-image: url(../images/home/home-business-pic3.svg);
  background-size: 399px 276px;
  background-position: right 10px center;
}
@media screen and (max-width: 991px) {
  .business.page.others .contents-title-header .container {
    background-size: 359.1px 248.4px;
    background-position: right 20px center;
  }
}
@media screen and (max-width: 767px) {
  .business.page.others .contents-title-header .container {
    background-size: 279.3px 193.2px;
    background-position: right 20px bottom 40px;
  }
}
@media screen and (max-width: 639px) {
  .business.page.others .contents-title-header .container {
    background-size: 239.4px 165.6px;
    background-position: right 20px bottom 30px;
  }
}
@media screen and (max-width: 479px) {
  .business.page.others .contents-title-header .container {
    background-size: 179.55px 124.2px;
  }
}
.business.page.others .business-guide {
  position: relative;
  padding-top: 312px;
  margin-top: -312px;
}
@media screen and (max-width: 767px) {
  .business.page.others .business-guide {
    padding-top: 404px;
  }
}
@media screen and (max-width: 479px) {
  .business.page.others .business-guide {
    padding-top: 360px;
  }
}
.business.page.others .business-guide::before {
  content: "";
  background-image: url(../images/business/business-bg1-blue.webp);
  background-size: cover;
  width: 100%;
  padding-top: 38.26%;
  position: absolute;
  top: 562px;
  left: 0;
  z-index: -1;
}
.business.page.others .business-guide::after {
  content: "";
  background-image: url(../images/business/business-bg2-blue.webp);
  background-size: cover;
  width: 100%;
  padding-top: 44.34%;
  position: absolute;
  bottom: 250px;
  left: 0;
}
.business.page.others .business-guide .container.is-business-guide {
  position: relative;
}
.business.page.others .business-guide .container.is-business-guide::before {
  content: "";
  background-image: url(../images/business/others-men.svg);
  background-size: cover;
  display: block;
  width: 434px;
  height: 312px;
  position: absolute;
  right: -68px;
  top: -254px;
}
@media screen and (max-width: 1200px) {
  .business.page.others .business-guide .container.is-business-guide::before {
    width: 390.6px;
    height: 280.8px;
    right: -61px;
    top: -230px;
  }
}
@media screen and (max-width: 1024px) {
  .business.page.others .business-guide .container.is-business-guide::before {
    width: 303.8px;
    height: 218.4px;
    right: -48px;
    top: -178px;
  }
}
@media screen and (max-width: 767px) {
  .business.page.others .business-guide .container.is-business-guide::before {
    width: 260.4px;
    height: 187.2px;
    right: -41px;
    top: -152px;
  }
}
@media screen and (max-width: 479px) {
  .business.page.others .business-guide .container.is-business-guide::before {
    width: 173.6px;
    height: 124.8px;
    right: -27px;
    top: -101px;
  }
}

.company .section-label.en-text {
  font-family: "Inter Tight";
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--main-color);
}
@media screen and (max-width: 767px) {
  .company .section-label.en-text {
    font-size: 1.0625rem;
  }
}
.company .section-title {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 2;
  margin: 0 0 72px;
}
@media screen and (max-width: 767px) {
  .company .section-title {
    margin: 0 0 50.4px;
  }
}
@media screen and (max-width: 479px) {
  .company .section-title {
    margin: 0 0 36px;
  }
}
.company .company-guide {
  background-color: #FCFAF9;
  padding: 64px 0 100px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .company .company-guide {
    padding: 44.8px 0 70px;
  }
}
@media screen and (max-width: 479px) {
  .company .company-guide {
    padding: 32px 0 50px;
  }
}
.company .company-guide::before {
  content: "";
  background-image: url(../images/company/company-bg1.svg);
  background-size: cover;
  display: block;
  width: 350px;
  height: 443px;
  position: absolute;
  bottom: -193px;
  left: -100px;
}
@media screen and (max-width: 1200px) {
  .company .company-guide::before {
    left: -170px;
  }
}
@media screen and (max-width: 767px) {
  .company .company-guide::before {
    width: 245px;
    height: 310.1px;
    bottom: -40px;
    left: -125px;
  }
}
@media screen and (max-width: 479px) {
  .company .company-guide::before {
    width: 175px;
    height: 221.5px;
  }
}
.company .company-guide::after {
  content: "";
  background-image: url(../images/company/company-bg2.svg);
  background-size: cover;
  display: block;
  width: 163px;
  height: 247px;
  position: absolute;
  top: 42px;
  right: 0;
}
@media screen and (max-width: 767px) {
  .company .company-guide::after {
    width: 114.1px;
    height: 172.9px;
    top: 42px;
    right: -20px;
  }
}
@media screen and (max-width: 479px) {
  .company .company-guide::after {
    width: 81.5px;
    height: 123.5px;
  }
}
.company .company-guide .company-guide-body {
  width: 61rem;
  margin: 0 auto 0;
}
@media screen and (max-width: 1200px) {
  .company .company-guide .company-guide-body {
    width: 100%;
  }
}
.company .company-guide .company-guide-body .company-guide-item {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  margin-bottom: 25px;
  border-bottom: 1px solid #dedede;
}
.company .company-guide .company-guide-body .company-guide-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.company .company-guide .company-guide-body .company-guide-item:last-child dd {
  padding-bottom: 0;
}
.company .company-guide .company-guide-body .company-guide-item dt {
  width: 110px;
}
@media screen and (max-width: 767px) {
  .company .company-guide .company-guide-body .company-guide-item dt {
    width: 77px;
    gap: 21px;
  }
}
.company .company-guide .company-guide-body .company-guide-item dd {
  padding-bottom: 25px;
  flex: 1;
  display: flex;
}
@media screen and (max-width: 991px) {
  .company .company-guide .company-guide-body .company-guide-item dd {
    flex-direction: column;
  }
}
.company .company-guide .company-guide-body .company-guide-item dd.is-narrow {
  width: 66%;
  flex: none;
}
@media screen and (max-width: 991px) {
  .company .company-guide .company-guide-body .company-guide-item dd.is-narrow {
    width: auto;
    flex: 1;
  }
}
.company .company-guide .company-guide-body .company-guide-item .button_map {
  color: var(--text-color);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 3.5;
  width: 250px;
  height: 50px;
  margin: 0 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 1rem;
  background-color: #FFF;
  border: solid 1.5px var(--text-color);
  text-decoration: none;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 767px) {
  .company .company-guide .company-guide-body .company-guide-item .button_map {
    margin: 1rem 0 0 0;
  }
}
.company .company-guide .company-guide-body .company-guide-item .button_map::after {
  content: "";
  background-image: url(../images/common/arrow-button.svg);
  background-size: cover;
  width: 13px;
  height: 8px;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}
@media (any-hover: hover) {
  .company .company-guide .company-guide-body .company-guide-item .button_map:hover {
    color: #fff;
    background-color: var(--main-color);
    border: solid 1.5px var(--main-color);
  }
  .company .company-guide .company-guide-body .company-guide-item .button_map:hover::after {
    filter: invert(100%);
  }
}
.company .greetings {
  background-color: #FCFAF9;
  padding: 112px 0 143px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .company .greetings {
    padding: 78.4px 0 100.1px;
  }
}
@media screen and (max-width: 479px) {
  .company .greetings {
    padding: 56px 0 71.5px;
  }
}
.company .greetings .section-title {
  margin: 0 0 56px;
}
@media screen and (max-width: 767px) {
  .company .greetings .section-title {
    margin: 0 0 39.2px;
  }
}
@media screen and (max-width: 479px) {
  .company .greetings .section-title {
    margin: 0 0 28px;
  }
}
.company .greetings .greetings-body {
  width: 61rem;
  margin: 0 auto 140px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 991px) {
  .company .greetings .greetings-body {
    width: 100%;
    align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .company .greetings .greetings-body {
    display: block;
    margin: 0 auto 98px;
  }
}
@media screen and (max-width: 479px) {
  .company .greetings .greetings-body {
    margin: 0 auto 70px;
  }
}
.company .greetings .greetings-body .greetings-text {
  width: 64.86%;
}
@media screen and (max-width: 991px) {
  .company .greetings .greetings-body .greetings-text {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .company .greetings .greetings-body .greetings-text {
    width: 100%;
  }
}
.company .greetings .greetings-body::before {
  content: "";
  background-image: url(../images/company/greetings-pic.svg);
  background-size: cover;
  display: block;
  width: 271px;
  height: 396px;
  margin-left: -30px;
}
@media screen and (max-width: 991px) {
  .company .greetings .greetings-body::before {
    margin-left: 0;
    width: 243.9px;
    height: 356.4px;
  }
}
@media screen and (max-width: 767px) {
  .company .greetings .greetings-body::before {
    float: left;
    margin-right: 1.5rem;
    width: 162.6px;
    height: 237.6px;
  }
}
@media screen and (max-width: 479px) {
  .company .greetings .greetings-body::before {
    width: 135.5px;
    height: 198px;
  }
}
.company .greetings .greetings-body::after {
  content: "";
  background-image: url(../images/company/company-bg1.svg);
  background-size: cover;
  display: block;
  width: 350px;
  height: 443px;
  position: absolute;
  top: -250px;
  left: -100px;
}
@media screen and (max-width: 1200px) {
  .company .greetings .greetings-body::after {
    left: -170px;
  }
}
@media screen and (max-width: 767px) {
  .company .greetings .greetings-body::after {
    display: none;
  }
}
.company .greetings .greetings-body p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
}
.company .greetings .greetings-body p.ceo-name {
  margin-top: 30px;
  text-align: right;
}
.company .anniversary-banner {
  width: 61rem;
  padding: 38px 48px;
  margin: 0 auto 0;
  display: flex;
  justify-content: space-between;
  background: #fff;
  border: 1.5px solid #0f0f0f;
  position: relative;
}
@media screen and (max-width: 991px) {
  .company .anniversary-banner {
    width: 100%;
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .company .anniversary-banner {
    padding: 30.4px 38.4px;
  }
}
@media screen and (max-width: 639px) {
  .company .anniversary-banner {
    flex-direction: column;
    gap: 2rem;
    padding: 30.4px 28.8px;
  }
}
.company .anniversary-banner::after {
  content: "";
  background-image: url(../images/company/anniversary-pic2.svg);
  background-size: cover;
  width: 243px;
  height: 189px;
  position: absolute;
  right: -57px;
  bottom: -89px;
}
@media screen and (max-width: 767px) {
  .company .anniversary-banner::after {
    width: 170.1px;
    height: 132.3px;
    right: -47px;
    bottom: -50px;
  }
}
@media screen and (max-width: 479px) {
  .company .anniversary-banner::after {
    width: 121.5px;
    height: 94.5px;
    right: -27px;
    bottom: -50px;
  }
}
@media screen and (max-width: 767px) {
  .company .anniversary-banner .pic {
    width: 40%;
  }
}
@media screen and (max-width: 639px) {
  .company .anniversary-banner .pic {
    align-self: center;
    width: 100%;
  }
}
.company .anniversary-banner .pic img {
  width: 333px;
  height: 253px;
}
@media screen and (max-width: 767px) {
  .company .anniversary-banner .pic img {
    width: 100%;
    height: auto;
  }
}
.company .anniversary-banner .guide {
  width: 55.87%;
}
@media screen and (max-width: 991px) {
  .company .anniversary-banner .guide {
    padding-left: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .company .anniversary-banner .guide {
    padding-left: 0;
  }
}
@media screen and (max-width: 639px) {
  .company .anniversary-banner .guide {
    width: 100%;
  }
}
.company .anniversary-banner .guide .contents-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin: 0 0 0.5rem;
}
.company .anniversary-banner .guide p {
  font-size: 16px;
  font-weight: 500;
  line-height: 2.35;
  margin: 0;
}
.company .anniversary-banner .button_view-pdf {
  color: var(--text-color);
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 3.5;
  width: 250px;
  height: 50px;
  margin: 1rem 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 1rem;
  background-color: #FFF;
  border: solid 1.5px var(--text-color);
  text-decoration: none;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 479px) {
  .company .anniversary-banner .button_view-pdf {
    width: 100%;
    font-size: 1.06875rem;
  }
}
.company .anniversary-banner .button_view-pdf::after {
  content: "";
  background-image: url(../images/common/arrow-button.svg);
  background-size: cover;
  width: 13px;
  height: 8px;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}
@media (any-hover: hover) {
  .company .anniversary-banner .button_view-pdf:hover {
    color: #fff;
    background-color: var(--main-color);
    border: solid 1.5px var(--main-color);
  }
  .company .anniversary-banner .button_view-pdf:hover::after {
    filter: invert(100%);
  }
}

.quality .contents-title-header .container {
  width: 68rem;
  padding-left: 3.5rem;
  background-image: url(../images/quality/quality-title-pic.svg);
  background-size: 416px 281px;
  background-position: right 60px bottom 50px;
  background-repeat: no-repeat;
  overflow: visible;
}
@media screen and (max-width: 1280px) {
  .quality .contents-title-header .container {
    width: 100%;
    max-width: none;
    padding-left: 5%;
    background-position: right 42px center;
  }
}
@media screen and (max-width: 991px) {
  .quality .contents-title-header .container {
    background-size: 332.8px 224.8px;
    background-position: right 30px center;
  }
}
@media screen and (max-width: 767px) {
  .quality .contents-title-header .container {
    background-size: 291.2px 196.7px;
    background-position: right 30px bottom 25px;
  }
}
@media screen and (max-width: 639px) {
  .quality .contents-title-header .container {
    background-size: 208px 140.5px;
    background-position: right 24px bottom 20px;
    justify-content: flex-start;
    padding-top: 4rem;
  }
}
@media screen and (max-width: 479px) {
  .quality .contents-title-header .container {
    background-size: 166.4px 112.4px;
    padding-top: 3rem;
  }
}
.quality .contents-title-header .contents-title {
  width: 58%;
}
@media screen and (max-width: 1024px) {
  .quality .contents-title-header .contents-title {
    white-space: nowrap;
  }
}
@media screen and (max-width: 991px) {
  .quality .contents-title-header .contents-title {
    white-space: wrap;
    width: 60%;
  }
}
@media screen and (max-width: 639px) {
  .quality .contents-title-header .contents-title {
    width: 100%;
  }
}
.quality .section-label.en-text {
  font-family: "Inter Tight";
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--main-color);
}
@media screen and (max-width: 767px) {
  .quality .section-label.en-text {
    font-size: 1.0625rem;
  }
}
.quality .section-title {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 2;
  margin: 0 0 250px;
}
@media screen and (max-width: 767px) {
  .quality .section-title {
    margin: 0 0 125px;
  }
}
@media screen and (max-width: 479px) {
  .quality .section-title {
    margin: 0 0 62.5px;
  }
}
.quality .safety-guide {
  padding: 86px 0 160px;
  background: #FCFAF9;
  position: relative;
}
@media screen and (max-width: 767px) {
  .quality .safety-guide {
    padding: 60.2px 0 112px;
  }
}
@media screen and (max-width: 479px) {
  .quality .safety-guide {
    padding: 43px 0 80px;
  }
}
.quality .safety-guide::before {
  content: "";
  background-image: url(../images/strengths/strengths_bg2.svg);
  background-size: cover;
  display: block;
  width: 212px;
  height: 226px;
  position: absolute;
  top: -202px;
  right: 0;
}
@media screen and (max-width: 1280px) {
  .quality .safety-guide::before {
    content: none;
  }
}
.quality .safety-guide .strengths-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 125px 0;
  width: 68rem;
  margin: 0 auto;
}
.quality .safety-guide .contents-wrapper {
  display: flex;
  justify-content: space-between;
  width: 68rem;
  margin: 0 auto 194px;
}
@media screen and (max-width: 1280px) {
  .quality .safety-guide .contents-wrapper {
    width: 100%;
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .quality .safety-guide .contents-wrapper {
    flex-direction: column;
    gap: 3rem;
    margin: 0 auto 135.8px;
  }
}
@media screen and (max-width: 479px) {
  .quality .safety-guide .contents-wrapper {
    margin: 0 auto 97px;
  }
}
.quality .safety-guide .contents-wrapper:last-of-type {
  margin-bottom: 0 !important;
}
.quality .safety-guide .contents-wrapper.is-invert {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .quality .safety-guide .contents-wrapper.is-invert {
    flex-direction: column;
    margin: 0 auto 135.8px;
  }
}
@media screen and (max-width: 479px) {
  .quality .safety-guide .contents-wrapper.is-invert {
    margin: 0 auto 97px;
  }
}
.quality .safety-guide .contents-wrapper:last-child {
  margin: 0 auto 79px;
}
.quality .safety-guide .contents-wrapper .pic {
  width: 45.96%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .quality .safety-guide .contents-wrapper .pic {
    width: 100%;
  }
}
.quality .safety-guide .contents-wrapper .pic img {
  display: block;
}
@media screen and (max-width: 767px) {
  .quality .safety-guide .contents-wrapper.is-safety1 .contents-title br {
    display: none;
  }
  .quality .safety-guide .contents-wrapper.is-safety1 .contents-title br.must {
    display: block;
  }
}
.quality .safety-guide .contents-wrapper.is-safety1 .pic img {
  width: 400px;
  height: 274px;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .quality .safety-guide .contents-wrapper.is-safety1 .pic img {
    margin-right: auto;
    width: 75%;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .quality .safety-guide .contents-wrapper.is-safety2 .contents-title br {
    display: none;
  }
  .quality .safety-guide .contents-wrapper.is-safety2 .contents-title br.must {
    display: block;
  }
}
.quality .safety-guide .contents-wrapper.is-safety2 .pic img {
  width: 410px;
  height: 295px;
}
@media screen and (max-width: 767px) {
  .quality .safety-guide .contents-wrapper.is-safety2 .pic img {
    width: 75%;
    height: auto;
  }
}
.quality .safety-guide .contents-wrapper.is-safety3 .pic img {
  width: 424px;
  height: 288px;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .quality .safety-guide .contents-wrapper.is-safety3 .pic img {
    margin-right: auto;
    width: 75%;
    height: auto;
  }
}
.quality .safety-guide .contents-wrapper.is-safety3 .contents-title {
  white-space: nowrap;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .quality .safety-guide .contents-wrapper.is-safety4 .contents-title br {
    display: none;
  }
  .quality .safety-guide .contents-wrapper.is-safety4 .contents-title br.must {
    display: block;
  }
}
.quality .safety-guide .contents-wrapper.is-safety4 .pic img {
  width: 427px;
  height: 290px;
}
@media screen and (max-width: 767px) {
  .quality .safety-guide .contents-wrapper.is-safety4 .pic img {
    width: 75%;
    height: auto;
  }
}
.quality .safety-guide .contents-wrapper .guide {
  width: 46.875%;
  padding-left: 3.5625rem;
}
@media screen and (max-width: 767px) {
  .quality .safety-guide .contents-wrapper .guide {
    width: 100%;
    padding-left: 0;
  }
}
.quality .standard-guide {
  padding: 120px 0 200px;
}
@media screen and (max-width: 991px) {
  .quality .standard-guide {
    padding: 84px 0 100px;
  }
}
@media screen and (max-width: 479px) {
  .quality .standard-guide {
    padding: 60px 0 60px;
  }
}
.quality .standard-guide::after {
  content: "";
  background-image: url(../images/business/business-bg2-red.webp);
  background-size: cover;
  width: 100%;
  padding-top: 44.34%;
  position: absolute;
  bottom: 130px;
  left: 0;
}
@media screen and (min-width: 1441px) {
  .quality .standard-guide::after {
    bottom: 0;
  }
}
@media screen and (max-width: 991px) {
  .quality .standard-guide::after {
    top: 40%;
    bottom: auto;
  }
}
.quality .standard-guide .container.is-standard-guide {
  width: 100%;
  max-width: none;
  padding: 0 2.78%;
}
.quality .standard-guide .section-title {
  margin: 0 0 86px;
}
@media screen and (max-width: 767px) {
  .quality .standard-guide .section-title {
    margin: 0 0 60.2px;
  }
}
@media screen and (max-width: 479px) {
  .quality .standard-guide .section-title {
    margin: 0 0 43px;
  }
}
.quality .standard-guide .standard-list {
  display: flex;
  justify-content: space-between;
  padding-left: 0;
  list-style: none;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 991px) {
  .quality .standard-guide .standard-list {
    flex-direction: column;
    gap: 40px;
  }
}
.quality .standard-guide .standard-item {
  background: #fcfaf9;
  border: 1.5px solid #0f0f0f;
  padding: 55px 60px 45px;
  width: 31%;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .quality .standard-guide .standard-item {
    padding: 38.5px 36px 27px;
  }
}
@media screen and (max-width: 991px) {
  .quality .standard-guide .standard-item {
    width: 100%;
  }
}
.quality .standard-guide .standard-item .standard-label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 24px;
  color: #fff;
  height: 24px;
  padding: 0 10px;
  background: #0f0f0f;
  position: absolute;
  left: 0;
  top: 0;
}
.quality .standard-guide .standard-item .contents-title {
  font-weight: bold;
  font-size: 1.5625rem;
  line-height: 1.7;
  text-align: center;
  color: #d2382b;
  margin: 0 0 0.5rem;
}
@media screen and (max-width: 1200px) {
  .quality .standard-guide .standard-item .contents-title {
    font-size: 1.40625rem;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .quality .standard-guide .standard-item .contents-title br {
    display: none;
  }
}
.quality .standard-guide .standard-item p {
  font-size: 16px;
  font-weight: 500;
  line-height: 38px;
  margin: 0;
}

.quality .lead,
.strengths .lead,
.business.page-parent .lead {
  padding: 133px 0 110px;
  position: relative;
}
@media screen and (max-width: 991px) {
  .quality .lead,
  .strengths .lead,
  .business.page-parent .lead {
    padding: 106.4px 0 132px;
  }
}
@media screen and (max-width: 767px) {
  .quality .lead,
  .strengths .lead,
  .business.page-parent .lead {
    padding: 79.8px 0 110px;
  }
}
@media screen and (max-width: 479px) {
  .quality .lead,
  .strengths .lead,
  .business.page-parent .lead {
    padding: 66.5px 0 110px;
  }
}
.quality .lead::before,
.strengths .lead::before,
.business.page-parent .lead::before {
  content: "";
  background-image: url(../images/strengths/strengths_bg1.svg);
  background-size: cover;
  display: block;
  width: 248px;
  height: 376px;
  position: absolute;
  top: 41px;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .quality .lead::before,
  .strengths .lead::before,
  .business.page-parent .lead::before {
    width: 173.6px;
    height: 263.2px;
    top: -20px;
    left: -70px;
  }
}
@media screen and (max-width: 991px) {
  .quality .lead::before,
  .strengths .lead::before,
  .business.page-parent .lead::before {
    width: 173.6px;
    height: 263.2px;
    top: -60px;
    left: -80px;
  }
}
@media screen and (max-width: 767px) {
  .quality .lead::before,
  .strengths .lead::before,
  .business.page-parent .lead::before {
    width: 148.8px;
    height: 225.6px;
    top: -90px;
    left: -70px;
  }
}
@media screen and (max-width: 479px) {
  .quality .lead::before,
  .strengths .lead::before,
  .business.page-parent .lead::before {
    width: 99.2px;
    height: 150.4px;
    top: -50px;
    left: -35px;
  }
}
.quality .lead::after,
.strengths .lead::after,
.business.page-parent .lead::after {
  content: "";
  background-image: url(../images/strengths/strengths_bg2.svg);
  background-size: cover;
  display: block;
  width: 212px;
  height: 226px;
  position: absolute;
  bottom: -24px;
  right: 0;
}
@media screen and (max-width: 1280px) {
  .quality .lead::after,
  .strengths .lead::after,
  .business.page-parent .lead::after {
    width: 148.4px;
    height: 158.2px;
    bottom: 10px;
    right: 20px;
  }
}
@media screen and (max-width: 991px) {
  .quality .lead::after,
  .strengths .lead::after,
  .business.page-parent .lead::after {
    width: 106px;
    height: 113px;
    bottom: 10px;
    right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .quality .lead::after,
  .strengths .lead::after,
  .business.page-parent .lead::after {
    width: 84.8px;
    height: 90.4px;
    bottom: 10px;
    right: 10px;
  }
}
@media screen and (max-width: 479px) {
  .quality .lead::after,
  .strengths .lead::after,
  .business.page-parent .lead::after {
    width: 63.6px;
    height: 67.8px;
    bottom: 10px;
    right: 10px;
  }
}
.quality .lead .container,
.strengths .lead .container,
.business.page-parent .lead .container {
  width: 61rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 991px) {
  .quality .lead .container,
  .strengths .lead .container,
  .business.page-parent .lead .container {
    width: 100%;
    max-width: none;
    gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  .quality .lead .container,
  .strengths .lead .container,
  .business.page-parent .lead .container {
    gap: 20px;
  }
}
.quality .lead .section-title,
.strengths .lead .section-title,
.business.page-parent .lead .section-title {
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .quality .lead .section-title,
  .strengths .lead .section-title,
  .business.page-parent .lead .section-title {
    font-size: 1.25rem;
  }
}
.quality .lead p,
.strengths .lead p,
.business.page-parent .lead p {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2.72;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 991px) {
  .quality .lead p,
  .strengths .lead p,
  .business.page-parent .lead p {
    line-height: 2.3;
  }
}
@media screen and (max-width: 767px) {
  .quality .lead p,
  .strengths .lead p,
  .business.page-parent .lead p {
    font-size: 0.9rem;
    text-align: left;
  }
  .quality .lead p br,
  .strengths .lead p br,
  .business.page-parent .lead p br {
    display: none;
  }
}
.quality .lead p strong,
.strengths .lead p strong,
.business.page-parent .lead p strong {
  color: var(--main-color);
}
.quality .guide p strong,
.strengths .guide p strong,
.business.page-parent .guide p strong {
  color: #D33A2E;
  font-weight: 700;
}

.post-type-archive-news .contents-title-header,
.tax-news-category .contents-title-header,
.single-news .contents-title-header {
  height: 402px;
  background: #fcfaf9;
}
@media screen and (max-width: 767px) {
  .post-type-archive-news .contents-title-header,
  .tax-news-category .contents-title-header,
  .single-news .contents-title-header {
    height: 321.6px;
  }
}
@media screen and (max-width: 479px) {
  .post-type-archive-news .contents-title-header,
  .tax-news-category .contents-title-header,
  .single-news .contents-title-header {
    height: 281.4px;
  }
}
.post-type-archive-news .contents-title-header .container,
.tax-news-category .contents-title-header .container,
.single-news .contents-title-header .container {
  background-image: url(../images/home/home-news-pic.svg);
  background-size: 387px 300px;
  background-position: right 56px bottom 30px;
  background-repeat: no-repeat;
  min-height: 402px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 61rem;
}
@media screen and (max-width: 991px) {
  .post-type-archive-news .contents-title-header .container,
  .tax-news-category .contents-title-header .container,
  .single-news .contents-title-header .container {
    width: 100%;
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .post-type-archive-news .contents-title-header .container,
  .tax-news-category .contents-title-header .container,
  .single-news .contents-title-header .container {
    min-height: 321.6px;
    background-size: 232.2px 180px;
    background-position: right 25px bottom 25px;
  }
}
@media screen and (max-width: 479px) {
  .post-type-archive-news .contents-title-header .container,
  .tax-news-category .contents-title-header .container,
  .single-news .contents-title-header .container {
    min-height: 281.4px;
    background-size: 154.8px 120px;
    background-position: right 25px bottom 25px;
  }
}

.post-type-archive-news .category-select,
.tax-news-category .category-select {
  width: 61rem;
  height: 58px;
  padding-left: 1.5em;
  margin: 52px auto 52px;
  display: flex;
  align-items: center;
  gap: 25px;
  background: #FCFAF9;
  border: 1.5px solid var(--text-color);
}
@media screen and (max-width: 991px) {
  .post-type-archive-news .category-select,
  .tax-news-category .category-select {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .post-type-archive-news .category-select,
  .tax-news-category .category-select {
    margin: 36.4px auto 36.4px;
  }
}
@media screen and (max-width: 479px) {
  .post-type-archive-news .category-select,
  .tax-news-category .category-select {
    margin: 26px auto 26px;
    gap: 0.75rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    justify-content: center;
  }
}
.post-type-archive-news .category-select li,
.tax-news-category .category-select li {
  list-style: none;
  padding: 0;
}
.post-type-archive-news .category-select li:last-child a::after,
.tax-news-category .category-select li:last-child a::after {
  content: none;
}
.post-type-archive-news .category-select a,
.tax-news-category .category-select a {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--text-color);
  text-decoration: none;
  display: flex;
  align-items: center;
}
.post-type-archive-news .category-select a:hover,
.tax-news-category .category-select a:hover {
  color: var(--main-color);
}
.post-type-archive-news .category-select a::after,
.tax-news-category .category-select a::after {
  content: "";
  display: block;
  width: 1px;
  height: 30px;
  background: #CCC;
  margin-left: 25px;
}
@media screen and (max-width: 479px) {
  .post-type-archive-news .category-select a::after,
  .tax-news-category .category-select a::after {
    margin-left: 0.75rem;
  }
}
.post-type-archive-news .news-list,
.tax-news-category .news-list {
  width: 68rem;
  margin: 0 auto;
  margin-bottom: 31px;
  padding-left: 0;
  list-style: none;
}
@media screen and (max-width: 1280px) {
  .post-type-archive-news .news-list,
  .tax-news-category .news-list {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .post-type-archive-news .news-list,
  .tax-news-category .news-list {
    margin-bottom: 21.7px;
  }
}
@media screen and (max-width: 449px) {
  .post-type-archive-news .news-list,
  .tax-news-category .news-list {
    margin-bottom: 15.5px;
  }
}
.post-type-archive-news .news-list li,
.tax-news-category .news-list li {
  min-height: 64px;
  border-bottom: 1.5px solid #dedede;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.post-type-archive-news .news-list li.is-none,
.tax-news-category .news-list li.is-none {
  border-bottom: none;
}
.post-type-archive-news .news-list li.is-none::before,
.tax-news-category .news-list li.is-none::before {
  content: none;
}
@media screen and (max-width: 639px) {
  .post-type-archive-news .news-list li,
  .tax-news-category .news-list li {
    height: auto;
    padding-top: 1rem;
  }
}
.post-type-archive-news .news-list li::before,
.tax-news-category .news-list li::before {
  content: "";
  width: 20px;
  height: 1.5px;
  background-color: var(--main-color);
  position: absolute;
  left: 0;
  bottom: -1px;
}
@media (any-hover: hover) {
  .post-type-archive-news .news-list li:hover::before,
  .tax-news-category .news-list li:hover::before {
    transition: 0.3s;
    width: 100%;
  }
}
.post-type-archive-news .news-list .news-item,
.tax-news-category .news-list .news-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 20px;
  text-decoration: none;
  color: var(--text-color);
  width: 100%;
  position: relative;
  min-height: 58px;
  padding: 32px 0;
}
@media screen and (max-width: 767px) {
  .post-type-archive-news .news-list .news-item,
  .tax-news-category .news-list .news-item {
    padding: 22.4px 0;
  }
}
@media screen and (max-width: 639px) {
  .post-type-archive-news .news-list .news-item,
  .tax-news-category .news-list .news-item {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 479px) {
  .post-type-archive-news .news-list .news-item,
  .tax-news-category .news-list .news-item {
    padding: 16px 0;
  }
}
@media (any-hover: hover) {
  .post-type-archive-news .news-list .news-item:hover,
  .tax-news-category .news-list .news-item:hover {
    color: var(--main-color);
  }
}
.post-type-archive-news .news-list .news-item.is-none,
.tax-news-category .news-list .news-item.is-none {
  justify-content: center;
}
.post-type-archive-news .news-list .news-item.is-none:hover,
.tax-news-category .news-list .news-item.is-none:hover {
  color: inherit;
}
.post-type-archive-news .news-list .news-item a,
.tax-news-category .news-list .news-item a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2.125;
  text-align: left;
  color: #000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
}
@media screen and (max-width: 767px) {
  .post-type-archive-news .news-list .news-item a,
  .tax-news-category .news-list .news-item a {
    gap: 5px 10px;
  }
}
.post-type-archive-news .news-list .news-item::after,
.tax-news-category .news-list .news-item::after {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url(../images/common/arrow-pagetop.svg);
  background-size: cover;
  transform: rotate(90deg);
  margin-right: 10px;
  margin-left: auto;
}
@media screen and (max-width: 639px) {
  .post-type-archive-news .news-list .news-item::after,
  .tax-news-category .news-list .news-item::after {
    margin-top: -2.25rem;
    margin-bottom: 0.75rem;
  }
}
@media screen and (max-width: 479px) {
  .post-type-archive-news .news-list .news-item::after,
  .tax-news-category .news-list .news-item::after {
    width: 28px;
    height: 28px;
  }
}
.post-type-archive-news .news-list .news-item.is-none::after,
.tax-news-category .news-list .news-item.is-none::after {
  content: none;
}
@media (any-hover: hover) {
  .post-type-archive-news .news-list .news-item:hover::after,
  .tax-news-category .news-list .news-item:hover::after {
    background-image: url(../images/common/arrow-pagetop-on.svg);
  }
}
.post-type-archive-news .news-list .news-item .news-date,
.tax-news-category .news-list .news-item .news-date {
  font-family: "Inter Tight";
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: left;
  color: #0f0f0f;
}
.post-type-archive-news .news-list .news-item .category,
.tax-news-category .news-list .news-item .category {
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0 0.25rem;
  color: #FFF;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 108px;
  height: 24px;
  background-color: var(--text-color);
}
.post-type-archive-news .news-list .news-item .category.news-infromation,
.tax-news-category .news-list .news-item .category.news-infromation {
  background-color: var(--text-color);
}
.post-type-archive-news .news-list .news-item .category.news-service,
.tax-news-category .news-list .news-item .category.news-service {
  background-color: var(--main-color);
}
.post-type-archive-news .news-list .news-item .category.news-schedule,
.tax-news-category .news-list .news-item .category.news-schedule {
  background-color: var(--accent-color);
}
.post-type-archive-news .news-list .news-item .news-title,
.tax-news-category .news-list .news-item .news-title {
  font-size: 1rem;
  font-weight: 500;
  width: 100%;
}
@media screen and (max-width: 639px) {
  .post-type-archive-news .news-list .news-item .news-title,
  .tax-news-category .news-list .news-item .news-title {
    width: 100%;
    padding: 0.5rem 4rem 0 0;
  }
}

.post-type-archive-news .category-select .cat-all a {
  color: var(--main-color);
}

.term-information .category-select .cat-information a {
  color: var(--main-color);
}

.term-service .category-select .cat-service a {
  color: var(--main-color);
}

.term-schedule .category-select .cat-schedule a {
  color: var(--main-color);
}

.term-jobs .category-select .cat-jobs a {
  color: var(--main-color);
}

.single-news .container.is-single {
  width: 61rem;
}
@media screen and (max-width: 991px) {
  .single-news .container.is-single {
    width: 100%;
    max-width: none;
  }
}
.single-news .contents-title-header {
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .single-news .contents-title-header {
    margin-bottom: 63px;
  }
}
@media screen and (max-width: 479px) {
  .single-news .contents-title-header {
    margin-bottom: 45px;
  }
}
.single-news .contents-title-header .container {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
}
@media screen and (max-width: 479px) {
  .single-news .contents-title-header .container {
    justify-content: flex-start;
    padding-top: 3rem;
    background-size: 116.1px 90px;
  }
}
.single-news .contents-title-header .contents-title {
  margin: 0;
  max-width: 55%;
}
@media screen and (max-width: 479px) {
  .single-news .contents-title-header .contents-title {
    width: 100%;
    max-width: none;
  }
}
.single-news .contents-title-header .contents-meta {
  display: flex;
  align-items: center;
  gap: 22px;
}
@media screen and (max-width: 479px) {
  .single-news .contents-title-header .contents-meta {
    gap: 11px;
  }
}
.single-news .contents-title-header .contents-meta .news-date {
  font-family: "Inter Tight";
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-color);
}
.single-news .contents-title-header .contents-meta .category {
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0 0.25rem;
  color: #FFF;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 108px;
  height: 24px;
  background-color: var(--text-color);
}
.single-news .contents-title-header .contents-meta .category.news-infromation {
  background-color: var(--text-color);
}
.single-news .contents-title-header .contents-meta .category.news-service {
  background-color: var(--main-color);
}
.single-news .contents-title-header .contents-meta .category.news-schedule {
  background-color: var(--accent-color);
}
.single-news .contents-body p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.375;
  color: var(--text-color);
}
.single-news .contents-body .button_index {
  display: inline-flex;
  margin-top: 90px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 479px) {
  .single-news .contents-body .button_index {
    margin-top: 63px;
    margin-bottom: 2rem;
  }
}
.single-news .contents-body .button_index {
  color: var(--text-color);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.14em;
  width: 336px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFF;
  border: solid 1.5px var(--text-color);
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  padding-left: 44px;
}
@media screen and (max-width: 767px) {
  .single-news .contents-body .button_index {
    height: 50px;
  }
}
@media screen and (max-width: 479px) {
  .single-news .contents-body .button_index {
    width: 95%;
    font-size: 1rem;
    padding-left: 0;
  }
}
.single-news .contents-body .button_index::before {
  content: "";
  background-image: url(../images/common/arrow-button.svg);
  background-size: cover;
  width: 13px;
  height: 8px;
  position: absolute;
  left: 44px;
  top: 50%;
  transform: translateY(-50%) scale(-1, 1);
}
@media (any-hover: hover) {
  .single-news .contents-body .button_index:hover {
    color: #fff;
    background-color: var(--main-color);
    border: solid 1.5px var(--main-color);
  }
  .single-news .contents-body .button_index:hover::before {
    filter: invert(100%);
  }
}

.post-type-archive-requirements .category-select,
.tax-job-category .category-select {
  width: 61rem;
  height: 58px;
  padding-left: 1.5em;
  margin: 52px auto 52px;
  display: flex;
  align-items: center;
  gap: 25px;
  background: #FCFAF9;
  border: 1.5px solid var(--text-color);
}
@media screen and (max-width: 991px) {
  .post-type-archive-requirements .category-select,
  .tax-job-category .category-select {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .post-type-archive-requirements .category-select,
  .tax-job-category .category-select {
    margin: 36.4px auto 36.4px;
  }
}
@media screen and (max-width: 479px) {
  .post-type-archive-requirements .category-select,
  .tax-job-category .category-select {
    gap: 0.5rem;
    padding-left: 0.7rem;
    padding-right: 0.7rem;
    justify-content: center;
  }
}
.post-type-archive-requirements .category-select li,
.tax-job-category .category-select li {
  list-style: none;
  padding: 0;
}
.post-type-archive-requirements .category-select li:last-child a::after,
.tax-job-category .category-select li:last-child a::after {
  content: none;
}
.post-type-archive-requirements .category-select li.cat-others br,
.tax-job-category .category-select li.cat-others br {
  display: none;
}
@media screen and (max-width: 400px) {
  .post-type-archive-requirements .category-select li.cat-others br,
  .tax-job-category .category-select li.cat-others br {
    display: block;
  }
}
.post-type-archive-requirements .category-select a,
.tax-job-category .category-select a {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--text-color);
  text-decoration: none;
  display: flex;
  align-items: center;
}
.post-type-archive-requirements .category-select a:hover,
.tax-job-category .category-select a:hover {
  color: var(--main-color);
}
.post-type-archive-requirements .category-select a::after,
.tax-job-category .category-select a::after {
  content: "";
  display: block;
  width: 1px;
  height: 30px;
  background: #CCC;
  margin-left: 25px;
}
@media screen and (max-width: 479px) {
  .post-type-archive-requirements .category-select a::after,
  .tax-job-category .category-select a::after {
    margin-left: 0.5rem;
  }
}
.post-type-archive-requirements .contents-title-header .container,
.tax-job-category .contents-title-header .container {
  background-image: url(../images/recruit/requirements-pic.svg);
  background-size: 322px 330px;
  background-position: right center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 991px) {
  .post-type-archive-requirements .contents-title-header .container,
  .tax-job-category .contents-title-header .container {
    background-size: 257.6px 264px;
    background-position: right 10% center;
  }
}
@media screen and (max-width: 767px) {
  .post-type-archive-requirements .contents-title-header .container,
  .tax-job-category .contents-title-header .container {
    background-size: 225.4px 231px;
  }
}
@media screen and (max-width: 479px) {
  .post-type-archive-requirements .contents-title-header .container,
  .tax-job-category .contents-title-header .container {
    background-size: 161px 165px;
  }
}
.post-type-archive-requirements .requirements-list,
.tax-job-category .requirements-list {
  list-style: none;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px 0;
}
@media screen and (max-width: 767px) {
  .post-type-archive-requirements .requirements-list,
  .tax-job-category .requirements-list {
    flex-direction: column;
    gap: 30px;
  }
}
.post-type-archive-requirements .requirements-item,
.tax-job-category .requirements-item {
  width: 48%;
  border: 2px solid var(--text-color);
}
@media screen and (max-width: 767px) {
  .post-type-archive-requirements .requirements-item,
  .tax-job-category .requirements-item {
    width: 100%;
  }
}
.post-type-archive-requirements .requirements-item.is-none,
.tax-job-category .requirements-item.is-none {
  width: 100%;
  height: 285px;
  background: #fcfaf9;
  padding: 77px 56px 0;
  margin-bottom: 23px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .post-type-archive-requirements .requirements-item.is-none,
  .tax-job-category .requirements-item.is-none {
    font-size: 1.125rem;
    padding: 53.9px 39.2px 0;
    height: 199.5px;
  }
}
@media screen and (max-width: 479px) {
  .post-type-archive-requirements .requirements-item.is-none,
  .tax-job-category .requirements-item.is-none {
    font-size: 1rem;
    padding: 38.5px 28px 0;
  }
}
.post-type-archive-requirements .requirements-item a,
.tax-job-category .requirements-item a {
  color: var(--text-color);
  text-decoration: none;
  display: block;
  padding: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .post-type-archive-requirements .requirements-item a,
  .tax-job-category .requirements-item a {
    padding: 28px;
  }
}
@media screen and (max-width: 479px) {
  .post-type-archive-requirements .requirements-item a,
  .tax-job-category .requirements-item a {
    padding: 20px;
  }
}
.post-type-archive-requirements .requirements-item a::after,
.tax-job-category .requirements-item a::after {
  content: "";
  background-image: url(../images/recruit/icon-requirements.svg);
  width: 28px;
  height: 28px;
  position: absolute;
  top: 40px;
  right: 40px;
}
@media screen and (max-width: 767px) {
  .post-type-archive-requirements .requirements-item a::after,
  .tax-job-category .requirements-item a::after {
    top: 28px;
    right: 28px;
  }
}
@media screen and (max-width: 479px) {
  .post-type-archive-requirements .requirements-item a::after,
  .tax-job-category .requirements-item a::after {
    top: 15px;
    right: 15px;
  }
}
@media (any-hover: hover) {
  .post-type-archive-requirements .requirements-item a:hover::after,
  .tax-job-category .requirements-item a:hover::after {
    background-image: url(../images/recruit/icon-requirements-on.svg);
  }
}
.post-type-archive-requirements .requirements-item .requirements-title,
.tax-job-category .requirements-item .requirements-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin: 0 0 0.75rem;
  padding-right: 2.5rem;
}
.post-type-archive-requirements .requirements-item .requirements-meta,
.tax-job-category .requirements-item .requirements-meta {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 400px) {
  .post-type-archive-requirements .requirements-item .requirements-meta,
  .tax-job-category .requirements-item .requirements-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.post-type-archive-requirements .requirements-item .requirements-meta li,
.tax-job-category .requirements-item .requirements-meta li {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.post-type-archive-requirements .requirements-item .requirements-meta li span,
.tax-job-category .requirements-item .requirements-meta li span {
  display: inline-block;
  padding: 2px 10px;
  border: 1.5px solid var(--text-color);
  margin-left: 10px;
}
@media screen and (max-width: 479px) {
  .post-type-archive-requirements .requirements-item .requirements-meta li span,
  .tax-job-category .requirements-item .requirements-meta li span {
    margin-left: 0.5rem;
    letter-spacing: 0;
  }
}
.post-type-archive-requirements .requirements-item .requirements-excerpt p,
.tax-job-category .requirements-item .requirements-excerpt p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.375;
  margin-bottom: 0;
}
.post-type-archive-requirements .button_index,
.tax-job-category .button_index {
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.14em;
  width: 260px;
  height: 60px;
  margin: 3.75rem auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #231815;
  border: solid 1.5px #231815;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 767px) {
  .post-type-archive-requirements .button_index,
  .tax-job-category .button_index {
    height: 50px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 479px) {
  .post-type-archive-requirements .button_index,
  .tax-job-category .button_index {
    width: 95%;
    font-size: 1rem;
    margin: 3rem auto 2rem;
  }
}
.post-type-archive-requirements .button_index::after,
.tax-job-category .button_index::after {
  content: "";
  background-image: url(../images/common/arrow-button.svg);
  background-size: cover;
  filter: invert(1);
  width: 13px;
  height: 8px;
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%) scale(-1, 1);
}
@media (any-hover: hover) {
  .post-type-archive-requirements .button_index:hover,
  .tax-job-category .button_index:hover {
    color: #fff;
    background-color: var(--main-color);
    border: solid 1.5px var(--main-color);
  }
  .post-type-archive-requirements .button_index:hover::after,
  .tax-job-category .button_index:hover::after {
    filter: invert(100%);
  }
}

.post-type-archive-requirements .category-select .cat-all a {
  color: var(--main-color);
}

.tax-job-category.term-inside .category-select .cat-inside a {
  color: var(--main-color);
}
.tax-job-category.term-facility .category-select .cat-facility a {
  color: var(--main-color);
}
.tax-job-category.term-planning .category-select .cat-planning a {
  color: var(--main-color);
}
.tax-job-category.term-others .category-select .cat-others a {
  color: var(--main-color);
}

.single-requirements .contents-title-header {
  margin-bottom: 93px;
}
@media screen and (max-width: 767px) {
  .single-requirements .contents-title-header {
    margin-bottom: 65.1px;
  }
}
@media screen and (max-width: 479px) {
  .single-requirements .contents-title-header {
    margin-bottom: 46.5px;
  }
}
@media screen and (max-width: 767px) {
  .single-requirements .contents-title-header .contents-title {
    padding-bottom: 2.5rem;
  }
}
.single-requirements .contents-title-header .contents-meta {
  font-size: 1.875rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 2.13;
  color: #000;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .single-requirements .contents-title-header .contents-meta {
    font-size: 1.375rem;
    margin-left: 1rem;
    line-height: 1.75;
  }
}
.single-requirements .contents-title-header.is-inside .container, .single-requirements .contents-title-header.is-others .container {
  background-image: url(../images/home/home-business-pic1.svg);
  background-size: 438px 280px;
  background-position: right bottom 40px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 991px) {
  .single-requirements .contents-title-header.is-inside .container, .single-requirements .contents-title-header.is-others .container {
    background-size: 350.4px 224px;
    background-position: right 5% bottom 40px;
  }
}
@media screen and (max-width: 767px) {
  .single-requirements .contents-title-header.is-inside .container, .single-requirements .contents-title-header.is-others .container {
    background-size: 262.8px 168px;
    background-position: right 5% bottom 10%;
  }
}
@media screen and (max-width: 479px) {
  .single-requirements .contents-title-header.is-inside .container, .single-requirements .contents-title-header.is-others .container {
    background-size: 219px 140px;
    background-position: right 5% bottom 10%;
  }
}
.single-requirements .contents-title-header.is-inside .contents-title, .single-requirements .contents-title-header.is-others .contents-title {
  width: 55%;
}
@media screen and (max-width: 767px) {
  .single-requirements .contents-title-header.is-inside .contents-title, .single-requirements .contents-title-header.is-others .contents-title {
    width: 60%;
  }
}
@media screen and (max-width: 479px) {
  .single-requirements .contents-title-header.is-inside .contents-title, .single-requirements .contents-title-header.is-others .contents-title {
    width: 100%;
  }
}
.single-requirements .contents-title-header.is-facility .container {
  background-image: url(../images/home/home-business-pic2.svg);
  background-size: 438px 280px;
  background-position: right bottom 40px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 991px) {
  .single-requirements .contents-title-header.is-facility .container {
    background-size: 350.4px 224px;
    background-position: right 5% bottom 40px;
  }
}
@media screen and (max-width: 767px) {
  .single-requirements .contents-title-header.is-facility .container {
    background-size: 262.8px 168px;
    background-position: right 5% bottom 10%;
  }
}
@media screen and (max-width: 479px) {
  .single-requirements .contents-title-header.is-facility .container {
    background-size: 219px 140px;
    background-position: right 5% bottom 10%;
  }
}
.single-requirements .contents-title-header.is-facility .contents-title {
  width: 55%;
}
@media screen and (max-width: 767px) {
  .single-requirements .contents-title-header.is-facility .contents-title {
    width: 60%;
  }
}
@media screen and (max-width: 479px) {
  .single-requirements .contents-title-header.is-facility .contents-title {
    width: 100%;
  }
}
.single-requirements .contents-title-header.is-planning .container {
  background-image: url(../images/home/home-business-pic3.svg);
  background-size: 438px 280px;
  background-position: right bottom 40px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 991px) {
  .single-requirements .contents-title-header.is-planning .container {
    background-size: 350.4px 224px;
    background-position: right 5% bottom 40px;
  }
}
@media screen and (max-width: 767px) {
  .single-requirements .contents-title-header.is-planning .container {
    background-size: 262.8px 168px;
    background-position: right 5% bottom 10%;
  }
}
@media screen and (max-width: 479px) {
  .single-requirements .contents-title-header.is-planning .container {
    background-size: 153.3px 98px;
    background-position: right 5% bottom 10%;
  }
}
.single-requirements .contents-title-header.is-planning .contents-title {
  width: 55%;
}
@media screen and (max-width: 767px) {
  .single-requirements .contents-title-header.is-planning .contents-title {
    width: 60%;
  }
}
@media screen and (max-width: 479px) {
  .single-requirements .contents-title-header.is-planning .contents-title {
    width: 100%;
  }
}
.single-requirements .contents-body .container.is-single {
  width: 68rem;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .single-requirements .contents-body .container.is-single {
    width: 100%;
    max-width: none;
  }
}
.single-requirements .contents-body .container.is-single .section-title {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-align: left;
  color: var(--main-color);
  margin: 0 0 44px;
  padding-bottom: 1rem;
  border-bottom: 1.5px solid var(--text-color);
}
@media screen and (max-width: 767px) {
  .single-requirements .contents-body .container.is-single .section-title {
    font-size: 1.5rem;
    margin: 0 0 35.2px;
    padding-bottom: 0.8rem;
  }
}
@media screen and (max-width: 639px) {
  .single-requirements .contents-body .container.is-single .section-title {
    font-size: 1.3125rem;
    margin: 0 0 22px;
    padding-bottom: 0.7rem;
  }
}
.single-requirements .contents-body .container.is-single .job-column {
  column-count: 2;
  column-gap: 10.8%;
}
@media screen and (max-width: 479px) {
  .single-requirements .contents-body .container.is-single .job-column {
    column-count: 1;
  }
}
.single-requirements .contents-body .container.is-single .job-column dl {
  margin-bottom: 4.25rem;
  break-inside: avoid;
}
.single-requirements .contents-body .container.is-single .job-column dt {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 20px;
}
.single-requirements .contents-body .container.is-single .job-column dd {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
}
.single-requirements .contents-body .container.is-single .job-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.625rem;
}
@media screen and (max-width: 639px) {
  .single-requirements .contents-body .container.is-single .job-row {
    flex-direction: column;
    margin-bottom: 1.8375rem;
  }
}
.single-requirements .contents-body .container.is-single .job-col {
  width: 44.6%;
}
@media screen and (max-width: 639px) {
  .single-requirements .contents-body .container.is-single .job-col {
    width: 100%;
  }
}
.single-requirements .contents-body .container.is-single .job-col dl {
  margin-bottom: 4.25rem;
}
@media screen and (max-width: 639px) {
  .single-requirements .contents-body .container.is-single .job-col dl {
    margin-bottom: 2.125rem;
  }
}
.single-requirements .contents-body .container.is-single .job-col dt {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media screen and (max-width: 639px) {
  .single-requirements .contents-body .container.is-single .job-col dt {
    font-size: 1.125rem;
    margin-bottom: 5px;
  }
}
.single-requirements .contents-body .container.is-single .job-col dd {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
}
.single-requirements .contents-body .container.is-single .job-col dd p {
  margin-bottom: 1.5rem;
}
.single-requirements .contents-body .contents-body-inner {
  padding: 40px 55px 21px;
  background: #fcfaf9;
  border: 2px solid var(--text-color);
}
@media screen and (max-width: 991px) {
  .single-requirements .contents-body .contents-body-inner {
    padding: 39.6px 49.5px 18.9px;
  }
}
@media screen and (max-width: 767px) {
  .single-requirements .contents-body .contents-body-inner {
    padding: 30.8px 38.5px 14.7px;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 479px) {
  .single-requirements .contents-body .contents-body-inner {
    padding: 22px 27.5px 10.5px;
  }
}
.single-requirements .contents-body.is-inside .container::before, .single-requirements .contents-body.is-others .container::before {
  content: "";
  background-image: url(../images/recruit/requirements1-bg2.webp);
  background-size: cover;
  width: 379px;
  height: 483px;
  position: absolute;
  left: -139px;
  top: 50%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .single-requirements .contents-body.is-inside .container::before, .single-requirements .contents-body.is-others .container::before {
    width: 227.4px;
    height: 289.8px;
    left: -39px;
    top: 50%;
  }
}
@media screen and (max-width: 479px) {
  .single-requirements .contents-body.is-inside .container::before, .single-requirements .contents-body.is-others .container::before {
    width: 151.6px;
    height: 193.2px;
    left: -25px;
    top: 50%;
  }
}
.single-requirements .contents-body.is-inside .contents-body-inner::before, .single-requirements .contents-body.is-others .contents-body-inner::before {
  content: "";
  background-image: url(../images/recruit/requirements1-bg1.svg);
  background-size: cover;
  width: 221px;
  height: 273px;
  position: absolute;
  right: -130px;
  top: 211px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .single-requirements .contents-body.is-inside .contents-body-inner::before, .single-requirements .contents-body.is-others .contents-body-inner::before {
    width: 132.6px;
    height: 163.8px;
    right: -60px;
    top: 150px;
  }
}
@media screen and (max-width: 479px) {
  .single-requirements .contents-body.is-inside .contents-body-inner::before, .single-requirements .contents-body.is-others .contents-body-inner::before {
    width: 88.4px;
    height: 109.2px;
    right: -40px;
    top: 100px;
  }
}
.single-requirements .contents-body.is-inside .contents-body-inner::after, .single-requirements .contents-body.is-others .contents-body-inner::after {
  content: "";
  background-image: url(../images/recruit/requirements1-bg3.svg);
  background-size: cover;
  width: 248px;
  height: 377px;
  position: absolute;
  right: -176px;
  bottom: -173px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .single-requirements .contents-body.is-inside .contents-body-inner::after, .single-requirements .contents-body.is-others .contents-body-inner::after {
    width: 148.8px;
    height: 226.2px;
    right: -88px;
    bottom: -93px;
  }
}
@media screen and (max-width: 479px) {
  .single-requirements .contents-body.is-inside .contents-body-inner::after, .single-requirements .contents-body.is-others .contents-body-inner::after {
    width: 99.2px;
    height: 150.8px;
    right: -38px;
    bottom: -63px;
  }
}
.single-requirements .contents-body.is-facility .container::before {
  content: "";
  background-image: url(../images/recruit/requirements2-bg2.svg);
  background-size: cover;
  width: 365px;
  height: 617px;
  position: absolute;
  left: -140px;
  top: 50%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .single-requirements .contents-body.is-facility .container::before {
    width: 219px;
    height: 370.2px;
    left: -20px;
    top: 50%;
  }
}
@media screen and (max-width: 479px) {
  .single-requirements .contents-body.is-facility .container::before {
    width: 146px;
    height: 246.8px;
    left: -20px;
    top: 50%;
  }
}
.single-requirements .contents-body.is-facility .contents-body-inner::before {
  content: "";
  background-image: url(../images/recruit/requirements2-bg1.svg);
  background-size: cover;
  width: 195px;
  height: 330px;
  position: absolute;
  right: -136px;
  top: 195px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .single-requirements .contents-body.is-facility .contents-body-inner::before {
    width: 117px;
    height: 198px;
    right: -36px;
    top: 95px;
  }
}
@media screen and (max-width: 479px) {
  .single-requirements .contents-body.is-facility .contents-body-inner::before {
    width: 78ppx;
    height: 132px;
    right: -46px;
    top: 95px;
  }
}
.single-requirements .contents-body.is-facility .contents-body-inner::after {
  content: "";
  background-image: url(../images/recruit/requirements2-bg3.svg);
  background-size: cover;
  width: 289px;
  height: 468px;
  position: absolute;
  right: -176px;
  bottom: -122px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .single-requirements .contents-body.is-facility .contents-body-inner::after {
    width: 173.4px;
    height: 280.8px;
    right: -76px;
    bottom: -72px;
  }
}
@media screen and (max-width: 479px) {
  .single-requirements .contents-body.is-facility .contents-body-inner::after {
    width: 115.6px;
    height: 187.2px;
    right: -16px;
    bottom: -72px;
  }
}
.single-requirements .contents-body.is-planning .container::before {
  content: "";
  background-image: url(../images/recruit/requirements3-bg2.svg);
  background-size: cover;
  width: 249px;
  height: 339px;
  position: absolute;
  left: -139px;
  top: 50%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .single-requirements .contents-body.is-planning .container::before {
    width: 149.4px;
    height: 203.4px;
    left: -19px;
    top: 50%;
  }
}
@media screen and (max-width: 479px) {
  .single-requirements .contents-body.is-planning .container::before {
    width: 99.6px;
    height: 135.6px;
    left: -19px;
    top: 50%;
  }
}
.single-requirements .contents-body.is-planning .contents-body-inner::before {
  content: "";
  background-image: url(../images/recruit/requirements3-bg1.svg);
  background-size: cover;
  width: 250px;
  height: 442px;
  position: absolute;
  right: -96px;
  top: 191px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .single-requirements .contents-body.is-planning .contents-body-inner::before {
    width: 150px;
    height: 265.2px;
    right: -16px;
    top: 91px;
  }
}
@media screen and (max-width: 479px) {
  .single-requirements .contents-body.is-planning .contents-body-inner::before {
    width: 100px;
    height: 176.8px;
    right: -5px;
    top: 51px;
  }
}
.single-requirements .contents-body.is-planning .contents-body-inner::after {
  content: "";
  background-image: url(../images/recruit/requirements3-bg3.svg);
  background-size: cover;
  width: 396px;
  height: 375px;
  position: absolute;
  right: -176px;
  bottom: -49px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .single-requirements .contents-body.is-planning .contents-body-inner::after {
    width: 237.6px;
    height: 225px;
    right: -66px;
    bottom: -79px;
  }
}
@media screen and (max-width: 479px) {
  .single-requirements .contents-body.is-planning .contents-body-inner::after {
    width: 158.4px;
    height: 150px;
    right: -66px;
    bottom: -49px;
  }
}

.single-requirements .button_index,
.recruit .button_index {
  color: var(--text-color);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 3.23;
  width: 250px;
  height: 50px;
  margin: 6rem auto 72.5px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 1rem;
  background-color: #FFF;
  border: solid 1.5px var(--text-color);
  text-decoration: none;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 767px) {
  .single-requirements .button_index,
  .recruit .button_index {
    height: 50px;
  }
}
@media screen and (max-width: 479px) {
  .single-requirements .button_index,
  .recruit .button_index {
    font-size: 1rem;
    margin: 4rem auto 1rem;
  }
}
.single-requirements .button_index::after,
.recruit .button_index::after {
  content: "";
  background-image: url(../images/common/arrow-button.svg);
  background-size: cover;
  width: 13px;
  height: 8px;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}
@media (any-hover: hover) {
  .single-requirements .button_index:hover,
  .recruit .button_index:hover {
    color: #fff !important;
    background-color: var(--main-color);
    border: solid 1.5px var(--main-color);
  }
  .single-requirements .button_index:hover::after,
  .recruit .button_index:hover::after {
    filter: invert(100%);
  }
}
.single-requirements .button_index.is-invert,
.recruit .button_index.is-invert {
  color: #FFF;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 3.23;
  width: 250px;
  height: 50px;
  margin: 6rem auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 1rem;
  background-color: var(--text-color);
  border: solid 1.5px var(--text-color);
  text-decoration: none;
  transition: 0.3s;
  position: relative;
}
.single-requirements .button_index.is-invert::after,
.recruit .button_index.is-invert::after {
  content: "";
  background-image: url(../images/common/arrow-button.svg);
  background-size: cover;
  width: 13px;
  height: 8px;
  position: absolute;
  right: 25px;
  top: 50%;
  filter: invert(100%);
  transform: translateY(-50%);
}
@media (any-hover: hover) {
  .single-requirements .button_index.is-invert:hover,
  .recruit .button_index.is-invert:hover {
    color: #fff !important;
    background-color: var(--main-color);
    border: solid 1.5px var(--main-color);
  }
  .single-requirements .button_index.is-invert:hover::after,
  .recruit .button_index.is-invert:hover::after {
    filter: invert(100%);
  }
}
.single-requirements .section-label.en-text,
.recruit .section-label.en-text {
  font-family: "Inter Tight";
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--main-color);
}
@media screen and (max-width: 767px) {
  .single-requirements .section-label.en-text,
  .recruit .section-label.en-text {
    font-size: 1.0625rem;
  }
}
.single-requirements .section-title,
.recruit .section-title {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 2;
  margin: 0 0 72px;
}
@media screen and (max-width: 767px) {
  .single-requirements .section-title,
  .recruit .section-title {
    font-size: 1.5rem;
    margin: 0 0 57.6px;
  }
}
@media screen and (max-width: 639px) {
  .single-requirements .section-title,
  .recruit .section-title {
    font-size: 1.3125rem;
    margin: 0 0 36px;
  }
}
.single-requirements .requirements-menu,
.recruit .requirements-menu {
  margin-top: 72.5px;
  padding: 85px 0 65px;
  background: #f2f0ee;
}
.single-requirements .requirements-menu .menu-list,
.recruit .requirements-menu .menu-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 90px;
  padding: 0;
  margin-bottom: 113px;
}
@media screen and (max-width: 991px) {
  .single-requirements .requirements-menu .menu-list,
  .recruit .requirements-menu .menu-list {
    gap: 31.5px;
  }
}
@media screen and (max-width: 767px) {
  .single-requirements .requirements-menu .menu-list,
  .recruit .requirements-menu .menu-list {
    gap: 30px 60px;
  }
}
.single-requirements .requirements-menu .menu-item,
.recruit .requirements-menu .menu-item {
  flex: 1;
  padding-bottom: 19px;
  border-bottom: 1.5px solid #0f0f0f;
  padding-left: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #000;
}
@media screen and (max-width: 991px) {
  .single-requirements .requirements-menu .menu-item,
  .recruit .requirements-menu .menu-item {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 767px) {
  .single-requirements .requirements-menu .menu-item,
  .recruit .requirements-menu .menu-item {
    width: calc(50% - 60px);
    flex: auto;
  }
}
.single-requirements .requirements-menu .menu-item::after,
.recruit .requirements-menu .menu-item::after {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url(../images/common/arrow-pagetop.svg);
  background-size: cover;
  transition: 0.3s;
  transform: rotate(90deg);
  display: block;
}
@media (any-hover: hover) {
  .single-requirements .requirements-menu .menu-item:hover::after,
  .recruit .requirements-menu .menu-item:hover::after {
    background-image: url(../images/common/arrow-pagetop-on.svg);
    transition: 0.4s;
    width: 32px;
    height: 30px;
  }
}
.single-requirements .requirements-menu .menu-item a,
.recruit .requirements-menu .menu-item a {
  text-decoration: none;
  color: #000;
  width: 100%;
}
.single-requirements .requirements-menu .menu-item .en,
.recruit .requirements-menu .menu-item .en {
  font-family: "Inter Tight";
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--main-color);
  display: block;
}

.recruit .contents-title-header {
  margin-bottom: 108px;
}
@media screen and (max-width: 767px) {
  .recruit .contents-title-header {
    margin-bottom: 75.6px;
  }
}
@media screen and (max-width: 479px) {
  .recruit .contents-title-header {
    height: auto;
    margin-bottom: 54px;
  }
}
.recruit .contents-title-header .container {
  background-image: url(../images/recruit/recruit-title-pic.svg);
  background-size: 447px 286px;
  background-position: right bottom 30px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .recruit .contents-title-header .container {
    background-size: 268.2px 171.6px;
    background-position: right bottom 20px;
  }
}
@media screen and (max-width: 479px) {
  .recruit .contents-title-header .container {
    background-size: 201.15px 128.7px;
    background-position: right bottom 20px;
  }
}
.recruit .chapter-row {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .recruit .chapter-row {
    flex-direction: column;
  }
}
@media screen and (max-width: 479px) {
  .recruit .chapter-row {
    gap: 30px;
  }
}
.recruit .chapter-row::after {
  content: "";
  background-image: url(../images/recruit/requirements-pic.svg);
  width: 365px;
  height: 374px;
  background-size: cover;
  margin-left: 57px;
}
@media screen and (max-width: 991px) {
  .recruit .chapter-row::after {
    width: 310.25px;
    height: 317.9px;
    margin-left: 1rem;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .recruit .chapter-row::after {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 479px) {
  .recruit .chapter-row::after {
    width: 255.5px;
    height: 261.8px;
  }
}
.recruit .chapter-row:first-of-type {
  align-items: flex-end;
  margin-bottom: 241px;
}
@media screen and (max-width: 767px) {
  .recruit .chapter-row:first-of-type {
    margin-bottom: 120.5px;
  }
}
@media screen and (max-width: 479px) {
  .recruit .chapter-row:first-of-type {
    margin-bottom: 84.35px;
  }
}
.recruit .chapter-row:first-of-type::after {
  content: "";
  background-image: url(../images/recruit/chapter-pic1.svg);
  width: 271px;
  height: 396px;
  background-size: cover;
  margin-left: 112px;
}
@media screen and (max-width: 991px) {
  .recruit .chapter-row:first-of-type::after {
    margin-left: 1rem;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .recruit .chapter-row:first-of-type::after {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 479px) {
  .recruit .chapter-row:first-of-type::after {
    width: 189.7px;
    height: 277.2px;
  }
}
.recruit .chapter-text {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .recruit .chapter-text {
    width: 100%;
  }
}
.recruit .chapter-text .chapter-title {
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 2;
  color: #000;
  margin: 0;
}
@media screen and (max-width: 479px) {
  .recruit .chapter-text .chapter-title {
    font-size: 1.25rem;
  }
}
.recruit .chapter-text .chapter-title::after {
  content: "";
  width: 466px;
  height: 1.5px;
  background-color: #DEDEDE;
  display: block;
  margin-top: 25px;
  margin-bottom: 30px;
}
@media screen and (max-width: 479px) {
  .recruit .chapter-text .chapter-title::after {
    width: 100%;
    margin-top: 17.5px;
    margin-bottom: 21px;
  }
}
.recruit .chapter-text .requirements-point {
  margin-bottom: 18px;
  padding-left: 0;
  list-style: none;
}
.recruit .chapter-text .requirements-point li {
  font-size: 1rem;
  font-weight: bold;
  line-height: 2.375;
  color: var(--main-color);
}
.recruit .chapter-text p {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 2.5625;
  color: #000;
  margin: 0;
}

.contact .contents-title-header,
.recruit.entry .contents-title-header,
.contact-confirm .contents-title-header,
.contact-thankyou .contents-title-header {
  margin-bottom: 48px;
}
@media screen and (max-width: 639px) {
  .contact .contents-title-header,
  .recruit.entry .contents-title-header,
  .contact-confirm .contents-title-header,
  .contact-thankyou .contents-title-header {
    height: auto;
  }
}
.contact .contents-title-header .container,
.recruit.entry .contents-title-header .container,
.contact-confirm .contents-title-header .container,
.contact-thankyou .contents-title-header .container {
  width: 68rem;
}
@media screen and (max-width: 1280px) {
  .contact .contents-title-header .container,
  .recruit.entry .contents-title-header .container,
  .contact-confirm .contents-title-header .container,
  .contact-thankyou .contents-title-header .container {
    width: 100%;
    max-width: none;
  }
}
@media screen and (max-width: 639px) {
  .contact .contents-title-header .container,
  .recruit.entry .contents-title-header .container,
  .contact-confirm .contents-title-header .container,
  .contact-thankyou .contents-title-header .container {
    padding-bottom: 100px;
  }
}
.contact .contents-title-header .contents-title,
.contact .contents-title-header p,
.recruit.entry .contents-title-header .contents-title,
.recruit.entry .contents-title-header p,
.contact-confirm .contents-title-header .contents-title,
.contact-confirm .contents-title-header p,
.contact-thankyou .contents-title-header .contents-title,
.contact-thankyou .contents-title-header p {
  width: 54.67%;
}
@media screen and (max-width: 767px) {
  .contact .contents-title-header .contents-title,
  .contact .contents-title-header p,
  .recruit.entry .contents-title-header .contents-title,
  .recruit.entry .contents-title-header p,
  .contact-confirm .contents-title-header .contents-title,
  .contact-confirm .contents-title-header p,
  .contact-thankyou .contents-title-header .contents-title,
  .contact-thankyou .contents-title-header p {
    width: 70%;
    max-width: none;
    line-height: 2;
  }
}
@media screen and (max-width: 639px) {
  .contact .contents-title-header .contents-title,
  .contact .contents-title-header p,
  .recruit.entry .contents-title-header .contents-title,
  .recruit.entry .contents-title-header p,
  .contact-confirm .contents-title-header .contents-title,
  .contact-confirm .contents-title-header p,
  .contact-thankyou .contents-title-header .contents-title,
  .contact-thankyou .contents-title-header p {
    width: 100%;
    line-height: 2;
  }
}
@media screen and (max-width: 767px) {
  .contact .contents-title-header .contents-title,
  .recruit.entry .contents-title-header .contents-title,
  .contact-confirm .contents-title-header .contents-title,
  .contact-thankyou .contents-title-header .contents-title {
    margin-bottom: 0;
    margin-left: 0;
  }
}
@media screen and (max-width: 639px) {
  .contact .contents-title-header .contents-title,
  .recruit.entry .contents-title-header .contents-title,
  .contact-confirm .contents-title-header .contents-title,
  .contact-thankyou .contents-title-header .contents-title {
    margin-top: 2rem;
  }
}
.contact .container.is-form,
.recruit.entry .container.is-form,
.contact-confirm .container.is-form,
.contact-thankyou .container.is-form {
  width: 68rem;
}
@media screen and (max-width: 1280px) {
  .contact .container.is-form,
  .recruit.entry .container.is-form,
  .contact-confirm .container.is-form,
  .contact-thankyou .container.is-form {
    width: 100%;
    max-width: none;
  }
}
.contact .contact-flow-block,
.recruit.entry .contact-flow-block,
.contact-confirm .contact-flow-block,
.contact-thankyou .contact-flow-block {
  display: flex;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 111px;
  padding-left: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .contact .contact-flow-block,
  .recruit.entry .contact-flow-block,
  .contact-confirm .contact-flow-block,
  .contact-thankyou .contact-flow-block {
    gap: 23.8px;
    margin-bottom: 77.7px;
  }
}
.contact .contact-flow-block li,
.recruit.entry .contact-flow-block li,
.contact-confirm .contact-flow-block li,
.contact-thankyou .contact-flow-block li {
  width: 308px;
  padding: 0;
  display: flex;
  flex: 1;
}
.contact .contact-flow-block li::before,
.recruit.entry .contact-flow-block li::before,
.contact-confirm .contact-flow-block li::before,
.contact-thankyou .contact-flow-block li::before {
  content: "";
  width: 1.5px;
  height: 100%;
  background-color: #CCC;
  display: block;
}
.contact .contact-flow-block li span,
.recruit.entry .contact-flow-block li span,
.contact-confirm .contact-flow-block li span,
.contact-thankyou .contact-flow-block li span {
  display: block;
  margin-left: 30px;
  width: 100%;
  position: relative;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .contact .contact-flow-block li span,
  .recruit.entry .contact-flow-block li span,
  .contact-confirm .contact-flow-block li span,
  .contact-thankyou .contact-flow-block li span {
    margin-left: 21px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 479px) {
  .contact .contact-flow-block li span,
  .recruit.entry .contact-flow-block li span,
  .contact-confirm .contact-flow-block li span,
  .contact-thankyou .contact-flow-block li span {
    font-size: 1rem;
  }
}
.contact .contact-flow-block li span::after,
.recruit.entry .contact-flow-block li span::after,
.contact-confirm .contact-flow-block li span::after,
.contact-thankyou .contact-flow-block li span::after {
  content: "";
  width: 100%;
  height: 1.5px;
  background-color: #CCC;
  display: block;
  position: absolute;
  left: 0;
  bottom: -30px;
}
@media screen and (max-width: 767px) {
  .contact .contact-flow-block li span::after,
  .recruit.entry .contact-flow-block li span::after,
  .contact-confirm .contact-flow-block li span::after,
  .contact-thankyou .contact-flow-block li span::after {
    bottom: -21px;
  }
}
.contact .contact-flow-block li span em,
.recruit.entry .contact-flow-block li span em,
.contact-confirm .contact-flow-block li span em,
.contact-thankyou .contact-flow-block li span em {
  font-family: "Inter Tight";
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
  font-weight: 700;
  font-style: normal;
}
.contact .contact-flow-block li.is-active span,
.recruit.entry .contact-flow-block li.is-active span,
.contact-confirm .contact-flow-block li.is-active span,
.contact-thankyou .contact-flow-block li.is-active span {
  color: var(--main-color);
}
.contact .contact-flow-block li.is-active span em,
.recruit.entry .contact-flow-block li.is-active span em,
.contact-confirm .contact-flow-block li.is-active span em,
.contact-thankyou .contact-flow-block li.is-active span em {
  color: var(--main-color);
}
.contact .contact-flow-block li.is-active span::after,
.recruit.entry .contact-flow-block li.is-active span::after,
.contact-confirm .contact-flow-block li.is-active span::after,
.contact-thankyou .contact-flow-block li.is-active span::after {
  background-color: var(--text-color);
}
.contact .contact-form-block,
.recruit.entry .contact-form-block,
.contact-confirm .contact-form-block,
.contact-thankyou .contact-form-block {
  padding: 88px 147px 97px;
  background: #fcfaf9;
  border: 2px solid var(--text-color);
}
@media screen and (max-width: 991px) {
  .contact .contact-form-block,
  .recruit.entry .contact-form-block,
  .contact-confirm .contact-form-block,
  .contact-thankyou .contact-form-block {
    padding: 70.4px 58.8px 77.6px;
  }
}
@media screen and (max-width: 767px) {
  .contact .contact-form-block,
  .recruit.entry .contact-form-block,
  .contact-confirm .contact-form-block,
  .contact-thankyou .contact-form-block {
    padding: 44px 36.75px 48.5px;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 479px) {
  .contact .contact-form-block,
  .recruit.entry .contact-form-block,
  .contact-confirm .contact-form-block,
  .contact-thankyou .contact-form-block {
    padding: 22px 22.05px 24.25px;
  }
}
.contact .inout-wrapper,
.recruit.entry .inout-wrapper,
.contact-confirm .inout-wrapper,
.contact-thankyou .inout-wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (max-width: 639px) {
  .contact .inout-wrapper,
  .recruit.entry .inout-wrapper,
  .contact-confirm .inout-wrapper,
  .contact-thankyou .inout-wrapper {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 21px;
  }
}
.contact .inout-wrapper .label,
.recruit.entry .inout-wrapper .label,
.contact-confirm .inout-wrapper .label,
.contact-thankyou .inout-wrapper .label {
  width: 25%;
  padding-top: 25px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .contact .inout-wrapper .label,
  .recruit.entry .inout-wrapper .label,
  .contact-confirm .inout-wrapper .label,
  .contact-thankyou .inout-wrapper .label {
    font-size: 1rem;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 639px) {
  .contact .inout-wrapper .label,
  .recruit.entry .inout-wrapper .label,
  .contact-confirm .inout-wrapper .label,
  .contact-thankyou .inout-wrapper .label {
    width: 100%;
    padding-top: 0;
  }
}
.contact .inout-wrapper .input,
.recruit.entry .inout-wrapper .input,
.contact-confirm .inout-wrapper .input,
.contact-thankyou .inout-wrapper .input {
  width: 73.3%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media screen and (max-width: 639px) {
  .contact .inout-wrapper .input,
  .recruit.entry .inout-wrapper .input,
  .contact-confirm .inout-wrapper .input,
  .contact-thankyou .inout-wrapper .input {
    width: 100%;
  }
}
.contact .inout-wrapper .input .input-type,
.recruit.entry .inout-wrapper .input .input-type,
.contact-confirm .inout-wrapper .input .input-type,
.contact-thankyou .inout-wrapper .input .input-type {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #fff;
  padding: 4px 10px;
  background-color: #000;
  border: solid 1.5px #000;
  display: inline-block;
  margin-bottom: -1.5px;
  width: 6em;
}
@media screen and (max-width: 479px) {
  .contact .inout-wrapper .input .input-type,
  .recruit.entry .inout-wrapper .input .input-type,
  .contact-confirm .inout-wrapper .input .input-type,
  .contact-thankyou .inout-wrapper .input .input-type {
    font-size: 0.7875rem;
    padding: 4px 6px;
    white-space: nowrap;
  }
}
.contact .inout-wrapper .input .input-type.is-required,
.recruit.entry .inout-wrapper .input .input-type.is-required,
.contact-confirm .inout-wrapper .input .input-type.is-required,
.contact-thankyou .inout-wrapper .input .input-type.is-required {
  background-color: var(--main-color);
}
.contact .inout-wrapper .input input[type=text],
.contact .inout-wrapper .input input[type=tel],
.contact .inout-wrapper .input input[type=email],
.contact .inout-wrapper .input textarea,
.recruit.entry .inout-wrapper .input input[type=text],
.recruit.entry .inout-wrapper .input input[type=tel],
.recruit.entry .inout-wrapper .input input[type=email],
.recruit.entry .inout-wrapper .input textarea,
.contact-confirm .inout-wrapper .input input[type=text],
.contact-confirm .inout-wrapper .input input[type=tel],
.contact-confirm .inout-wrapper .input input[type=email],
.contact-confirm .inout-wrapper .input textarea,
.contact-thankyou .inout-wrapper .input input[type=text],
.contact-thankyou .inout-wrapper .input input[type=tel],
.contact-thankyou .inout-wrapper .input input[type=email],
.contact-thankyou .inout-wrapper .input textarea {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--text-color);
  padding: 20px 15px;
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .contact .inout-wrapper .input input[type=text],
  .contact .inout-wrapper .input input[type=tel],
  .contact .inout-wrapper .input input[type=email],
  .contact .inout-wrapper .input textarea,
  .recruit.entry .inout-wrapper .input input[type=text],
  .recruit.entry .inout-wrapper .input input[type=tel],
  .recruit.entry .inout-wrapper .input input[type=email],
  .recruit.entry .inout-wrapper .input textarea,
  .contact-confirm .inout-wrapper .input input[type=text],
  .contact-confirm .inout-wrapper .input input[type=tel],
  .contact-confirm .inout-wrapper .input input[type=email],
  .contact-confirm .inout-wrapper .input textarea,
  .contact-thankyou .inout-wrapper .input input[type=text],
  .contact-thankyou .inout-wrapper .input input[type=tel],
  .contact-thankyou .inout-wrapper .input input[type=email],
  .contact-thankyou .inout-wrapper .input textarea {
    padding: 14px 10.5px;
  }
}
@media screen and (max-width: 639px) {
  .contact .inout-wrapper .input input[type=text],
  .contact .inout-wrapper .input input[type=tel],
  .contact .inout-wrapper .input input[type=email],
  .contact .inout-wrapper .input textarea,
  .recruit.entry .inout-wrapper .input input[type=text],
  .recruit.entry .inout-wrapper .input input[type=tel],
  .recruit.entry .inout-wrapper .input input[type=email],
  .recruit.entry .inout-wrapper .input textarea,
  .contact-confirm .inout-wrapper .input input[type=text],
  .contact-confirm .inout-wrapper .input input[type=tel],
  .contact-confirm .inout-wrapper .input input[type=email],
  .contact-confirm .inout-wrapper .input textarea,
  .contact-thankyou .inout-wrapper .input input[type=text],
  .contact-thankyou .inout-wrapper .input input[type=tel],
  .contact-thankyou .inout-wrapper .input input[type=email],
  .contact-thankyou .inout-wrapper .input textarea {
    padding: 10px 7.5px;
  }
}
.contact .inout-wrapper .input textarea,
.recruit.entry .inout-wrapper .input textarea,
.contact-confirm .inout-wrapper .input textarea,
.contact-thankyou .inout-wrapper .input textarea {
  min-height: 330px;
}
@media screen and (max-width: 479px) {
  .contact .inout-wrapper .input textarea,
  .recruit.entry .inout-wrapper .input textarea,
  .contact-confirm .inout-wrapper .input textarea,
  .contact-thankyou .inout-wrapper .input textarea {
    min-height: 200px;
  }
}
.contact .inout-wrapper .input input::placeholder,
.contact .inout-wrapper .input textarea::placeholder,
.recruit.entry .inout-wrapper .input input::placeholder,
.recruit.entry .inout-wrapper .input textarea::placeholder,
.contact-confirm .inout-wrapper .input input::placeholder,
.contact-confirm .inout-wrapper .input textarea::placeholder,
.contact-thankyou .inout-wrapper .input input::placeholder,
.contact-thankyou .inout-wrapper .input textarea::placeholder {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #ccc8c8;
}
.contact .inout-wrapper .input .input-file,
.recruit.entry .inout-wrapper .input .input-file,
.contact-confirm .inout-wrapper .input .input-file,
.contact-thankyou .inout-wrapper .input .input-file {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  width: 100%;
}
@media screen and (max-width: 479px) {
  .contact .inout-wrapper .input .input-file,
  .recruit.entry .inout-wrapper .input .input-file,
  .contact-confirm .inout-wrapper .input .input-file,
  .contact-thankyou .inout-wrapper .input .input-file {
    font-size: 0.7875rem;
    margin-bottom: 12px;
  }
}
.contact .inout-wrapper .input .input-file::file-selector-button,
.recruit.entry .inout-wrapper .input .input-file::file-selector-button,
.contact-confirm .inout-wrapper .input .input-file::file-selector-button,
.contact-thankyou .inout-wrapper .input .input-file::file-selector-button {
  font-size: 0.875rem;
  padding: 8px 17px;
  background-color: #f4f4f4;
  border: 1.5px solid #0f0f0f;
  margin-right: 0.5rem;
}
.contact .inout-wrapper .input .input-check .wpcf7-list-item,
.recruit.entry .inout-wrapper .input .input-check .wpcf7-list-item,
.contact-confirm .inout-wrapper .input .input-check .wpcf7-list-item,
.contact-thankyou .inout-wrapper .input .input-check .wpcf7-list-item {
  margin: 1.25rem 0 0 0;
}
.contact .inout-wrapper .input .input-check .wpcf7-list-item label,
.recruit.entry .inout-wrapper .input .input-check .wpcf7-list-item label,
.contact-confirm .inout-wrapper .input .input-check .wpcf7-list-item label,
.contact-thankyou .inout-wrapper .input .input-check .wpcf7-list-item label {
  display: flex;
  align-items: center;
  margin-right: 25px;
}
.contact .inout-wrapper .input .input-check .wpcf7-list-item:last-child label,
.recruit.entry .inout-wrapper .input .input-check .wpcf7-list-item:last-child label,
.contact-confirm .inout-wrapper .input .input-check .wpcf7-list-item:last-child label,
.contact-thankyou .inout-wrapper .input .input-check .wpcf7-list-item:last-child label {
  margin-right: 0;
}
.contact .inout-wrapper .input .input-check input[type=checkbox],
.recruit.entry .inout-wrapper .input .input-check input[type=checkbox],
.contact-confirm .inout-wrapper .input .input-check input[type=checkbox],
.contact-thankyou .inout-wrapper .input .input-check input[type=checkbox] {
  width: 30px;
  height: 30px;
  background: #FFF;
  border: 2px solid var(--text-color);
  margin-right: 0.5rem;
}
@media screen and (max-width: 479px) {
  .contact .inout-wrapper .input .input-check input[type=checkbox],
  .recruit.entry .inout-wrapper .input .input-check input[type=checkbox],
  .contact-confirm .inout-wrapper .input .input-check input[type=checkbox],
  .contact-thankyou .inout-wrapper .input .input-check input[type=checkbox] {
    width: 25px;
    height: 25px;
  }
}
.contact .inout-wrapper .input .input-check .wpcf7-list-item-label,
.contact .inout-wrapper .input .input-check .smf-checkbox-control__label,
.recruit.entry .inout-wrapper .input .input-check .wpcf7-list-item-label,
.recruit.entry .inout-wrapper .input .input-check .smf-checkbox-control__label,
.contact-confirm .inout-wrapper .input .input-check .wpcf7-list-item-label,
.contact-confirm .inout-wrapper .input .input-check .smf-checkbox-control__label,
.contact-thankyou .inout-wrapper .input .input-check .wpcf7-list-item-label,
.contact-thankyou .inout-wrapper .input .input-check .smf-checkbox-control__label {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.contact .inout-wrapper .input .input-inner,
.recruit.entry .inout-wrapper .input .input-inner,
.contact-confirm .inout-wrapper .input .input-inner,
.contact-thankyou .inout-wrapper .input .input-inner {
  padding: 46px 18px 40px 35px;
  background: #fff;
  border: 1.5px solid var(--text-color);
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.66;
}
@media screen and (max-width: 479px) {
  .contact .inout-wrapper .input .input-inner,
  .recruit.entry .inout-wrapper .input .input-inner,
  .contact-confirm .inout-wrapper .input .input-inner,
  .contact-thankyou .inout-wrapper .input .input-inner {
    padding: 27.6px 12.6px 28px 24.5px;
  }
}
.contact .inout-wrapper .input .input-inner .smf-error-messages,
.recruit.entry .inout-wrapper .input .input-inner .smf-error-messages,
.contact-confirm .inout-wrapper .input .input-inner .smf-error-messages,
.contact-thankyou .inout-wrapper .input .input-inner .smf-error-messages {
  font-size: 1rem;
}
.contact .inout-wrapper .label > p,
.contact .inout-wrapper .input > p,
.contact .inout-wrapper .policy > p,
.contact .inout-wrapper .input-inner > p,
.contact .inout-wrapper .submit > p,
.recruit.entry .inout-wrapper .label > p,
.recruit.entry .inout-wrapper .input > p,
.recruit.entry .inout-wrapper .policy > p,
.recruit.entry .inout-wrapper .input-inner > p,
.recruit.entry .inout-wrapper .submit > p,
.contact-confirm .inout-wrapper .label > p,
.contact-confirm .inout-wrapper .input > p,
.contact-confirm .inout-wrapper .policy > p,
.contact-confirm .inout-wrapper .input-inner > p,
.contact-confirm .inout-wrapper .submit > p,
.contact-thankyou .inout-wrapper .label > p,
.contact-thankyou .inout-wrapper .input > p,
.contact-thankyou .inout-wrapper .policy > p,
.contact-thankyou .inout-wrapper .input-inner > p,
.contact-thankyou .inout-wrapper .submit > p {
  display: contents;
}
.contact .submit-wrapper,
.recruit.entry .submit-wrapper,
.contact-confirm .submit-wrapper,
.contact-thankyou .submit-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 98px;
}
@media screen and (max-width: 767px) {
  .contact .submit-wrapper,
  .recruit.entry .submit-wrapper,
  .contact-confirm .submit-wrapper,
  .contact-thankyou .submit-wrapper {
    margin-top: 49px;
    flex-direction: column;
    width: 100%;
  }
}
@media screen and (max-width: 479px) {
  .contact .submit-wrapper,
  .recruit.entry .submit-wrapper,
  .contact-confirm .submit-wrapper,
  .contact-thankyou .submit-wrapper {
    margin-top: 24.5px;
  }
}
.contact .submit-wrapper .policy,
.recruit.entry .submit-wrapper .policy,
.contact-confirm .submit-wrapper .policy,
.contact-thankyou .submit-wrapper .policy {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .contact .submit-wrapper .policy br,
  .recruit.entry .submit-wrapper .policy br,
  .contact-confirm .submit-wrapper .policy br,
  .contact-thankyou .submit-wrapper .policy br {
    display: none;
  }
}
.contact .submit-wrapper .policy a,
.recruit.entry .submit-wrapper .policy a,
.contact-confirm .submit-wrapper .policy a,
.contact-thankyou .submit-wrapper .policy a {
  color: #8E8E8E;
}
.contact .submit-wrapper .wpcf7-submit,
.recruit.entry .submit-wrapper .wpcf7-submit,
.contact-confirm .submit-wrapper .wpcf7-submit,
.contact-thankyou .submit-wrapper .wpcf7-submit {
  color: var(--text-color);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 3.23;
  width: 250px;
  height: 50px;
  display: flex;
  padding-right: 2rem;
  background-color: #FFF;
  border: solid 1.5px var(--text-color);
  background-image: url(../images/common/arrow-button.svg);
  background-size: cover;
  background-position: right 1.5rem center;
  background-size: 13px 8px;
  background-repeat: no-repeat;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .contact .submit-wrapper .wpcf7-submit,
  .recruit.entry .submit-wrapper .wpcf7-submit,
  .contact-confirm .submit-wrapper .wpcf7-submit,
  .contact-thankyou .submit-wrapper .wpcf7-submit {
    margin: 1rem auto 0;
  }
}
@media (any-hover: hover) {
  .contact .submit-wrapper .wpcf7-submit:hover,
  .recruit.entry .submit-wrapper .wpcf7-submit:hover,
  .contact-confirm .submit-wrapper .wpcf7-submit:hover,
  .contact-thankyou .submit-wrapper .wpcf7-submit:hover {
    color: #FFF;
    background-color: var(--main-color);
    border: solid 1.5px var(--main-color);
    background-image: url(../images/common/arrow-button-white.svg);
  }
}
.contact .smf-form .smf-checkbox-control,
.recruit.entry .smf-form .smf-checkbox-control,
.contact-confirm .smf-form .smf-checkbox-control,
.contact-thankyou .smf-form .smf-checkbox-control {
  align-items: center !important;
  margin-top: 1.25rem;
  margin-right: 0.5rem;
  gap: 0;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.contact .smf-form .smf-checkbox-control__control,
.recruit.entry .smf-form .smf-checkbox-control__control,
.contact-confirm .smf-form .smf-checkbox-control__control,
.contact-thankyou .smf-form .smf-checkbox-control__control {
  margin: 3px 1rem 3px 4px;
  transform: scale(2);
  border: solid 0.5px #888;
  border-radius: 10%;
}
.contact .smf-action .smf-button-control__control,
.recruit.entry .smf-action .smf-button-control__control,
.contact-confirm .smf-action .smf-button-control__control,
.contact-thankyou .smf-action .smf-button-control__control {
  color: var(--text-color);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 3.23;
  width: 250px;
  height: 50px;
  display: flex;
  align-items: center;
  padding-right: 2rem;
  background-color: #FFF;
  border: solid 1.5px var(--text-color);
  background-image: url(../images/common/arrow-button.svg);
  background-size: cover;
  background-position: right 1.5rem center;
  background-size: 13px 8px;
  background-repeat: no-repeat;
  cursor: pointer;
  margin: 0 0 0 auto;
  border-radius: 0;
}
.contact .smf-item__col .policy,
.recruit.entry .smf-item__col .policy,
.contact-confirm .smf-item__col .policy,
.contact-thankyou .smf-item__col .policy {
  margin: 2rem 0 1rem;
  line-height: 1.8;
}
.contact .smf-item__col .policy a,
.recruit.entry .smf-item__col .policy a,
.contact-confirm .smf-item__col .policy a,
.contact-thankyou .smf-item__col .policy a {
  color: #8E8E8E;
}

.contact-confirm .inout-wrapper .input input[type=text],
.contact-confirm .inout-wrapper .input input[type=tel],
.contact-confirm .inout-wrapper .input input[type=email],
.contact-confirm .inout-wrapper .input textarea {
  background: transparent;
  pointer-events: none;
}
.contact-confirm .inout-wrapper .input textarea {
  field-sizing: content;
  min-width: 150px;
  max-width: 100vh;
  min-height: min-content;
}

.contact .contents-title-header .container {
  background-image: url(../images/contact/contact-title-pic.svg);
  background-size: 344px 296px;
  background-position: right 40px bottom 25px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 991px) {
  .contact .contents-title-header .container {
    background-size: 275.2px 236.8px;
  }
}
@media screen and (max-width: 767px) {
  .contact .contents-title-header .container {
    background-size: 172px 148px;
    background-position: right 25px bottom 25px;
  }
}
@media screen and (max-width: 639px) {
  .contact .contents-title-header .container {
    background-size: 103.2px 88.8px;
    background-position: right 15px bottom 15px;
  }
}

.recruit.entry .contents-title-header .container {
  background-image: url(../images/contact/entry-title-pic.svg);
  background-size: 348px 258px;
  background-position: right 40px bottom 50px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 991px) {
  .recruit.entry .contents-title-header .container {
    background-size: 278.4px 204.8px;
  }
}
@media screen and (max-width: 767px) {
  .recruit.entry .contents-title-header .container {
    background-size: 174px 128px;
    background-position: right 25px bottom 25px;
  }
}
@media screen and (max-width: 639px) {
  .recruit.entry .contents-title-header .container {
    background-size: 121.8px 89.6px;
    background-position: right 15px bottom 15px;
  }
}
.recruit.entry .smf-file-control label .smf-file-control__label {
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 500;
  line-height: 3.23;
  height: 50px;
  display: flex;
  align-items: center;
  background-color: #FFF;
  border: solid 1.5px var(--text-color);
  cursor: pointer;
  margin: 0 0 0 auto;
  border-radius: 0;
}
.recruit.entry .smf-file-control label .smf-file-control__filename {
  font-size: 0.875rem;
}
.recruit.entry .smf-file-control input[type=file] {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  width: 100%;
}
.recruit.entry .smf-form .smf-checkbox-control__control {
  margin: 3px 1rem 3px 4px;
  transform: scale(2);
  border: solid 0.5px #888;
  border-radius: 10%;
}
.recruit.entry .smf-form .smf-checkbox-control__control:checked {
  background-color: #888;
  border: solid 0.5px #888;
}
.recruit.entry .wp-block-list {
  padding-left: 1.25rem;
  margin-top: 1rem;
}

@media screen and (max-width: 767px) {
  .policy.page .contents-title {
    margin-left: 0;
    margin-bottom: 1rem;
  }
}
.policy.page section {
  margin-bottom: 6.25rem;
}
.policy.page section#terms-of-use {
  margin-bottom: 3.125rem;
}
.policy.page section#terms-of-use ol > li p:last-of-type {
  margin-top: 1.5em;
}
.policy.page .section-title {
  font-size: 1.875rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 2;
  color: var(--main-color);
  padding-bottom: 1rem;
  border-bottom: 1.5px solid var(--text-color);
  margin: 0 0 2.5rem;
}
@media screen and (max-width: 767px) {
  .policy.page .section-title {
    font-size: 1.5rem;
    margin: 0 0 2rem;
    padding-bottom: 0.8rem;
  }
}
@media screen and (max-width: 639px) {
  .policy.page .section-title {
    font-size: 1.3125rem;
    margin: 0 0 1.25rem;
    padding-bottom: 0.7rem;
  }
}
.policy.page .policy-body {
  width: 68rem;
  background: #FCFAF9;
  border: 2px solid var(--text-color);
  margin: 7.75rem auto 0;
  padding: 3.15rem 3rem;
}
@media screen and (max-width: 1280px) {
  .policy.page .policy-body {
    width: 90%;
    margin: 7.75rem 5% 0;
  }
}
@media screen and (max-width: 991px) {
  .policy.page .policy-body {
    margin: 6.2rem auto 0;
    padding: 2.835rem 2.7rem;
  }
}
@media screen and (max-width: 767px) {
  .policy.page .policy-body {
    margin: 4.65rem auto 0;
    padding: 2.205rem 2.1rem;
  }
}
@media screen and (max-width: 479px) {
  .policy.page .policy-body {
    margin: 3.1rem auto 0;
    padding: 1.575rem 1.5rem;
  }
}
.policy.page .policy-body ol {
  padding-left: 0;
}
.policy.page .policy-body ol > li {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 3;
  color: var(--text-color);
  margin-bottom: 4.375rem;
  list-style-position: inside;
}
@media screen and (max-width: 767px) {
  .policy.page .policy-body ol > li {
    margin-bottom: 3.0625rem;
  }
}
@media screen and (max-width: 479px) {
  .policy.page .policy-body ol > li {
    font-size: 1.125rem;
    margin-bottom: 2.1875rem;
  }
}
.policy.page .policy-body ol > li:last-of-type {
  margin-bottom: 0;
}
.policy.page .policy-body ol > li > p:first-of-type {
  margin-top: 1rem;
}
@media screen and (max-width: 479px) {
  .policy.page .policy-body ol > li > p:first-of-type {
    margin-top: 0;
  }
}
.policy.page .policy-body p,
.policy.page .policy-body ul {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2.1875;
  color: var(--text-color);
  margin: 0;
}
.policy.page .policy-body .chapter {
  margin-bottom: 2em;
}
.policy.page .policy-body ul {
  padding-left: 1.5em;
}
.policy.page .policy-body ul li {
  list-style: disc;
}
@media screen and (max-width: 391px) {
  .policy.page .contents-title-header .container {
    padding-top: 2rem;
  }
}

.is-404 {
  padding: 0;
}
.is-404 .container {
  width: 61rem;
  margin: 5rem auto 0;
}
@media screen and (max-width: 991px) {
  .is-404 .container {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
    margin: 3rem 0 0;
  }
}
@media screen and (max-width: 479px) {
  .is-404 .container {
    margin: 2rem 0 0;
  }
}
.is-404 .page-title {
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 2;
  color: #000;
  margin: 0 0 1rem;
  text-align: center;
}
@media screen and (max-width: 479px) {
  .is-404 .page-title {
    font-size: 1.25rem;
    margin: 0;
  }
}
.is-404 p {
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 2;
  margin: 0 0 3rem;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .is-404 p {
    margin: 0 0 1.8rem;
  }
}
.is-404 .button_top {
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.14em;
  width: 300px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFF;
  border: solid 1.5px var(--text-color);
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .is-404 .button_top {
    height: 50px;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 479px) {
  .is-404 .button_top {
    width: 95%;
    font-size: 0.9rem;
  }
}
.is-404 .button_top::before {
  content: "";
  background-image: url(../images/common/arrow-button.svg);
  background-size: cover;
  width: 13px;
  height: 8px;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%) scale(-1, 1);
}
@media (any-hover: hover) {
  .is-404 .button_top:hover {
    color: #fff;
    background-color: var(--main-color);
    border: solid 1.5px var(--main-color);
  }
  .is-404 .button_top:hover::before {
    filter: invert(100%);
  }
}
