@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: #333;
  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;
}

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

.align-c {
  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: #202f55;
}
.light {
  color: #fff;
}

.f-16,
.f-16m,
.f-16b,
.f-16bl {
  font-size: clamp(16px, 0.83vw, 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-65b,
.f-65bl {
  font-size: clamp(32px, 3.33vw, 48px);
}

.f-16,
.f-35 {
  font-weight: 400;
}
.f-16m,
.f-24m {
  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 {
  padding: 30px 50px;
  border-bottom: 0.5px solid #0077b6;
}
.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;
}
.nav__layout {
  gap: 80px;
}
.nav__layout li {
  width: fit-content;
}
.nav-contact {
  padding: 20px 60px;
  background-color: #202f55;
  border-radius: 50px;
}

/* OPACITY FILTERS */
.logo,
.nav__layout li,
.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,
.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,
.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,
.sitemap__link:hover {
  filter: brightness(1);
  opacity: 0.7;
}

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

.mv__desc {
  gap: 50px;
  top: 380px;
  left: 100px;
  /* bottom: 135px; */
}
.mv__desc h5 {
  max-width: 900px;
}

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

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

.br {
  border-radius: 30px;
}
.br-blue {
  border: 1px solid #202f55;
}

/* 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: 30px;
  border: 1px solid #202f55;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.3s ease, transform 0.3s;
}

.index-sec04 .btn-more {
  background-color: #fff;
}
.btn-phone,
.btn-contact {
  background-color: #fff;
}

.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;
  border-radius: 20px;
}

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

.mw_wp_form .btn-arrow-next::after {
  content: "";
  width: 18px;
  height: 18px;
  display: inline-block;
  background: url(../assets/common/arrow-next.png) center/contain no-repeat;
}
.mw_wp_form .btn-arrow-prev::before {
  content: "";
  width: 18px;
  height: 18px;
  display: inline-block;
  background: url(../assets/common/arrow-back.png) center/contain no-repeat;
}

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

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

/* DESC */
.indent {
  width: 25px;
  height: 8px;
  background-color: #202f55;
}
.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/bg03.png);
  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: 30px;
}

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

.footer__nav nav {
  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 #0077b6;
  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;
  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__content {
  margin-right: 50px;
}
.index-sec04__layout {
  padding: 300px 100px 300px 250px;
  gap: 50px;
  background-image: url(../assets/top/bg01.png);
}
.index-sec04__desc {
  max-width: 650px;
}

/* 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: 50px;
  background-image: url(../assets/top/bg02.png);
  background-size: 100% auto;
  background-position: center;
  background-repeat: repeat;
}

/* SEC06 */
.index-sec06__layout {
  gap: 100px;
}
.index-sec06__btn {
  padding-top: 50px;
}
.index-sec06__content {
  padding: 100px 0;
}

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

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

/* 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,
.business__img-r .business-img-bot {
  left: 0;
}
.business__img-r,
.business__img-l .business-img-bot {
  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;
}

/* DESC */
.business__desc {
  height: 800px;
  width: 50%;
}
.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: 140px;
}

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

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

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

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

