@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New&display=swap");

:root {
  --white: #ffffff;
  --red: #bf0000;
  --placeholder: rgba(33, 33, 33, 0.3);
}
html {
  font-family: "Noto Sans JP";
  font-style: normal;
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
  text-decoration: none;
  margin: 0;
  padding: 0;
}
body {
  width: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  transition: all 1ms ease 0s;
  background-color: #f4f4f4;
  color: #333;
  font-family: "Noto Sans JP";
  font-style: normal;
}
/* section {
    position: relative;
    z-index: 1 !important;
} */
*,
:before,
::after {
  background-repeat: no-repeat;
}
div {
  margin: 0px;
  padding: 0px;
}
ul {
  list-style-type: none;
}
ol {
  margin-left: 40px;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  width: 100%;
  vertical-align: top;
}

/* SCROLL */
.scroll {
  opacity: 0;
  transition: all 0.1s ease;
}
.scroll[data-type="up"] {
  transform: translate3d(0, 100px, 0);
  transition: all 1s ease;
}
.scroll[data-type="up"].active {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/* OVERFLOW */
/* .overflow {
    overflow-x: hidden;
} */
::selection {
  background-color: #052e44;
  color: #fefefe;
}

/* LAYOUT */
.section,
.w-1040,
.w-1100,
.w-1200,
.w-1220,
.w-1400,
.w-1410,
.w-1520,
.w-1600 {
  margin: 0 auto;
}

.section {
  max-width: 1920px;
}

.w-1040 {
  max-width: 1040px;
}
.w-1100 {
  width: 1100px;
}
.w-1200 {
  width: 1200px;
}
.w-1220 {
  width: 1220px;
}
.w-1400 {
  width: 1400px;
}
.w-1410 {
  width: 1410px;
}
.w-1520 {
  width: 1520px;
}
.w-1540 {
  width: 1540px;
}
.w-1600 {
  width: 1600px;
}

/* DISPLAY */
.display {
  display: flex;
  align-items: center;
}
.df {
  display: flex;
}
.ai-c {
  align-items: center;
}
.ai-s {
  align-items: start;
}
.ai-e {
  align-items: end;
}
.m-0a {
  margin: 0 auto;
}
.jc-c {
  justify-content: center;
}
.jc-sa {
  justify-content: space-around;
}
.jc-sb {
  justify-content: space-between;
}
.jc-e {
  justify-content: end;
}
.jc-s {
  justify-content: start;
}
.fd-col {
  flex-direction: column;
}
.ta-c {
  text-align: center;
}
.ta-s {
  text-align: start;
}
.ta-e {
  text-align: end;
}
.reverse {
  flex-direction: row-reverse;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}

/* FONTS */
.zen {
  font-family: "Zen Kaku Gothic New", serif;
}
.red {
  color: #af0d0d;
}
.light {
  color: #fff;
}
.dark {
  color: #333;
}

.f-14 {
  font-size: 14px;
}

.f-16,
.f-16m,
.f-16b,
.f-16bl {
  /* font-size: clamp(12px, 0.83vw, 16px); */
  font-size: 16px;
}
.f-24m,
.f-24b,
.f-24bl {
  font-size: clamp(18px, 1.25vw, 24px);
}
.f-32bl {
  font-size: clamp(20px, 1.67vw, 32px);
}
.f-35 {
  font-size: clamp(22px, 1.7vw, 35px);
}

.f-36b {
  font-size: clamp(24px, 1.7vw, 36px);
}
.f-65b,
.f-65bl {
  font-size: clamp(32px, 3.33vw, 65px);
}

.f-48b,
.f-48bl {
  font-size: clamp(24px, 2.5vw, 48px);
}

.f-16,
.f-35 {
  font-weight: 400;
}
.f-16m,
.f-24m {
  font-weight: 500;
}
.f-16b,
.f-24b,
.f-36b,
.f-65b {
  font-weight: 700;
}
.f-16bl,
.f-24bl,
.f-32bl,
.f-36bl,
.f-48bl,
.f-65bl {
  font-weight: 900;
}
.lh-27 {
  line-height: 27px;
}
.lh-36 {
  line-height: 36px;
}
.ls-5 {
  letter-spacing: 0.05em;
}
.g-60 {
  gap: 60px;
}
.mb-100 {
  margin-bottom: 100px;
}
.dg {
  display: grid;
}
.placeholder {
  color: rgba(33, 33, 33, 0.3);
}
.bg-red {
  background: var(--red);
}
.g-30 {
  gap: 30px;
}
/* --------------------------------------------------- PAGE PROPERTIES --------------------------------------------------- */

.logo {
  max-width: 290px;
  height: auto;
  object-fit: cover;
  padding: 30px 0;
}

header {
  position: fixed;
  top: 0;
  z-index: 9999999;
  width: 100%;
}
.header__content {
  padding: 10px 50px;
  border-bottom: 0.5px solid #333;
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fefefe;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}
.header.scrolled::before {
  opacity: 1;
}
.nav__layout {
  gap: 80px;
}
.nav__layout li {
  width: fit-content;
}
.nav-btn {
  gap: 30px;
  list-style: none;
}
.nav-btn__link {
  gap: 10px;
  padding: 20px 60px;
  border-radius: 50px;
  background: #333;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s;
}

.nav-btn__link p {
  margin: 0;
  color: #fff;
  font-weight: 900;
}
.nav-btn__link:hover {
  box-shadow: none;
  transform: translateY(3px);
}

/* OPACITY FILTERS */
.logo,
.nav__link,
.nav-contact a,
.index-sec01__cat-link,
.news__link,
.footer__socials a,
.checkbox-label a,
.f-nav__layout1 li,
.f-nav__layout2 li,
.f-nav__layout3 li {
  transition:
    filter 0.3s ease,
    opacity 0.3s ease;
}
.logo:hover,
.nav__link:hover,
.nav-contact a:hover,
.index-sec01__cat-link:hover,
.news__link:hover,
.footer__socials a:hover,
.checkbox-label a:hover,
.f-nav__layout1 li:hover,
.f-nav__layout2 li:hover,
.f-nav__layout3 li:hover {
  filter: brightness(1);
  opacity: 0.7;
}

/* --------------------------------------------------- MV PROPERTIES --------------------------------------------------- */

.mv__desc {
  gap: 27px;
  top: 425px;
  left: 120px;
  /* bottom: 135px; */
}
.mv__desc h5,
.mv__desc p {
  max-width: 845px;
}

.mv-sp__title {
  padding-top: 100px;
}

/* --------------------------------------------------- SECTION PROPERTIES --------------------------------------------------- */
.br {
  border-radius: 20px;
}
.br-dark {
  border: 1px solid #333;
}
.bc-light {
  background-color: #fff;
}

/* BUTTONS */
.arrow {
  max-width: 24px;
  max-height: 24px;
  object-fit: cover;
}
.btn-cat {
  gap: 50px;
  width: fit-content;
}

.btn-more,
.btn-phone,
.btn-contact,
.btn-list,
.btn-save,
.btn-edit,
.btn-submit,
.btn-index {
  gap: 20px;
  background-color: #333;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s;
}
.btn-more02 {
  gap: 20px;
  border: 1px solid #333;
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s;
}
.btn-phone,
.btn-contact {
  padding: 10px 40px;
  border-radius: 30px;
  background-color: #fff;
}

.btn-more,
.btn-more02,
.btn-list {
  height: 43px;
}
.btn-more,
.btn-more02 {
  width: 214px;
}
.btn-phone {
  width: 300px;
  height: 52px;
}
.btn-contact {
  width: 430px;
  height: 52px;
}
.btn-list {
  width: 218px;
}
.btn-save,
.btn-edit,
.btn-submit,
.btn-index {
  width: 252px;
  height: 48px;
  color: #fff;
  font-family: "Noto Sans JP";
}

.btn-more img,
.btn-more02 img {
  max-width: 20px;
  max-height: 20px;
}
/* .btn-list img, .btn-save img, .btn-edit img, .btn-submit img, .btn-index img {
    max-width: 18px;
    max-height: 18px;
} */
.btn-list img,
.btn-arrow-next,
.btn-arrow-prev {
  max-width: 18px;
  max-height: 18px;
}
.btn-arrow-next {
  content: url(../assets/common/arrow-next.png);
}
.btn-arrow-prev {
  content: url(../assets/common/arrow-back.png);
}

.btn-phone i,
.btn-contact i {
  color: #333;
}

.btn-more:hover,
.btn-more02:hover,
.btn-phone:hover,
.btn-contact:hover,
.btn-list:hover,
.btn-save:hover,
.btn-edit:hover,
.btn-submit:hover,
.btn-index:hover {
  box-shadow: none;
  transform: translateY(3px);
}

/* DESC */
.sec__desc {
  max-width: 700px;
  /* padding: 0 50px; */
}
.indent {
  width: 25px;
  height: 8px;
  background-color: #0077b6;
}
.sec__desc-head,
.sec__desc {
  gap: 20px;
}

.footer__wrapper {
  gap: 50px;
}

/* CONTACT SECTION */
.contact__content {
  padding: 50px 0;
  border-radius: 50px;
  background-image: url(../assets/common/contact-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  gap: 10px;
}
.contact__layout .sec-title {
  padding: 20px 50px;
}
.contact__desc {
  max-width: 870px;
}
.contact__btn {
  gap: 60px;
}
.contact__btn-link {
  text-decoration: none;
}

/* FOOTER SECTION */
footer {
  padding: 50px 0 20px 0;
  background-image: url(../assets/common/footer.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.footer__logo {
  max-width: 215px;
}
.footer__logo,
.footer__socials {
  gap: 30px;
}
.footer__socials i {
  color: #333;
  font-size: clamp(18px, 1.25vw, 24px);
}

.footer__nav nav {
  display: flex;
  gap: 80px;
}
.f-nav__layout1,
.f-nav__layout2,
.f-nav__layout3 {
  gap: 30px;
  width: fit-content;
}

/* --------------------------------------------------- INDEX PROPERTIES --------------------------------------------------- */

/* SEC01 */
.index-sec01__content {
  padding: 100px 0;
}
.index-sec01__layout {
  gap: 30px;
}
.index-sec01__list {
  gap: 20px 30px;
  flex-wrap: wrap;
}

.index-sec01-feature {
  object-fit: cover;
}
.index-sec01__list li:nth-of-type(1) .index-sec01-feature {
  max-width: 520px;
  max-height: 350px;
}
.index-sec01__list li:nth-of-type(2) .index-sec01-feature {
  max-width: 850px;
  max-height: 350px;
}
.index-sec01__list li:nth-of-type(3) .index-sec01-feature {
  max-width: 1400px;
  max-height: 400px;
}

.index-sec01__cat-btn {
  left: 40px;
  top: 265px;
}

.index-sec01__btn {
  padding-top: 20px;
}

/* SLIDER */
.index__slider {
  width: 100%;
}
.index-slider .slick-slide {
  width: 300px !important;
  margin-right: 25px !important;
}
.index-slider .slick-slide img {
  max-width: 300px;
  max-height: 400px;
  border-radius: 20px;
  border: 1px solid #333;
  object-fit: cover;
}
.index-slider .slick-slide:nth-child(odd) {
  margin-bottom: 67px;
}
.index-slider .slick-slide:nth-child(even) {
  margin-top: 67px;
}

/* SEC03 */
.index-sec03__content {
  padding: 100px 0;
}
.index-sec03__layout {
  padding-top: 30px;
  gap: 30px;
}
.index-sec03__img {
  max-width: 100%;
  object-fit: contain;
}
.index-sec03__body {
  gap: 10px;
}

/* SEC04 */
.index-sec04__content {
  margin-right: 50px;
}
.index-sec04__layout {
  padding: 195px 100px 195px 250px;
  border-radius: 0px 100px 100px 0px;
  gap: 50px;
  background-image: url(../assets/top/bg01.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.index-sec04__desc {
  max-width: 678px;
}

/* SEC05 */
.index-sec05__wrapper {
  padding: 100px 0 100px 50px;
}
.index-sec05__content {
  padding: 50px 0;
  max-width: 1870px;
  width: 100%;
  border-radius: 100px 0px 0px 100px;
  gap: 100px;
  background-image: url(../assets/common/bg02.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* SEC06 */
.index-sec06__content {
  padding-bottom: 100px;
}
.index-sec06__layout {
  padding: 30px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 20px;
}
.index-sec06__cat {
  max-width: 100%;
  gap: 20px;
}
.index-sec06-feature {
  max-width: 100%;
  max-height: 500px;
  object-fit: cover;
}
.index-sec06__desc {
  gap: 10px;
}

/* --------------------------------------------------- BUSINESS PROPERTIES --------------------------------------------------- */

.business-sec__wrapper {
  padding-bottom: 200px;
  border-bottom: 1px solid #af0d0d;
}

/* SEC01 */
.business-sec01__content {
  padding-top: 100px;
}
.business-sec01__layout {
  gap: 100px;
}
.business-img01 {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}
.business-sec01__desc {
  gap: 20px;
}

/* IMAGE LAYOUT */
.business-img-top,
.business-img-bot {
  max-width: 450px;
  object-fit: cover;
}
.business-img-top {
  max-height: 675px;
}
.business-img-bot {
  max-height: 290px;
}

.business__img-l,
.business__img-r {
  max-width: 800px;
  max-height: 900px;
  z-index: -1;
}
.business__img-l {
  left: 0;
}
.business__img-r {
  right: 0;
}

.business__img-l .business-img-bot,
.business__img-r .business-img-bot {
  bottom: 0;
  z-index: 1;
}
.business__img-l .business-img-top {
  margin: 0 350px 225px 0;
}
.business__img-r .business-img-top {
  margin: 0 0 225px 350px;
}

.business__img-l .business-img-bot {
  right: 250px;
}
.business__img-r .business-img-bot {
  left: 250px;
}

/* DESC */
.business__desc {
  height: 800px;
}
.business__desc .sec__desc {
  padding: 0 50px;
}

/* SEC02 & SEC04*/
.business-sec02__content,
.business-sec04__content {
  padding: 100px 0;
}
.business-sec02__layout,
.business-sec04__layout {
  padding-right: 100px;
}

/* SEC03 */
.business-sec03__layout {
  padding-left: 100px;
}

/* --------------------------------------------------- ABOUT PROPERTIES --------------------------------------------------- */

/* MAIN */
.about-main__content {
  padding: 100px 0;
}
.about-main__wrapper {
  gap: 50px;
}
.about__main__layout,
.about__details {
  gap: 100px;
}
.about-main__desc {
  max-width: 650px;
  gap: 20px;
}
.about-img01 {
  max-width: 1014px;
  max-height: 490px;
  object-fit: cover;
  border-radius: 20px 0px 0px 20px;
}

/* LIST */
.about-list__content {
  padding-bottom: 100px;
}
.about-list__layout {
  gap: 100px;
}

.about__details {
  padding: 50px 260px;
  /* width: 1300px; */
  background-image: url(../assets/common/footer.jpg);
  background-size: cover;
  background-position: center;
}
.about-l {
  border-radius: 0px 100px 100px 0px;
  margin-right: 100px;
}
.about-r {
  border-radius: 100px 0px 0px 100px;
  margin-left: 100px;
}

.about-img-cat {
  max-width: 500px;
  max-height: 675px;
  object-fit: cover;
}

/* --------------------------------------------------- COMPANY PROPERTIES --------------------------------------------------- */

/* MAIN */
.company-main__content {
  padding: 100px;
}
.company-main__layout,
.company-info__content {
  gap: 100px;
}
.company-img-main {
  max-width: 345px;
  height: auto;
}
.company-main .sec__desc {
  max-width: 100%;
  gap: 30px;
}

.company-main__img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* INFO */
.company-info__content {
  width: 1230px;
  padding-bottom: 100px;
}
.company-info__content table {
  border-collapse: separate;
  border-spacing: 0;
}
.company-info__content table tr th,
.company-info__content table tr td {
  padding: 30px 0;
}
.company-info__content table tr th {
  width: 300px;
  border-bottom: 1px solid #333;
  background: #d9d9d9;
}
.company-info__content table tr th p {
  margin-left: 55px;
}
.company-info__content table tr td {
  width: 100%;
  border-bottom: 1px solid #333;
}
.company-info__content table tr td p {
  margin: 0 55px;
}

/* --------------------------------------------------- RECRUIT PROPERTIES --------------------------------------------------- */
.recruit__layout,
.recruit__content {
  gap: 30px;
}

.recruit-main .sec__desc-head {
  margin-bottom: 30px;
}

.recruit-main__layout {
  gap: 60px;
}

.recruit-img-main {
  max-width: 760px;
  height: auto;
}

.recruit-main__content {
  padding: 100px;
}

.recruit-table__title {
  border: 1px solid #b1b1b1;
  background: #333;
  color: #fff;
  padding: 25px 0;
}

.recruit-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 100px;
}

.recruit-table tr th {
  width: 350px;
  padding: 25px 30px;
  border-right: 1px solid #b1b1b1;
  border-bottom: 1px solid #b1b1b1;
  border-left: 1px solid #b1b1b1;
  background: rgba(51, 51, 51, 0.2);
}

.recruit-table tr td {
  width: 100%;
  padding: 20px;
  border-right: 1px solid #b1b1b1;
  border-bottom: 1px solid #b1b1b1;
}

/* --------------------------------------------------- WORKS PROPERTIES --------------------------------------------------- */

.works-main__content {
  padding: 100px 0;
}
.works-main .index-sec06__layout {
  padding: 0;
}

/* LIST */
.news__layout,
.news__item-content,
.news__item-details {
  gap: 30px;
}
.news__item-details {
  justify-content: space-between;
  width: 100%;
}
.news__item-content {
  padding-bottom: 20px;
  border-bottom: 1px solid #0077b6;
}
.news__item-img img {
  max-width: 300px;
  max-height: 200px;
  object-fit: cover;
  border-radius: 20px;
}
.news__item-desc {
  gap: 10px;
  max-width: 810px;
  width: 100%;
}
.arrow-news {
  width: 30px;
  height: 30px;
}

/* PAGINATION */
.pagination {
  /* margin: 20px auto; */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}
.page-numbers {
  display: inline-block;
  margin: 0 30px;
  text-decoration: none;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  padding: 0;
  cursor: pointer;
  color: #0077b6;
  transition: background-color 0.3s;
  /* font-size: clamp(12px, 0.83vw, 16px); */
  font-size: 16px;
  font-family: "Noto Sans JP";
}
.page-numbers:hover,
.page-numbers.current {
  background-color: #0077b6;
  color: #fff;
}

/* DETAIL */
.news-det__head {
  gap: 10px;
}
.news-det__content {
  padding-bottom: 20px;
  border-bottom: 1px solid #0077b6;
}
.news-det__content img {
  max-width: 900px;
  margin: 30px auto;
  border-radius: 20px;
  object-fit: cover;
  height: auto;
}
.news-det__btn {
  padding-top: 100px;
}

/* --------------------------------------------------- FORM & 404 PROPERTIES --------------------------------------------------- */

.form__content,
.form__layout,
.page404__content {
  padding: 100px 0;
}
/* .form__layout-btn1, .form__layout-btn2 {
    padding-top: 100px;
} */
.form__layout-btn1 {
  padding-top: 100px;
}
.form__layout-btn2 {
  gap: 100px;
}

/* FORM */
.form__note {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(144, 224, 239, 0.8);
}

.form__information {
  width: 100%;
  border-top: 1px solid rgba(144, 224, 239, 0.8);
  padding: 30px 0;
  /* font-size: clamp(12px, 0.83vw, 16px); */
  font-size: 16px;
}

.form__head {
  width: 312px;
}

.form__important {
  margin-right: 30px;
  padding: 8px 10px;
  background-color: #bf0000;
  color: #fff;
  height: fit-content;
}

input[type="text"],
input[type="email"],
.textarea {
  padding: 10px;
  /* font-size: clamp(12px, 0.83vw, 16px); */
  font-size: 16px;
  font-family: "Noto Sans JP", serif;
  border: 1px solid #333;
}

input[type="text"],
input[type="email"],
.radio-container,
.checkbox-container {
  width: 400px;
}

.textarea {
  width: 700px;
  height: 130px;
  padding: 10px;
  resize: none;
  overflow-y: auto;
}

input::placeholder,
textarea::placeholder {
  color: #333;
}

.radio-container {
  gap: 20px;
}

input[type="radio"] {
  margin-right: 10px;
}

.last {
  border-bottom: 1px solid rgba(144, 224, 239, 0.8);
}

.checkbox-container,
.checkbox-label div {
  gap: 10px;
}

.checkbox-label div {
  color: #bf0000;
  text-decoration: underline;
}

/* FORM */
.jp-contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  color: #4e390b;
}

.form-row {
  display: grid;
  grid-template-columns: 200px 60px 1fr;
  align-items: center;
  gap: 80px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(144, 224, 239, 0.8);
}

.form-row label {
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
}

.required {
  display: flex;
  background: #bf0000;
  color: white;
  width: 46px;
  height: 32px;
  justify-content: center;
  align-items: center;
}

.required span {
  color: #f9f9f9;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: 1.6px;
}

.optional {
  content: "";
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  display: flex;
  width: 400px;
  padding: 10px 20px;
  align-items: center;
  border: 1px solid #333;
  background: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 27px;
}

input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  border: 1px solid #333;
  background-color: #fff;
  display: inline-block;
  position: relative;
  cursor: pointer;
  vertical-align: middle;
  transition: background-color 0.2s;
}

input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 10px;
  height: 10px;
  background-color: #333;
  border-radius: 100%;
  border: none;
}

textarea {
  display: flex;
  width: 100%;
  height: 130px;
  padding: 10px 20px;
  align-items: center;
  background: #fff;
  border: 1px solid #333;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 27px;
}

.radio-group {
  display: flex;
  gap: 20px;
  align-items: center;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.radio-group span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 1.6px;
}

input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #333;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  vertical-align: middle;
  transition:
    background-color 0.2s,
    border-color 0.2s;
}

input[type="checkbox"]:checked {
  background-color: #fff;
}

input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 4px;
  width: 5px;
  height: 10px;
  border: 1px solid #333;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.privacy-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.privacy-text {
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}

.privacy-box a {
  color: #bf0000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: 1.6px;
  text-decoration: none;
  text-decoration: underline;
}

.privacy-box span {
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: 1.6px;
}

input::placeholder,
textarea::placeholder {
  color: #333;
  font-size: 16px;
  font-family:
    Noto Sans JP,
    serif;
  font-style: normal;
  font-weight: 300;
  line-height: 27px;
}

.input-wrapper {
  display: flex;
  flex-direction: row;
  gap: 10px;
  text-align: justify;
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  /* 312.5% */
  letter-spacing: 1.6px;
  align-items: baseline;
  word-break: break-word;
  white-space: normal;
}

.mwform-checkbox-field-text {
  display: none;
}

body.page-template-page-contact0-check .required,
body.page-template-page-contact0-check .optional {
  display: none;
}

body.page-template-page-contact0-check .mwform-checkbox-field-text {
  display: inline;
}

body.page-template-page-contact0-check .privacy-text {
  display: none !important;
}

.contact-button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.mwform-checkbox-field input,
.mwform-radio-field input {
  margin: 0 !important;
}

/* === CONTACT CHECK === */
.contact-check-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 200px;
}

.contact-head-text {
  width: 100%;
  text-align: center;
  padding-bottom: 30px;
}

.contact-head-text p {
  color: var(--text-color, #4e390b);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 27px;
}

body.page-template-page-contact0-check .form-row,
.contact-check-page .jp-contact-form .form-row {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: center;
  gap: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(144, 224, 239, 0.8);
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

.contact-check-page .jp-contact-form .required,
.contact-check-page .jp-contact-form .optional,
.contact-check-page .jp-contact-form .privacy-box a,
.contact-check-page .jp-contact-form .privacy-box i,
.contact-check-page .jp-contact-form .privacy-box span {
  display: none;
}

jp-contact-form .mw_wp_form_confirm .form-row,
.jp-contact-form .mw_wp_form_preview .form-row {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: center;
  gap: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(144, 224, 239, 0.8);
}

.jp-contact-form .mw_wp_form_confirm .required,
.jp-contact-form .mw_wp_form_confirm .optional,
.jp-contact-form .mw_wp_form_confirm .privacy-box a,
.jp-contact-form .mw_wp_form_confirm .privacy-box i,
.jp-contact-form .mw_wp_form_confirm .privacy-box span,
.jp-contact-form .mw_wp_form_confirm .privacy-text,
.jp-contact-form .mw_wp_form_preview .required,
.jp-contact-form .mw_wp_form_preview .optional,
.jp-contact-form .mw_wp_form_preview .privacy-box a,
.jp-contact-form .mw_wp_form_preview .privacy-box i,
.jp-contact-form .mw_wp_form_preview .privacy-box span,
.jp-contact-form .mw_wp_form_preview .privacy-text {
  display: none;
}

.contact-check-page .static-answer {
  color: var(--text-color, #4e390b);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
}

.contact-check-button {
  display: flex;
  justify-content: center;
  gap: 100px;
}

/* FINISH */
.notif__message {
  padding: 60px 0 100px 0;
}

.form-row > p,
.form-row br {
  display: none;
  margin: 0;
  padding: 0;
}

.contact-check-button br,
.contact-check-button p:empty {
  display: none;
}

/* --------------------------------------------------- POLICY PROPERTIES --------------------------------------------------- */

.policy__content {
  padding: 100px 0;
}
.policy__list {
  padding-top: 30px;
  gap: 30px;
}
.policy__title {
  padding-bottom: 20px;
}
.label {
  flex: 0 0 auto;
  white-space: nowrap;
}
.policy-address .address-block {
  margin-left: 0.5em;
}

/* ----------------------------------------------- BURGER MENU PROPERTIES ------------------------------------------------ */

.burger-menu {
  display: none;
  cursor: pointer;
  justify-content: space-between;
  padding: 5px;
}
.burger-icon {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  width: 32px;
  height: auto;
  gap: 4px;
  position: relative;
  align-items: center;
  justify-content: center;
}
.bar {
  width: 32px;
  height: 4px;
  border-radius: 4px;
  background-color: #333;
  transition: transform 0.4s ease-in-out;
}
.bar-01.active {
  transform-origin: 15% 0%;
  transform: rotate(45deg);
}
.bar-02.active {
  transform: scaleY(0);
}
.bar-03.active {
  transform-origin: 10% 100%;
  transform: rotate(-45deg);
}
.show-nav .burger-menu .bar-01 {
  transform: rotate(45deg);
}
.show-nav .burger-menu .bar-02 {
  transform: scaleY(0);
}
.show-nav .burger-menu .bar-03 {
  transform: rotate(-45deg);
}

/* ----------------------------------------------- RESPONSIVE PROPERTIES ------------------------------------------------ */

/* LARGE SCREEN */
@media screen and (max-width: 1800px) {
  .w-1520,
  .w-1540,
  .w-1600 {
    width: 90%;
  }
  .nav__layout {
    gap: 3vw;
  }
  .nav-btn__link {
    padding: 15px 40px;
  }
}
@media screen and (max-width: 1600px) {
  .logo {
    width: 15vw;
  }

  /* LAYOUT */
  .w-1400,
  .w-1410,
  .w-1220,
  .w-1200,
  .w-1100 {
    width: 90%;
  }

  /* BUTTONS */
  .btn-more,
  .btn-more02 {
    max-width: 214px;
    width: 23vw;
  }
  .btn-save,
  .btn-edit,
  .btn-submit,
  .btn-index {
    max-width: 252px;
    width: 25vw;
  }

  /* CONTACT SECTION */
  .contact__layout {
    width: 90%;
    margin: 0 auto;
    gap: 40px;
  }
  .contact__layout .sec-title {
    padding: 20px 0;
  }

  /* --------------------------------------------------- MV PROPERTIES --------------------------------------------------- */

  .mv__desc {
    max-width: 50vw;
    top: 30%;
    left: 4vw;
  }

  /* --------------------------------------------------- INDEX PROPERTIES --------------------------------------------------- */

  /* SEC01 */
  .index-sec01__list li:nth-of-type(1) .index-sec01-feature {
    width: 34vw;
  }
  .index-sec01__list li:nth-of-type(2) .index-sec01-feature {
    width: 52vw;
    height: 100%;
    object-fit: cover;
  }

  /* SEC04 */
  .index-sec04__layout {
    padding: 15vh 5vw 15vh 10vw;
  }

  /* SEC06 */
  .index-sec06__layout {
    flex-wrap: wrap;
    width: 90%;
  }

  /* --------------------------------------------------- BUSINESS PROPERTIES --------------------------------------------------- */

  .business__desc {
    width: 45vw;
  }

  /* SEC02 & SEC04 */
  .business-sec02__layout,
  .business-sec04__layout {
    padding-right: 5vw;
  }

  /* SEC03 */
  .business-sec03__layout {
    padding-left: 5vw;
  }

  /* --------------------------------------------------- ACCESS PROPERTIES --------------------------------------------------- */

  .access__map {
    max-width: 650px;
    width: 40vw;
  }

  /* --------------------------------------------------- ABOUT PROPERTIES --------------------------------------------------- */

  .about__main__layout,
  .about__details {
    gap: 5vw;
  }
  .about-l {
    margin-right: 0;
  }
  .about-r {
    margin-left: 0;
  }

  /* MAIN */
  .about-main__wrapper {
    width: 100%;
  }
  .about__main__layout {
    width: 90%;
    margin: 0 0 0 auto;
  }
  .about-img01 {
    width: 45vw;
  }

  /* DETAILS */
  .about__details {
    padding: 50px 5vw;
    max-width: 1300px;
    width: 85%;
  }
  .about-img-cat {
    width: 35vw;
  }
  .about-img-cat .sec__desc {
    padding: 0;
  }

  /* --------------------------------------------------- COMPANY PROPERTIES --------------------------------------------------- */

  .company-img-main {
    width: 32vw;
  }
  .company-info__content {
    max-width: 1230px;
    width: 90%;
  }
  .company-info__content table tr th p {
    margin-left: 2vw;
  }
  .company-info__content table tr td p {
    margin: 0 2vw;
  }
  .company-info__content table tr th {
    width: 30vw;
  }
  .company-main .sec__desc {
    max-width: 100%;
  }

  /* --------------------------------------------------- NEWS PROPERTIES --------------------------------------------------- */

  /* PAGINATION */
  .page-numbers {
    margin: 0 3vw;
  }

  /* --------------------------------------------------- FORM PROPERTIES --------------------------------------------------- */

  .form__layout {
    width: 90%;
  }

  /* FORM */
  .textarea {
    max-width: 700px;
    width: 45vw;
  }

  /* FINISH & 404 */
  .notif__layout {
    width: 90%;
    margin: 0 auto;
  }

  /* --------------------------------------------------- RECRUIT PROPERTIES --------------------------------------------------- */
  .recruit-img-main {
    width: 35vw;
  }
}

@media screen and (max-width: 1500px) {
  .nav__link p,
  .nav-btn__link p,
  .btn-contact span,
  .btn-phone__text span {
    font-size: clamp(12px, 0.83vw, 16px);
  }
  .nav-btn__link svg {
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 1441px) {
  .mv__desc {
    top: 40%;
  }
  .btn-contact {
    width: 350px;
  }
}
@media screen and (max-width: 1300px) {
  .btn-phone {
    width: 260px;
  }
}

/* SEMI-LARGE SCREEN */
@media screen and (max-width: 1200px) {
  /*HEADER*/
  .header__nav {
    display: flex;
    align-items: center;
  }
  .nav__link p,
  .nav-btn__link p,
  .btn-contact span,
  .btn-phone__text span {
    font-size: 16px;
  }

  /*NAV & F-NAV*/
  .nav__layout {
    display: none;
    flex-direction: column;
    width: 100%;
    position: fixed;
    padding-bottom: 30px;
    top: 0;
    right: 0;
    background-image: url(../assets/common/mv-1.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    z-index: 998;
  }
  .nav__layout li {
    margin: 0;
  }
  .burger-menu {
    position: relative;
    padding: 0;
    display: inline-block;
    z-index: 999;
  }
  .nav__layout.show-nav {
    display: flex;
    padding: 90px 0 100vh 0;
    height: 100%;
    gap: 40px;
    /* overflow-y: scroll;
        scrollbar-width: none; */
    text-align: center;
  }

  /* CONTACT SECTION */
  .contact__layout .sec-title {
    padding: 0;
    text-align: center;
  }
  .contact__content,
  .contact__layout {
    gap: 30px;
  }
  .contact__layout {
    flex-direction: column;
  }
  .contact__desc {
    text-align: center;
  }
  .contact__btn {
    gap: 20px;
    flex-direction: column;
    margin: 0 auto;
  }
  .btn-phone,
  .btn-contact {
    width: unset;
    justify-content: center;
  }

  /* FOOTER SECTION */
  footer {
    padding: 50px 0;
  }
  .footer__layout {
    flex-direction: column;
    gap: 30px;
  }
  .footer__content {
    gap: 50px;
  }
  .footer__nav nav {
    gap: 0;
  }
  .f-nav__layout2 {
    flex-direction: row;
  }
  .f-nav01,
  .f-nav02,
  .f-nav03,
  .f-nav04,
  .f-nav05,
  .f-nav06,
  .f-nav07,
  .f-nav08 {
    display: none;
  }
  .footer__socials i {
    font-size: 25px;
  }
  .f-nav09 a p {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
  }
  .footer__logo {
    max-width: unset;
  }
  footer .logo {
    width: unset;
    padding: 0;
  }

  /* --------------------------------------------------- INDEX PROPERTIES --------------------------------------------------- */

  /* SEC01 */
  .index-sec01__list {
    flex-direction: column;
  }
  .index-sec01__list li:nth-of-type(1) .index-sec01-feature,
  .index-sec01__list li:nth-of-type(2) .index-sec01-feature,
  .index-sec01__list li:nth-of-type(3) .index-sec01-feature {
    width: 100%;
    max-width: 100%;
    height: 50vh;
    object-fit: cover;
  }
  .index-sec01__cat-btn {
    top: 40vh;
  }
  .recruit__content {
    width: 100%;
  }
  .business-sec02__layout,
  .business-sec04__layout {
    padding-right: 0;
  }
  .business-sec03__layout {
    padding-left: 0;
  }
  .business__desc {
    width: 45vw;
    height: 700px;
  }
  .business-sec__wrapper {
    padding-bottom: 300px;
  }
}

/* MEDIUM SCREEN */
@media screen and (max-width: 1025px) {
  .logo {
    width: 20vw;
  }

  .nav__layout.show-nav {
    gap: 30px;
  }

  .nav-btn__link {
    padding: 15px 60px;
  }

  .mv {
    height: 90vh;
  }
  .mv__content,
  .mv__content img {
    height: 100%;
    object-fit: cover;
  }
  .mv__desc {
    max-width: 50vw;
    top: 40%;
  }

  /* --------------------------------------------------- INDEX PROPERTIES --------------------------------------------------- */
  /* SEC01 */
  .index-sec01__list li:nth-of-type(1) .index-sec01-feature,
  .index-sec01__list li:nth-of-type(2) .index-sec01-feature,
  .index-sec01__list li:nth-of-type(3) .index-sec01-feature {
    height: 30vh;
  }
  .index-sec01__cat-btn {
    top: 20vh;
  }

  /* SEC04 */
  .index-sec04__desc {
    width: 60vw;
  }

  /* SEC045*/
  .index-sec05__content {
    gap: 50px;
  }

  /* --------------------------------------------------- BUSINESS PROPERTIES --------------------------------------------------- */

  .business__desc {
    width: 40vw;
    max-height: 800px;
    height: 95vh;
  }

  /* IMAGES */
  .business__img-l .business-img-top {
    margin: 0 25vw 30vh 0;
  }
  .business__img-r .business-img-top {
    margin: 0 0 20vw 30vh;
  }
  .business-img-top,
  .business-img-bot {
    width: 35vw;
  }

  .business-sec__wrapper {
    padding-bottom: 100px;
  }

  /* DESC */
  .business__desc {
    width: 100%;
    height: auto;
  }
  .business__desc.sec__desc {
    padding: 0;
  }

  /* IMAGES */
  .business__img-l,
  .business__img-r .business-img-bot,
  .business__img-r,
  .business__img-l .business-img-bot {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .business__img-l .business-img-top,
  .business__img-r .business-img-top {
    margin: 0;
  }
  .business__img-l .business-img-bot,
  .business__img-r .business-img-bot {
    position: relative;
  }

  .business-sec02__layout,
  .business-sec03__layout,
  .business-sec04__layout {
    justify-content: center;
    align-items: center;
    gap: 40px;
  }

  .business__img-l .business-img-bot {
    right: 0;
  }
  .business__img-r .business-img-bot {
    left: 0;
  }

  /* --------------------------------------------------- ACCESS PROPERTIES --------------------------------------------------- */

  .access__map {
    width: 100%;
    max-height: 700px;
    height: 70vh;
  }
  .access__layout {
    flex-direction: column;
  }
  .access__info div {
    justify-content: center;
  }
  .access__info table {
    max-width: 520px;
    width: 100%;
  }
  .access__info table tr th {
    max-width: 150px;
    width: 15vw;
  }
  .access__info table tr td {
    max-width: 370px;
    width: 40vw;
  }

  .recruit-main__content {
    padding: 100px 0;
  }
}

/* TABLET SCREEN */
@media (max-width: 790px) {
  .header__content {
    padding: 10px 4vw;
  }

  /* --------------------------------------------------- MV PROPERTIES --------------------------------------------------- */

  .mv__desc {
    max-width: 90%;
    margin: 40px auto;
  }

  /* --------------------------------------------------- BUSINESS PROPERTIES --------------------------------------------------- */
  .business-img01 {
    height: 300px;
  }
  .business-sec01__content {
    padding-top: 30px;
  }
  .business-sec01__layout {
    gap: 30px;
  }
  .business-sec02__content,
  .business-sec04__content {
    padding: 50px 0;
  }
  .business-sec__wrapper {
    padding-bottom: 50px;
  }

  /* SEC02 & SEC04 */
  .business-sec02__layout,
  .business-sec04__layout {
    padding-right: 0;
  }

  /* SEC03 */
  .business-sec03__layout {
    padding-left: 0;
  }

  .index-sec06__layout {
    grid-template-columns: 1fr;
  }

  .index-sec06__layout .index-sec06__cat:nth-child(n + 2) {
    display: none;
  }

  .works-main .index-sec06__layout .index-sec06__cat:nth-child(n + 2) {
    display: grid;
  }

  .works-main .index-sec06__layout {
    grid-template-columns: repeat(2, 1fr);
  }

  /* --------------------------------------------------- ABOUT PROPERTIES --------------------------------------------------- */
  .about-main__wrapper h5 {
    width: 90%;
    margin: 0 auto;
  }

  .about-main__content {
    padding: 30px 0;
  }

  .about-main__wrapper {
    gap: 30px;
  }

  /* MAIN */
  .about__main__layout {
    flex-direction: column-reverse;
    margin: 0 auto;
  }
  .about-img01 {
    width: 80%;
    border-radius: 20px;
  }

  /* DETAILS */
  .about-img-cat {
    width: 70%;
  }
  .about__details,
  .recruit-main__layout {
    flex-direction: column;
  }

  /* --------------------------------------------------- FORM PROPERTIES --------------------------------------------------- */

  /* FORM */
  .contact-check-page .jp-contact-form .form-row,
  body.page-template-page-contact0-check .form-row {
    grid-template-columns: 250px 1fr;
    grid-template-rows: auto auto;
    gap: 0;
  }

  .contact-check-page .jp-contact-form label,
  body.page-template-page-contact0-check .form-row label {
    grid-column: 1;
    grid-row: 1;
  }

  .contact-check-page .jp-contact-form .static-answer,
  body.page-template-page-contact0-check #text {
    grid-column: 1 / span 2;
    grid-row: 2;
    width: 100%;
  }

  .form-row {
    grid-template-columns: 200px 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
  }

  .form-row label {
    grid-column: 1;
  }

  .form-row .required,
  .form-row .optional {
    grid-column: 2;
  }

  .form-row .input-wrapper {
    grid-column: 1 / span 2;
    grid-row: 2;
    display: flex;
    flex-direction: row;
    gap: 10px;
    text-align: justify;
    color: var(--text-color, #333);
    leading-trim: both;
    text-edge: cap;
    font-family: var(--font-noto);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .form-row input[type="text"],
  .form-row input[type="email"],
  .form-row input[type="tel"],
  .form-row textarea,
  .form-row .radio-group,
  .form-row .privacy-box {
    width: 100%;
    grid-column: 1 / span 2;
    grid-row: 2;
  }

  textarea {
    height: 200px;
  }

  .btn-save,
  .btn-edit,
  .btn-submit {
    max-width: 250px;
    width: 100%;
    padding: 0 10px;
  }

  .btn-index {
    max-width: 220px;
    width: 100vw;
  }

  .jp-contact-form .mw_wp_form_confirm .form-row,
  .jp-contact-form .mw_wp_form_preview .form-row {
    gap: 10px;
    padding: 10px 0;
  }

  .contact-check-button {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-direction: column;
    align-items: center;
  }

  .form__layout-btn2 {
    gap: 10vw;
    flex-wrap: wrap;
  }
  .recruit-main__content {
    padding: 30px 0;
  }
  .recruit-img-main {
    width: 100%;
  }

  .company-main__content {
    padding: 30px 30px 100px 30px;
  }

  .works-main__content,
  .form__content,
  .form__layout,
  .page404__content {
    padding-top: 30px;
  }

  .company-main__img {
    width: 90%;
  }
}

@media screen and (max-width: 640px) {
  .logo,
  footer .logo {
    width: 30vw;
    padding: 10px 0;
  }

  .nav__layout li {
    flex-direction: column;
  }

  .btn-more,
  .btn-more02 {
    max-width: 214px;
    width: 50vw;
  }

  .nav__link p,
  .nav-btn__link p,
  .btn-contact span,
  .btn-phone__text span {
    font-size: clamp(12px, 0.83vw, 16px);
  }

  .nav-btn__link svg {
    width: 16px;
    height: 16px;
  }

  .index-sec03__img img,
  .recruit__img img {
    max-height: 300px;
    height: 300px;
    object-fit: cover;
  }

  .company-info__content table tr {
    flex-direction: column;
  }
  .company-info__content table tr th {
    width: 100%;
  }

  .recruit-table tr {
    flex-direction: column;
    max-width: 100%;
  }

  .recruit-table tr th,
  .recruit-table tr td {
    width: unset;
    max-width: 100%;
  }

  .recruit-table tr td {
    border-left: 1px solid #b1b1b1;
  }
}

@media screen and (max-width: 540px) {
  .works-main .index-sec06__layout {
    grid-template-columns: 1fr;
  }
}

/* MOBILE */
@media screen and (max-width: 490px) {
  .mv {
    height: 70vh;
  }

  .mv__desc {
    top: 30%;
    gap: 2vw;
  }

  /* BUTTONS */
  .btn-save,
  .btn-edit,
  .btn-submit,
  .btn-index {
    width: 100vw;
  }

  .btn-cat {
    gap: 20px;
  }

  /* --------------------------------------------------- INDEX PROPERTIES --------------------------------------------------- */

  /* SLIDER */
  .index-slider .slick-slide,
  .index-slider .slick-slide img {
    width: 52vw !important;
  }

  /* SEC03 */
  .index-sec03__layout,
  .index-sec03__body {
    gap: 30px;
  }

  /* SEC04 */
  .index-sec04__content {
    margin-right: 5vw;
  }
  .index-sec04__desc {
    width: 70vw;
  }

  /* SEC05 */
  .index-sec05__wrapper {
    padding: 100px 0 100px 5vw;
  }

  .index-sec01__cat-btn {
    left: 20px;
  }

  /* --------------------------------------------------- BUSINESS PROPERTIES --------------------------------------------------- */

  .business-sec02__layout,
  .business-sec04__layout {
    flex-direction: column;
  }
  .business-sec03__layout {
    flex-direction: column-reverse;
  }

  /* IMAGES */
  .business__img-l .business-img-top,
  .business__img-r .business-img-top,
  .business-img-bot {
    margin: 0 auto;
  }
  .business-img-top,
  .business-img-bot {
    width: 80%;
  }

  /* --------------------------------------------------- COMPANY PROPERTIES --------------------------------------------------- */

  /* MAIN */
  .company-main__layout {
    flex-direction: column;
  }
  .company-main__content {
    width: 90%;
    padding: 30px 0 100px 0;
    margin: 0 auto;
  }
  .company-img-main {
    width: 70%;
  }
  .company-info__content {
    gap: 60px;
  }

  /* --------------------------------------------------- ACCESS PROPERTIES --------------------------------------------------- */

  .access__info table tr th {
    width: 25vw;
  }
  .access__info table tr td {
    width: 60vw;
  }

  /* --------------------------------------------------- FORM PROPERTIES --------------------------------------------------- */

  /* FORM */
  .form__information {
    flex-direction: column;
    gap: 20px;
  }
  input[type="text"],
  input[type="email"],
  .radio-container,
  .checkbox-container,
  .textarea {
    width: 90%;
  }
  .form__head {
    max-width: 308px;
    width: 50vw;
  }
  .form__important {
    margin-right: 0;
    padding: 1vw 10px;
  }

  .policy__content {
    padding-top: 60px;
  }

  .btn-more .f-16,
  .btn-more02 .f-16 {
    font-size: clamp(12px, 0.83vw, 16px);
  }
}

@media screen and (max-width: 390px) {
  .arrow {
    max-width: 20px;
    max-height: 20px;
  }
  .btn-cat {
    gap: 10px;
  }
  .btn-cat h6 {
    font-size: 14px;
  }
  .btn-phone,
  .btn-contact {
    padding: 10px 20px;
    gap: 10px;
  }
  .btn-phone svg,
  .btn-contact svg {
    width: 20px;
    height: 20px;
  }

  .privacy-text {
    align-items: flex-start;
    gap: 0;
    flex-direction: column;
  }
}

@media screen and (max-width: 350px) {
  .btn-phone,
  .btn-contact {
    padding: 10px;
    gap: 10px;
  }

  .mv__desc {
    top: 20%;
  }
}
