@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");

html {
  font-family: "Noto Sans JP", serif;
  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: #111827;
  font-family: "Noto Sans JP", serif;
  font-style: normal;
}
/* section {
    position: relative;
    z-index: 1 !important;
} */
*,
:before,
::after {
  background-repeat: no-repeat;
  box-sizing: inherit;
}
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;
}

i {
  color: #213b74;
  font-size: 20px;
}

/* 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: #213b74;
  color: #fefefe;
}

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

.section {
  max-width: 1920px;
}

.w-1040 {
  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;
}

/* DISPLAY */
.display {
  display: flex;
  align-items: center;
}
.df {
  display: flex;
}
.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;
}
.blue {
  color: #213b74;
}
.light {
  color: #fff;
}
.dark {
  color: #111827;
}

.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-32m,
.f-32bl {
  font-size: clamp(20px, 1.67vw, 32px);
}
.f-35 {
  font-size: clamp(22px, 1.7vw, 35px);
}
.f-65b,
.f-65bl {
  font-size: clamp(32px, 3.33vw, 65px);
}

.f-16,
.f-35 {
  font-weight: 400;
}
.f-16m,
.f-24m,
.f-32m {
  font-weight: 500;
}
.f-16b,
.f-24b,
.f-65b {
  font-weight: 700;
}
.f-16bl,
.f-24bl,
.f-32bl,
.f-65bl {
  font-weight: 900;
}

/* LETTER SPACING */
.ls-5 {
  letter-spacing: 0.05em;
}

/* --------------------------------------------------- PAGE PROPERTIES --------------------------------------------------- */

.logo {
  max-width: 215px;
  height: auto;
  object-fit: cover;
}

header {
  position: fixed;
  top: 0;
  z-index: 9999999;
  width: 100%;
}
.header__content {
  background: var(--base-color, #fff);
  padding: 15px 50px;
  position: relative;
  z-index: 1002;
}

.header__content::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--main-color, #213b74);
  z-index: 2000;
  pointer-events: none;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../assets/common/mv-1.png);
  background-size: 100% auto;
  background-position: top;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}
.header.scrolled::before {
  opacity: 1;
}

.headaer__logo,
.logo__link,
.logo {
  position: relative;
  z-index: 1002;
}

.nav__layout li {
  width: fit-content;
}
.nav-contact {
  padding: 20px 60px;
  background-color: #213b74;
  border-radius: 50px;
}

.header__layout {
  position: relative;
  justify-content: space-between;
  gap: 30px;
}
.header__nav {
  flex: 1;
}
.header__nav nav {
  width: 100%;
}
.header__nav-inner {
  width: 100%;
  justify-content: center;
  position: relative;
}

.nav__layout {
  gap: 50px;
  justify-content: center;
}

.nav-sp-contact-group,
.nav-sp-ig,
.nav-sp-tel,
.nav-sp-contact {
  display: none;
}

.header__contact-area {
  gap: 30px;
  flex-shrink: 0;
}

.header__tel {
  gap: 10px;
  font-weight: 400;
  white-space: nowrap;
}