/* 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: 400px;
  border-top: 1px solid #202f55;
}
.company-info__content table tr th p {
  margin-left: 55px;
}
.company-info__content table tr td {
  width: 760px;
  border-top: 1px solid #99b6ff;
}
.company-info__content table tr td p {
  margin: 0 55px;
}
.company-info__content table tr.last-tr th {
  border-bottom: 1px solid #202f55;
}
.company-info__content table tr.last-tr td {
  border-bottom: 1px solid #99b6ff;
}

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

.access__content {
  padding: 100px 0;
}
.access__layout {
  gap: 50px;
}
.access__info {
  gap: 60px;
}
.access__map {
  width: 650px;
  height: 700px;
}
.access__map iframe {
  width: 100%;
  height: 100%;
}
.access__info table {
  width: 520px;
  border-collapse: separate;
  border-spacing: 0;
}
.access__info table tr {
  margin-bottom: 30px;
}
.access__info table tr:last-child {
  margin-bottom: 0;
}
.access__info table tr th {
  width: 150px;
}
.access__info table tr td {
  width: 370px;
}

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

.news__content {
  padding: 100px 0;
}
.news__content .news__layout {
  padding-bottom: 100px;
}

/* 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 #202f55;
}
.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: #202f55;
  transition: background-color 0.3s;
  font-size: clamp(12px, 0.83vw, 16px);
  font-family: "Noto Sans JP", serif;
}
.page-numbers:hover,
.page-numbers.current {
  background-color: #202f55;
  color: #fff;
}

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

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

.form__content,
.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__note {
  border-bottom: 1px solid #99b6ff;
  padding-bottom: 30px;
}

/* 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 #99b6ff;
}

.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: 48px;
  height: 30px;
  padding: 2px 7px;
  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 #202f55;
  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: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #202f55;
  background-color: none;
  display: inline-block;
  position: relative;
  cursor: pointer;
  vertical-align: middle;
  transition: background-color 0.2s;
}

input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 12px;
  height: 12px;
  background-color: #202f55;
  border-radius: 50%;
  border: none;
}

textarea {
  display: flex;
  width: 100%;
  height: 130px;
  padding: 10px 20px;
  align-items: center;
  background: #fff;
  border: 1px solid #202f55;
  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: 18px;
  height: 18px;
  border: 1px solid #202f55;
  background-color: none;
  cursor: pointer;
  position: relative;
  vertical-align: middle;
  transition: background-color 0.2s, border-color 0.2s;
}

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

input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: 1px solid #202f55;
  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: 500;
  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: 50px; /* 312.5% */
  letter-spacing: 1.6px;
  align-items: baseline;
}

.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 #99b6ff;
}

.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 #99b6ff;
}

.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;
}

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

.sitemap__content {
  padding: 100px 0;
}
.sitemap__layout,
.sitemap__link {
  gap: 30px;
}
.sitemap__link {
  max-width: 340px;
}

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

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

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

.burger-menu {
  display: none;
  cursor: pointer;
  padding: 5px;
}
.burger-icon {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  width: 30px;
  height: auto;
  gap: 5px;
  position: relative;
  align-items: center;
}
.bar {
  width: 31px;
  height: 4px;
  background-color: #09173d;
  transition: transform 0.35s ease, opacity 0.25s ease;
  transform-origin: 4px 50%;
}

#menu-toggle.is-open .bar-01 {
  transform: rotate(45deg) translate(-1px, 2px);
}
#menu-toggle.is-open .bar-02 {
  opacity: 0;
  transform: scaleX(0);
}
#menu-toggle.is-open .bar-03 {
  transform: rotate(-45deg) translate(-1px, -2px);
}
.show-nav .burger-menu .bar-01 {
  transform: rotate(45deg) translate(2px, 2px);
}
.show-nav .burger-menu .bar-02 {
  opacity: 0;
  transform: scaleX(0);
}
.show-nav .burger-menu .bar-03 {
  transform: rotate(-45deg) translate(2px, -2px);
}

.footer__nav-sp {
  display: none;
}

.footer__copyright {
  text-align: center;
  color: #202f55;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* ----------------------------------------------- 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;
    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: 60vw;
    top: 50%;
    left: 4vw;
    gap: 30px;
  }

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

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

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

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

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

  .sitemap__link {
    width: 90%;
  }
}

@media screen and (max-width: 1520px) {
  .mv__desc {
    max-width: 70vw;
  }
}

@media screen and (max-width: 1300px) {
  .index-sec01__cat-btn {
    top: 80%;
  }
}

/* SEMI-LARGE SCREEN */
@media screen and (max-width: 1200px) {
  /*HEADER*/
  .header__nav {
    display: flex;
    align-items: center;
  }
}

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

  /* SEC01 */
  .index-sec01__cat-btn {
    left: 10px;
  }

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

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

  .business__desc {
    width: 40vw;
    max-height: 600px;
    height: 90vh;
    padding: 0;
  }

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

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

  .form-row {
    gap: 40px;
  }
}

@media screen and (max-width: 912px) {
  .business__desc {
    max-height: 600px;
    height: 60vh;
  }

  .business__img-l .business-img-top {
    /* margin: 0 20vw 12vh 0;*/
    margin: 0 8vw 10vh 0;
  }

  .business__img-r .business-img-top {
    /* margin: 0 0 20vw 30vh; */
    margin: 0 0 18vw 15vh;
  }
}

@media (min-width: 901px) {
  .burger-menu {
    display: none;
  }
  #mobile-nav {
    display: none;
  }
}

@media screen and (max-width: 900px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"] {
    width: 100%;
  }

  .mv__desc {
    top: 50%;
  }

  img {
    height: 60vh;
    object-fit: cover;
  }

  .nav__layout {
    display: none !important;
  }

  .burger-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 99999;
  }

  /* Mobile nav hidden by default */
  #mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background-image: url(../assets/common/mv-1.png); /* ref */
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    z-index: 998;

    /* layout per ref */
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 90px 0 100vh 0;
    gap: 40px;
  }
  #mobile-nav.is-active {
    display: flex;
    padding: 20vh 0 0 0;
  }
}

@media screen and (max-width: 853px) {
  .mv__desc {
    max-width: 80vw;
  }

  .business__desc {
    max-height: 800px;
  }

  .business__img-l .business-img-top {
    margin: 0 20vw 15vh 0;
  }
}

@media screen and (max-width: 800px) {
  .mv__desc {
    max-width: 80vw;
  }

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

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

  .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, #5b5f5b);
    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: 220px;
    width: 100%;
  }

  .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;
  }
}
/* TABLET SCREEN */
@media (max-width: 790px) {
  .header__content {
    padding: 10px 4vw;
  }

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

  .mv__desc {
    max-width: 100%;
    margin: 40px;
    left: 0;
    top: 30%;
  }

  .mv__content img {
    height: 600px;
    object-fit: cover;
  }

  .sec-title h1 {
    font-size: 42px;
    text-align: center;
  }

  .sec-title h6 {
    font-size: 24px;
    text-align: center;
  }

  .index-sec04__desc {
    width: 100%;
  }

  .index-sec04__btn {
    display: flex;
    justify-content: center;
  }

  /* --------------------------------------------------- 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 {
    left: 40px;
    top: 20vh;
  }

  .index-sec03__layout {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .news__item-content {
    display: flex;
    flex-direction: column;
  }

  .index-sec04__content {
    margin-right: 0;
  }

  footer {
    padding: 100px 0 0 0;
  }

  .footer__copyright {
    font-size: 12px;
    padding-bottom: 20px;
  }
  .news__item-img {
    width: 100%;
    height: 400px;
  }

  .news__item-img img {
    max-width: 100%;
    max-height: unset;
    height: 100%;
  }
  /* --------------------------------------------------- BUSINESS PROPERTIES --------------------------------------------------- */

  .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;
  }

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

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

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

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

  .contact__layout {
    flex-direction: column;
    margin-bottom: 30px;
  }

  .footer__layout {
    flex-direction: column;
    gap: 30px;
  }

  .footer__nav {
    display: none;
  }
  .footer__nav-sp {
    display: flex;
    text-align: center;
    width: 100%;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
  }

  .footer__nav-sp a {
    color: #0077b6;
  }

  .f-nav__layout1,
  .f-nav__layout2,
  .f-nav__layout3 {
    gap: 20px;
    width: fit-content;
    text-align: center;
  }

  .footer__wrapper {
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .contact__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .news-det__content img {
    height: 315px;
  }
}

/* MOBILE */
@media screen and (max-width: 490px) {
  .mv__content img {
    height: 500px;
  }
  .mv__desc h5 {
    font-size: 18px;
  }

  .logo {
    width: 25vw;
  }

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

  /* CONTACT SECTION */
  .contact__content {
    padding: 20px 0;
  }

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

  /* FOOTER SECTION */
  .footer__layout {
    flex-direction: column;
    gap: 20px;
  }
  .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 {
    text-align: center;
  }

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

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

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

  /* SEC04 */

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 430px) {
  .f-65b,
  .f-65bl {
    font-size: 25px;
  }

  .mv__desc {
    margin: 20px;
  }

  .mv__desc h5 {
    font-size: 16px;
  }

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

  .company-info__content tr {
    display: flex;
    flex-direction: column;
  }

  .company-info__content table tr th,
  .company-info__content table tr td {
    max-width: unset;
    width: 100%;
    padding: 10px 0;
  }

  .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.last-tr td {
    border-bottom: 1px solid #202f55;
  }

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

@media (max-width: 375px) {
  .mv__content img {
    height: 400px;
  }

  .f-65bl {
    font-size: 20px;
  }

  .privacy-text {
    align-items: flex-start;
    gap: 0;
    line-height: normal;
    flex-direction: column;
  }
  .privacy-box a {
    line-height: 30px;
  }

  .btn-save,
  .btn-edit,
  .btn-submit,
  .btn-index {
    width: 60vw;
  }
}