.header__ig {
  padding: 10px 0 10px 20px;
  border-left: 1px solid var(--text-primary-color, #111827);
  display: flex;
  align-items: center;
}

.header__ig img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.nav-contact {
  padding: 20px 60px;
  background-color: #213b74;
  border-radius: 50px;
}

/* OPACITY FILTERS */
.logo,
.nav__layout li,
.nav-contact a,
.index-sec01__cat-link,
.blog__link,
.footer__socials a,
.checkbox-label a,
.f-nav__layout1 li,
.f-nav__layout2 li,
.f-nav__layout3 li,
.sitemap__link {
  transition:
    filter 0.3s ease,
    opacity 0.3s ease;
}
.logo:hover,
.nav__layout li:hover,
.nav-contact a:hover,
.index-sec01__cat-link:hover,
.blog__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,
.sitemap__link:hover {
  filter: brightness(1);
  opacity: 0.7;
}

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

.mv__desc {
  gap: 27px;
  /* top: 425px; */
  top: 65vh;
  left: 120px;
  /* bottom: 135px; */
}

.mv__desc h1,
.mv__desc h5 {
  color: var(--base-color, #fff);
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
}

.mv__desc h5 {
  max-width: 1250px;
}

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

.mv__content {
  overflow: hidden;
}

.mv__video {
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: top;
  display: block;
}

/* --------------------------------------------------- SECTION PROPERTIES --------------------------------------------------- */

.br {
  border-radius: 50px;
}
.br-blue {
  border: 1px solid #213b74;
}

/* 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;
  border: 1px solid #213b74;
  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 {
  border-radius: 50px;
  color: var(--base-color, #fff);
  border: 1px solid var(--base-color, #fff);
  box-shadow: 1px 6px 10px 0 rgba(0, 0, 0, 0.15);
}

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

.btn-more 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-more i {
  color: #213b74 !important;
}
.btn-phone i,
.btn-contact i {
  color: #fff !important;
}

.btn-more: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);
}

.btn-phone:hover,
.btn-contact:hover {
  background: #fff;
  color: #213b74;
}

.btn-phone:hover p,
.btn-contact:hover p,
.btn-phone:hover i,
.btn-contact:hover i {
  color: #213b74 !important;
}

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

.footer__wrapper {
  gap: 50px;
}
.footer__copyright p {
  font-size: clamp(14px, 0.83vw, 16px);
}
/* CONTACT SECTION */
.contact__content {
  padding: 50px 0;
  border-radius: 50px;
  border: 0.5px solid var(--main-color, #213b74);
  background: var(--main-color, #213b74);
  box-shadow: 2px 8px 10px 0 rgba(0, 0, 0, 0.25);
  gap: 10px;
}
.contact__layout .sec-title {
  padding: 20px 50px;
}
.contact__desc {
  max-width: 870px;
}
.contact__btn {
  gap: 30px;
}

/* FOOTER SECTION */
footer {
  margin-top: 100px;
  padding: 50px 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)),
    url("../assets/common/footer-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* background-color: rgba(255, 255, 255, 0.6); */
}
.footer__logo {
  max-width: 215px;
}
.footer__logo,
.footer__socials {
  gap: 30px;
}
.footer__socials i {
  color: #111827;
  font-size: 27px;
}

.footer__contact-group {
  align-items: center;
}

.footer__tel {
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--main-color, #213b74);
  color: #111827;
  white-space: nowrap;
}

.footer__socials {
  gap: 30px;
  padding-top: 10px;
}

.footer__nav nav {
  gap: 80px;
  align-items: start !;
}
.f-nav__layout1,
.f-nav__layout2,
.f-nav__layout3 {
  gap: 30px;
  width: fit-content;
}

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

/* SEC01 */
.index-sec01__content {
  padding-top: 100px;
}
.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;
}

/* SEC02 */
.index-sec02__content {
  padding-top: 100px;
}

.index-sec02__layout {
  gap: 30px;
}

.index-sec02__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.index-sec02__item {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.index-sec02__cat-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.index-sec02-feature {
  width: 100%;
  height: 300px;
  max-width: none;
  max-height: none;
  object-fit: cover;
  border-radius: 20px;
}

.index-sec02__cat-btn {
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 70px 30px 25px;
  background: linear-gradient(
    180deg,
    rgba(33, 59, 116, 0) 0%,
    rgba(33, 59, 116, 0.9) 100%
  );
  border-radius: 0 0 20px 20px;
}

.index-sec02__cat-btn .btn-cat {
  width: 100%;
  gap: 30px;
}

.index-sec02__cat-btn h6 {
  line-height: 1.5;
}

.chevron-right {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
  flex-shrink: 0;
}

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

/* SEC03 */
.index-sec03__content {
  padding-top: 100px;
}
.index-sec03__layout {
  padding-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.index-sec03__cat {
  max-width: 450px;
  gap: 40px;
}
.index-sec03-feature {
  max-width: 100%;
  max-height: 500px;
  object-fit: cover;
}
.index-sec03__desc {
  gap: 10px;
}

/* SEC04 */
.index-sec04 {
  margin-top: 100px;
}
.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/sec04-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.index-sec04__desc {
  max-width: 815px;
}

.index-sec04__btn .btn-more {
  background: #fff;
}

/* SEC05 */
.index-sec05 {
  margin-top: 100px;
}

.index-sec05__content {
  margin-left: 50px;
}

.index-sec05__layout {
  padding: 195px 250px 195px 100px;
  border-radius: 100px 0px 0px 100px;
  gap: 50px;
  background-image: url(../assets/top/sec05-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  align-items: flex-end;
}

.index-sec05__desc {
  max-width: 815px;
}

.index-sec05__btn .btn-more {
  background: #fff;
}

/* SEC06 */
.index-sec06 {
  margin-top: 100px;
}
.index-sec06__content {
  gap: 50px;
}
.index-sec06__layout {
  gap: 100px;
}
.index-sec06__layout .sec-title h6 {
  text-align: center;
}

/* SEC07 */
.index-sec07 {
  margin-top: 100px;
}

.index-sec07__content {
  margin-right: 50px;
}

.index-sec07__layout {
  padding: 195px 100px 195px 250px;
  border-radius: 0px 100px 100px 0px;
  gap: 50px;
  background-image: url(../assets/top/sec07-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.index-sec07__desc {
  max-width: 815px;
}

.index-sec07__btn .btn-more {
  background: #fff;
}

.blog__item-details i {
  font-size: 30px;
}

/* --------------------------------------------------- REASON PROPERTIES --------------------------------------------------- */
.reason__list {
  list-style-type: disc;
  margin-left: 1.5em;
  padding-left: 0;
}

.reason__list li {
  margin-bottom: 5px;
}

/* --------------------------------------------------- REASON PROPERTIES --------------------------------------------------- */

.reason-sec__wrapper {
  padding-bottom: 100px;
  border-bottom: 1px solid #1e3a8a;
}

.reason-sec04 .reason-sec__wrapper {
  padding-bottom: 0;
  border-bottom: none;
}

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

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

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

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

/* DESC */
.reason__desc {
  height: 680px;
}
.reason__desc .sec__desc {
  padding: 0 50px;
}

/* SEC02 & SEC04*/
.reason-sec02__content {
  padding-top: 100px;
}

.reason-sec04__content {
  padding-top: 100px;
}
.reason-sec02__layout,
.reason-sec04__layout {
  padding-right: 140px;
}

/* SEC03 */
.reason-sec03__layout {
  padding-left: 140px;
}

/* --------------------------------------------------- SERVICE PROPERTIES --------------------------------------------------- */

.service-sec__wrapper {
  padding-bottom: 100px;
  border-bottom: 1px solid #1e3a8a;
}

/* SEC01 */
.service-sec01__content {
  padding-top: 100px;
}

.service-sec01__layout {
  gap: 100px;
}

.service-img01 {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.service-sec01__desc {
  gap: 20px;
}

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

.service-img-top {
  max-height: 675px;
}

.service-img-bot {
  max-height: 290px;
}

.service__img-l,
.service__img-r {
  max-width: 800px;
  max-height: 900px;
  z-index: -1;
}

.service__img-l,
.service__img-r .service-img-bot {
  left: 0;
}

.service__img-r,
.service__img-l .service-img-bot {
  right: 0;
}

.service__img-l .service-img-bot,
.service__img-r .service-img-bot {
  bottom: 0;
  z-index: 1;
}

.service__img-l .service-img-top {
  margin: 0 350px 225px 0;
}

.service__img-r .service-img-top {
  margin: 0 0 225px 350px;
}

/* DESC */
.service__desc {
  height: 680px;
}

.service__desc .sec__desc {
  padding: 0 50px;
}

/* SEC02 & SEC04 */
.service-sec02__content,
.service-sec04__content {
  padding-top: 100px;
}

.service-sec02__layout,
.service-sec04__layout {
  padding-right: 140px;
}

/* SEC03 */
.service-sec03__content {
  padding-top: 100px;
}
.service-sec03__layout {
  padding-left: 140px;
}
.service-sec__wrapper {
  padding-bottom: 100px;
  border-bottom: 1px solid #1e3a8a;
}

.service__btn {
  padding-top: 280px;
  position: relative;
  z-index: 2;
}

.service__btn .btn-more {
  background: #fff;
}

/* FLOW */
.service-flow {
  padding-top: 100px;
}

.service-flow__head {
  padding: 50px 0;
  border-radius: 20px 20px 0 0;
  background: var(--main-color, #213b74);
}

.service-flow__body {
  padding: 60px 50px;
  border-radius: 0 0 20px 20px;
  background: #e5e7eb;
}

.service-flow__layout {
  align-items: center;
  gap: 30px;
}

.service-flow__item {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
}

.service-flow-img {
  width: 350px;
  height: 350px;
  object-fit: cover;
  flex-shrink: 0;
}

.service-flow__desc {
  width: 100%;
  padding: 0 50px;
  gap: 30px;
}

.service-flow__desc h6 {
  font-size: 24px;
  font-weight: 700;
}

.service-flow__text {
  padding: 15px;
  background: #e5e7eb;
}

.service-flow__info {
  padding-left: 15px;
  gap: 30px;
}

.service-flow__arrow i {
  color: #213b74;
  font-size: 40px;
}
/* --------------------------------------------------- SERVICES PROPERTIES --------------------------------------------------- */

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

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

.services__details {
  padding: 50px 260px;
  /* width: 1300px; */
  background-image: url(../assets/common/sec-bg.png);
  background-size: cover;
  background-position: center;
}
.service-l {
  border-radius: 0px 100px 100px 0px;
  margin-right: 100px;
}
.service-r {
  border-radius: 100px 0px 0px 100px;
  margin-left: 100px;
}

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

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

.works__page-count {
  padding-bottom: 30px;
}

.works__layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 60px;
  padding-bottom: 100px;
}

.works__item {
  width: 100%;
}

.works__item-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
}

.works__item-desc {
  gap: 5px;
  padding-top: 20px;
}

.works__item-desc h6 {
  line-height: 1.5;
}

.works__item-desc p {
  font-size: 14px;
}

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

.news__content {
  padding-top: 100px;
}

.news-grid__page-count {
  padding-bottom: 50px;
}

.news-grid__layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px 50px;
  padding-bottom: 100px;
}

.news-grid__item {
  width: 100%;
}

.news-grid__item .news__link {
  display: block;
  width: 100%;
}

.news-grid__item-img {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.news-grid__item-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.news-grid__item .news__link:hover .news-grid__item-img img {
  transform: scale(1.05);
}

.news-grid__item-desc {
  gap: 5px;
  padding-top: 20px;
}

.news-grid__item-desc h6 {
  line-height: 1.5;
}

.news-grid__item-desc p {
  font-size: 14px;
}

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

.news-det__layout {
  gap: 30px;
}

.news-det__head {
  gap: 10px;
}

.news-det__head h6 {
  line-height: 1.5;
}

.news-det__content {
}

.news-det__content img {
  width: 100%;
  max-height: 680px;
  border-radius: 20px;
  object-fit: cover;
}

.news-det__content p {
  line-height: 2;
}

.news-det__btn {
  padding-top: 70px;
}

/* --------------------------------------------------- PAGINATION PROPERTIES --------------------------------------------------- */

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  gap: 30px;
}

.page-numbers {
  display: inline-block;
  text-decoration: none;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  padding: 0;
  cursor: pointer;
  color: #213b74;
  transition: background-color 0.3s;
  font-size: 16px;
  font-family: "Noto Sans JP", serif;
}

.page-numbers:hover,
.page-numbers.current {
  background-color: #213b74;
  color: #fff;
}

.page-numbers i {
  color: #213b74;
  font-size: 14px;
}

.page-numbers:hover i {
  color: #fff;
}

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

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

/* INFO */
.company-info__content {
  width: 1230px;
  padding: 100px 0;
}
.company-info__content table {
  border-collapse: separate;
  border-spacing: 0;
}
.company-info__content table tr.last-tr.c {
  border-bottom: none;
}
.company-info__content table tr th,
.company-info__content table tr td {
  padding: 30px 0;
}
.company-info__content table tr th {
  width: 400px;
  border-top: 1px solid #1e3a8a;
}
.company-info__content table tr th p {
  margin-left: 55px;
}
.company-info__content table tr td {
  width: 760px;
  border-top: 1px solid #213b74;
}
.company-info__content table tr td p {
  margin: 0 55px;
}
.company-info__content table tr.last-tr th {
  border-bottom: 1px solid #1e3a8a;
}
.company-info__content table tr.last-tr td {
  border-bottom: 1px solid #213b74;
}

.company-info__list {
  list-style-type: disc;
  margin-left: 4vw;
  padding-left: 0;
}

.company-info__list li {
  line-height: 1.8;
}

.company-detail__content {
  width: 565px;
  padding-bottom: 100px;
  gap: 60px;
}

.company-detail__block {
  gap: 15px;
}

.company-detail__title {
  width: fit-content;
  margin: 0 auto;
  color: #111827;
  padding: 0 20px 5px;
  border-bottom: 1px solid #111827;
}

.company-detail__list {
  width: fit-content;
  margin: 0 auto;
  list-style-type: disc;
  padding-left: 1.5em;
  text-align: left;
}

.company-detail__list li {
  line-height: 1.8;
}

.company-detail__certificates {
  gap: 15px;
}

.company-detail__certificate-img {
  width: auto;
  height: 355px;
  object-fit: cover;
}

.company-map__content {
}

.company-map__content iframe {
  width: 100%;
  height: 400px;
}

/* --------------------------------------------------- BLOG PROPERTIES --------------------------------------------------- */

.blog__content {
  padding-top: 100px;
}
.blog__content .blog__layout {
  padding-bottom: 100px;
}

/* LIST */
.blog__layout,
.blog__item-content,
.blog__item-details {
  gap: 30px;
}
.blog__item-details {
  justify-content: space-between;
  width: 100%;
}
.blog__item-content {
  padding-bottom: 20px;
  border-bottom: 1px solid #111827;
}
.blog__item-img img {
  max-width: 300px;
  max-height: 200px;
  object-fit: cover;
  border-radius: 20px;
}
.blog__item-desc {
  gap: 10px;
  max-width: 810px;
  width: 100%;
}
.arrow-blog {
  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: #213b74;
  transition: background-color 0.3s;
  /* font-size: clamp(12px, 0.83vw, 16px); */
  font-size: 16px;
  font-family: "Noto Sans JP", serif;
}
.page-numbers:hover,
.page-numbers.current {
  background-color: #213b74;
  color: #fff;
}

/* DETAIL */
.blog-det__head {
  gap: 10px;
}
.blog-det__layout {
  gap: 30px;
}
.blog-det__content {
  padding-bottom: 20px;
  border-bottom: 1px solid #213b74;
}

.blog-det__image img {
  width: 100%;
  height: 700px;
  border-radius: 20px;
  object-fit: cover;
}
.blog-det__btn {
  padding-top: 70px;
}

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

.form__content,
.page404__content {
  padding-top: 100px;
}
/* .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;
}
.form__information {
  width: 100%;
  border-top: 1px solid #1e3a8a;
  padding: 30px 0;
  /* font-size: clamp(12px, 0.83vw, 16px); */
  font-size: 16px;
}
.form__head {
  width: 312px;
  align-items: center;
}
.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 rgba(17, 24, 39, 0.8);
}
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: rgba(17, 24, 39, 0.3);
}
.radio-container {
  gap: 20px;
}
input[type="radio"] {
  margin-right: 10px;
}
.last {
  border-bottom: 1px solid #1e3a8a;
}
.form__content input[type="radio"],
.form__content input[type="checkbox"] {
  accent-color: #213b74;
}
.checkbox-container,
.checkbox-label div {
  gap: 10px;
}
.checkbox-label div {
  color: #bf0000;
}

.form__information > p,
.form__information > div:not(.form__head),
.form__information td,
.form__information .textarea,
.form__information .mw_wp_form_confirm {
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.8;
}

.form__information .form__head {
  flex-shrink: 0;
}

.mw_wp_form_confirm .form__important,
.mw_wp_form_confirm .checkbox-label,
.mw_wp_form_confirm .agree-text,
.mw_wp_form_confirm input[type="checkbox"] {
  display: none;
}

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

.mw_wp_form_confirm .form__important {
  display: none;
}

.mw_wp_form_confirm .checkbox-label {
  display: none;
}
/* FINISH */
.notif__message {
  padding: 60px 0 100px 0;
}

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

.policy__content {
  padding-top: 100px;
}
.policy__list {
  padding-top: 30px;
  gap: 30px;
}
.policy__title {
  padding-bottom: 10px;
}

/* ----------------------------------------------- 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: 30px;
  height: 20px;
  justify-content: space-between;
  position: relative;
  align-items: center;
}
.bar {
  width: 25px;
  height: 4px;
  background-color: #09173d;
  transition: transform 0.4s ease-in-out;
}
.bar-01.active {
  transform-origin: 0% 0%;
  transform: rotate(45deg);
}
.bar-02.active {
  transform: scaleY(0);
}
.bar-03.active {
  transform-origin: 0% 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: 1600px) {
  /* .logo {
    width: 15vw;
  }*/

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

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

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

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

  .mv__desc {
    top: 65%;
    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,
  .index-sec07__layout {
    padding: 15vh 5vw 15vh 10vw;
  }

  .index-sec05__layout {
    padding: 15vh 10vw 15vh 5vw;
  }

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

  /* --------------------------------------------------- REASON PROPERTIES --------------------------------------------------- */

  .reason__desc {
    width: 45vw;
  }

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

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

.reason-sec03__content {
padding-top: 100px;
}

  /* SERVICE PROPERTIES */
  .service__desc {
    width: 45vw;
  }

  .service-sec02__layout,
  .service-sec04__layout {
    padding-right: 5vw;
  }

  .service-sec03__layout {
    padding-left: 5vw;
  }

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

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

  /* --------------------------------------------------- SERVICES PROPERTIES --------------------------------------------------- */

  .services__main__layout,
  .services__details {
    gap: 5vw;
  }
  .service-l {
    margin-right: 0;
  }
  .service-r {
    margin-left: 0;
  }

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

  /* DETAILS */
  .services__details {
    padding: 50px 5vw;
    /* max-width: 1300px;
    width: 85%;*/
  }
  .services-img-cat {
    width: 35vw;
  }
  .services-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 {
    max-width: 400px;
    width: 27vw;
  }
  .company-info__content table tr td {
    max-width: 760px;
    width: 52vw;
  }

  /* --------------------------------------------------- BLOG 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;
  }

  /* --------------------------------------------------- SITEMAP PROPERTIES --------------------------------------------------- */

  .sitemap__link {
    width: 90%;
  }
}

@media screen and (max-width: 1540px) {
  .nav__layout {
    gap: 30px;
  }
}

@media screen and (max-width: 1441px) {
  .header__content {
    padding: 15px 30px;
  }
  .nav__layout {
    gap: 30px;
  }

  .nav-contact a p,
  .header__tel span,
  .nav01 a p,
  .nav02 a p,
  .nav03 a p,
  .nav04 a p,
  .nav05 a p,
  .nav06 a p {
    font-size: clamp(14px, 0.83vw, 16px);
  }

  .header__ig img,
  .header__tel svg {
    width: 16px;
    height: 16px;
  }
}

@media screen and (max-width: 1311px) {
  .header__layout,
  .header__contact-area {
    gap: 20px;
  }

  .headaer__logo {
    width: 180px;
  }
}

@media screen and (max-width: 1241px) {
  .headaer__logo {
    width: 120px;
  }
}

/* SEMI-LARGE SCREEN */
@media screen and (max-width: 1200px) {
  /*HEADER*/
  .headaer__logo {
    width: unset;
  }
  .header__nav {
    flex: unset;
  }
  .header__contact-area {
    display: none;
  }
  .header__nav-inner {
    position: static;
  }
  .header__content {
    position: relative;
    z-index: 1002;
    background: #fff;
  }

  .header__layout {
    position: relative;
    z-index: 1003;
  }

  .headaer__logo {
    position: relative;
    z-index: 1004;
  }

  /*NAV & F-NAV*/
  .nav__layout {
    display: none;
    flex-direction: column;
    width: 100%;
    position: fixed;
    padding-bottom: 30px;
    gap: 40px;
    top: 0;
    right: 0;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    z-index: 999;
  }
  .nav__layout li {
    margin: 0;
  }
  .burger-menu {
    position: relative;
    padding: 0;
    display: inline-block;
    z-index: 1004;
  }
  .nav__layout.show-nav {
    display: flex;
    padding: 100px 0 100vh 0;
    height: 100%;
    gap: 40px;
    text-align: center;
  }

  .header__nav {
    flex: unset;
  }

  .header__contact-area {
    display: none;
  }

  .header__nav-inner {
    position: static;
  }

  .nav__layout {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    padding: 100px 0 60px;
    gap: 40px;
    background: #fff;
    background-image: none;
    box-shadow: none;
    z-index: 999;
    overflow-y: auto;
  }

  .nav__layout li {
    margin: 0;
    text-align: center;
  }

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

  .nav-sp-contact-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .nav-sp-info {
    gap: 15px;
    justify-content: center;
    flex-direction: column;
  }

  .nav-sp-ig {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 20px 15px 20px;
    border-bottom: 1px solid var(--main-color, #213b74);
  }

  .nav-sp-ig img {
    width: 24px;
    height: 24px;
    object-fit: contain;
  }

  .nav-sp-tel {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #111827;
    white-space: nowrap;
  }

  .nav-sp-contact {
    width: 182px;
    height: 63px;
    border-radius: 50px;
    background: #213b74;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
  }

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

/* MEDIUM SCREEN */
@media screen and (max-width: 1025px) {
  /* --------------------------------------------------- INDEX PROPERTIES --------------------------------------------------- */

  /* SEC01 */
  .index-sec01__cat-btn {
    top: 31vh;
  }

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

  /* --------------------------------------------------- SERVICE PROPERTIES --------------------------------------------------- */

  .service-flow__body {
    padding: 60px 30px;
  }

  .service-flow__desc {
    padding: 0 20px;
  }

  .service-flow-img {
    width: 250px;
    height: 250px;
  }
  /* --------------------------------------------------- REASON PROPERTIES --------------------------------------------------- */

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

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

  /* --------------------------------------------------- REASON PROPERTIES --------------------------------------------------- */

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

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

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

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

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

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

  .reason-img01,
  .service-img01 {
    height: 350px;
  }

  .services__main__layout {
    flex-direction: column-reverse;
    margin: 0 auto;
  }

  .services-img01,
  .services-main__desc {
    max-width: unset;
    width: 100%;
    border-radius: 50px;
  }

  .works__layout {
    gap: 30px;
  }
  .works__item-img img,
  .news-grid__item-img img {
    height: 300px;
  }
}

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

  .mv__video {
    height: 70vh;
    object-fit: cover;
    object-position: center;
  }

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

  .mv__desc {
    margin: 40px auto;
    /* position: static; */
  }
  .mv__content img {
    height: 70vh;
    object-fit: cover;
    object-position: 70%;
  }

  /* --------------------------------------------------- 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: 30vh;
    object-fit: cover;
  }
  .index-sec01__cat-btn {
    top: 20vh;
  }

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

  .index-sec02-feature {
    height: 30vh;
  }

  .index-sec02__cat-btn {
    padding: 60px 20px 20px;
  }

  .contact__layout {
    flex-direction: column;
  }
  .contact__layout .sec-title {
    padding: 0;
  }
  .contact__layout,
  .contact__content {
    gap: 30px;
  }
  .contact__content .sec-title h6,
  .contact__desc {
    text-align: center;
  }

  /* FOOTER SECTION */
  .footer__layout {
    flex-direction: column;
    gap: 40px;
  }
  .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 {
    display: none;
  }
  .f-nav08,
  .f-nav09,
  .nav09 {
    text-align: center;
  }

  /* SERVICE PROPERTIES */
  .service-sec__wrapper {
    padding-bottom: 100px;
  }

  .service__desc {
    width: 100%;
    height: auto;
  }

  .service__desc.sec__desc {
    padding: 0;
  }

  .service__img-l,
  .service__img-r .service-img-bot,
  .service__img-r,
  .service__img-l .service-img-bot {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .service__img-l .service-img-top,
  .service__img-r .service-img-top {
    margin: 0;
  }

  .service__img-l .service-img-bot,
  .service__img-r .service-img-bot {
    position: relative;
  }

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

  .service-sec02__layout,
  .service-sec04__layout {
    padding-right: 0;
  }

  .service-sec03__layout {
    padding-left: 0;
  }

  .service__btn {
    padding-top: 50px;
  }

  .service-flow__body {
    padding: 40px 5vw;
  }

  .service-flow__item {
    flex-direction: column;
  }

  .service-flow-img {
    width: 100%;
    height: 300px;
  }

  .service-flow__desc {
    padding: 4vw;
    width: unset;
  }

  .service-flow__info {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  /* WORKS */

  .works__layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }

  /* NEWS */

  .news-grid__layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 30px;
  }

  .news-det__content img {
    max-height: 500px;
  }

  .pagination {
    gap: 20px;
  }
  /* --------------------------------------------------- COMPANY PROPERTIES --------------------------------------------------- */

  .company-detail__content {
    gap: 50px;
  }

  .company-detail__certificates {
    flex-direction: column;
  }

  .company-detail__certificate-img {
    width: 80%;
    max-width: 300px;
    height: auto;
  }

  .company-map__content iframe {
    height: 350px;
  }
  /* --------------------------------------------------- FORM PROPERTIES --------------------------------------------------- */

  /* FORM */
  .form__head {
    max-width: 312px;
    width: 35vw;
  }
  .textarea {
    width: 400px;
  }
  .form__layout-btn2 {
    gap: 10vw;
    flex-wrap: wrap;
  }

  .company-main__layout,
  .company-info__content {
    gap: 5vw;
  }
}

/* MOBILE */
@media screen and (max-width: 500px) {
  /*  .logo {
    width: 25vw;
  }*/
  .nav__layout.show-nav {
    padding: 80px 0 100vh 0;
  }
  .nav-sp-contact-group {
    gap: 20px;
  }
  .nav-sp-contact {
    height: 53px;
  }

  .mv__content img {
    object-position: 50%;
  }

  .mv__desc {
    top: 42%;
    right: 4vw;
  }

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

  /* CONTACT SECTION */
  .contact__content,
  .contact__layout {
    gap: 20px;
  }
  .contact__layout {
    flex-direction: column;
  }
  .contact__desc {
    text-align: center;
  }
  .contact__btn {
    flex-direction: column;
    margin: 0 auto;
  }

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

  .mv__desc {
  }

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

  /* SEC03 */
  .index-sec03__layout {
    grid-template-columns: repeat(1, 1fr);
  }
  .index-sec03__cat {
    width: 80%;
    margin: 0 auto;
  }

  /* SEC04 */
  .index-sec04__content,
  .index-sec07__content {
    margin-right: 5vw;
  }

  .index-sec05__content {
    margin-left: 5vw;
  }

  .index-sec04__desc,
  .index-sec05__desc,
  .index-sec07__desc {
    width: 70vw;
  }

  .works__layout {
    grid-template-columns: 1fr;
  }

  .news-grid__page-count {
    padding-bottom: 30px;
  }

  .news-grid__layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .news-det__btn {
    padding-top: 50px;
  }

  .pagination {
    gap: 10px;
  }

  .page-numbers {
    width: 35px;
    height: 35px;
    line-height: 35px;
    margin: 0 3vw;
  }

  .company-detail__list {
    width: 90%;
  }

  .company-map__content iframe {
    height: 350px;
  }

  .company-info__content table tr td {
    border-top: none;
  }

  .company-info__content table tr.last-tr th {
    border-bottom: none;
  }

  .company-info__content table tr th {
    padding-bottom: 10px;
  }

  .company-info__content table tr td {
    padding-top: 10px;
  }

  .service-flow__arrow i {
    font-size: 30px;
  }

  .index-sec04__layout,
  .index-sec05__layout,
  .index-sec07__layout {
    gap: 20px;
  }

  .index-sec06__layout {
    gap: 30px;
  }
  .index-sec01__content,
  .mv-sp__title,
  .reason-sec01__content,
  .service-sec01__content,
  .services-main__content,
  .news__content,
  .blog__content,
  .form__content,
  .page404__content,
  .policy__content,
  .company-info__content {
    padding-top: 30px;
  }

  .index-sec01__content--cta {
    padding-top: 100px;
  }

  .works__layout,
  .news-grid__layout,
  .blog__content .blog__layout {
    padding-bottom: 30px;
  }

  /* --------------------------------------------------- REASON PROPERTIES --------------------------------------------------- */

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

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

  /* SERVICE PROPERTIES */
  .service-sec02__layout,
  .service-sec04__layout {
    flex-direction: column;
  }

  .service-sec03__layout {
    flex-direction: column-reverse;
  }

  .service__img-l .service-img-top,
  .service__img-r .service-img-top,
  .service-img-bot {
    margin: 0 auto;
  }

  .service-img-top,
  .service-img-bot {
    width: 80%;
  }

  /* --------------------------------------------------- SERVICES PROPERTIES --------------------------------------------------- */

  /* MAIN */
  .services__main__layout {
    flex-direction: column-reverse;
    margin: 0 auto;
  }
  .services-img01 {
    width: 100%;
    border-radius: 20px;
    height: 350px;
  }

  /* DETAILS */
  .services-img-cat {
    width: 70%;
  }
  .services__details {
    flex-direction: column;
  }

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

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

  .company-info__content table tr {
    justify-content: flex-start;
    flex-direction: column;
  }
  .company-info__content table tr th,
  .company-info__content table tr td {
    width: 100%;
  }

  .reason-sec01__layout,
  .service-sec01__layout,
  .services-main__wrapper {
    gap: 30px;
  }

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

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

  /* --------------------------------------------------- BLOG PROPERTIES --------------------------------------------------- */

  /* LIST */
  .blog__item-content {
    flex-direction: column;
  }

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

  /* FORM */
  .form__information {
    flex-direction: column;
    gap: 20px;
  }
  input[type="text"],
  input[type="email"],
  .radio-container,
  .textarea {
    width: 90%;
  }

  .checkbox-container {
    width: 100%;
  }
  .form__head {
    max-width: 308px;
    width: 70vw;
  }
  .form__important {
    margin-right: 0;
    padding: 1vw 10px;
  }

  .blog-det__image img,
  .news-det__content img {
    max-height: 300px;
  }
}
