/*
  File Name   : top.css
  Description : Write top content styles
*/
/*
*  kv
*----------------------------*/
.kv-inner {
  max-width: calc(1300px + var(--sidePadding_base) * 2);
  padding-inline: var(--sidePadding_base);
  margin-inline: auto;
/*  margin-top: 30px;*/
  position: relative;
}
.kv-background {
  aspect-ratio: 1300 / 832;
  border-radius: 40px;
  overflow: hidden;
  background-image: url(../images/home/kv_background.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.kv-image {
  position: absolute;
  bottom: -50px;
  right: 3px;
  max-width: 690px;
}

@media (max-width: 1840px) {
  .kv-image {
    right: 10px;
    max-width: clamp(300px, calc(590 / 1840 * 100vw), 590px);
  }
}
@media (max-width: 1024px) {
  .kv-background {
    aspect-ratio: 5 / 3;
  }
}
@media (max-width: 599px) {
  .kv {
    padding-bottom: 13%;
  }
  .kv-inner {
    padding-inline: var(--sidePadding_base_mbl);
  }
  .kv-background {
    aspect-ratio: 329 / 403;
    border-radius: 20px;
    background-image: url(../images/home/kv_background_sp.jpg);
  }
  .kv-image {
    max-width: 88%;
    bottom: -18%;
    left: auto;
    right: auto;
  }
}

/*
*  introduction
*----------------------------*/
.introduction {
  margin-top: 55px;
}
.introduction-inner {
  background-image: url(../images/common/town.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
  padding-bottom: 220px;
  	opacity: 0;
	-webkit-animation: key_lay-title 0.4s ease-in 0.3s forwards;
    animation: key_lay-title 0.4s ease-in 0.3s forwards;
}

@keyframes key_lay-title{

0% {
    opacity: 0;
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

50% {
    opacity: 1;
}

100% {
    opacity: 1;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

}


.introduction-intro {
  max-width: 721px;
  margin-inline: auto;
}
.introduction-text {
  margin-top: 30px;
  text-align: center;
  font-weight: 700;
  color: var(--color_main);
}
.introduction-text-small {
  font-size: calc(32 / 16 * 1rem);
  display: block;
}
.introduction-text-large {
  font-size: calc(57 / 16 * 1rem);
  margin-inline: auto;
  background: linear-gradient(transparent 70%, var(--color_accent) 70%);
  padding-bottom: 10px;
  padding-inline: 10px;
  line-height: 1.8;
	letter-spacing: 4px;
}

@media (max-width: 1024px) {
  .introduction-text-small {
    font-size: min(calc(32 / 1024 * 100vw), calc(32 / 16 * 1rem));
    display: block;
  }
  .introduction-text-large {
    font-size: min(calc(57 / 1024 * 100vw), calc(57 / 16 * 1rem));
  }
}
@media (max-width: 599px) {
  .introduction-inner {
    position: relative;
    padding-bottom: 25%;
    background-size: 95% auto;
  }
  .introduction-inner::before {
    content: "";
    position: absolute;
    width: 69%;
    height: auto;
    background-color: var(--color_lightBlue3);
    border-radius: calc(1px / 0);
    inset: 4% 0 auto 0;
    z-index: -1;
    aspect-ratio: 1;
    margin: auto;
  }
  .introduction-intro {
    max-width: 92%;
  }
  .introduction-text {
    margin-top: 1%;
  }
  .introduction-text-small {
    font-size: calc(25 / 599* 100vw);
    padding-bottom: 10px;
  }
  .introduction-text-large {
    font-size: calc(45 / 599 * 100vw);
    background: linear-gradient(transparent 60%, var(--color_accent) 60%);
    padding-bottom: 10px;
    line-height: 1.7;
  }
}

/*
*  introduction links
*----------------------------*/
.introduction-links {
  margin-top: 35px;
}
.introduction-links-inner {
  max-width: 980px;
}
.introduction-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.introduction-link-card {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-decoration: none;
  border-radius: 12px;
  min-height: 230px;
  padding: 18px 17px 27px;
  font-weight: 700;
  font-size: calc(34 / 16 * 1rem);
  line-height: 1.3;
  text-align: center;
}
.introduction-link-card.-new,
.introduction-link-card.-repeat {
  background-color: var(--color_main);
  color: var(--color_white);
}
.introduction-link-card.-wide {
  margin-top: 16px;
  background-color: var(--color_accent);
  color: #000;
}
.introduction-link-card.-wide::after {
  border-top-color: var(--color_main);
  border-right-color: var(--color_main);
}
.introduction-link-card-icon {
  position: absolute;
  top: 27px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(56px, 9vw, 110px);
  min-width: 100px;
  min-height: 100px;
  aspect-ratio: 1;
  border-radius: calc(1px / 0);
  background-color: var(--color_white);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.introduction-link-card-icon img {
  width: clamp(40px, 5.8vw, 76px);
  height: clamp(40px, 5.8vw, 76px);
  object-fit: contain;
}
.introduction-link-card-text {
  display: block;
  font-size: 2.2rem;
}
.introduction-link-card.-repeat .introduction-link-card-text {
  white-space: nowrap;
}
.introduction-link-card::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 10px;
  height: 10px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 1024px) {
  .introduction-link-card {
    font-size: min(calc(34 / 1024 * 100vw), calc(34 / 16 * 1rem));
  }
  .introduction-link-card-text {
    font-size: 1.9rem;
  }
  .introduction-link-card-icon {
    top: 20px;
  }
  .introduction-link-card-icon img {
    width: clamp(44px, 7.2vw, 74px);
    height: clamp(44px, 7.2vw, 74px);
  }
  .introduction-link-card.-repeat .introduction-link-card-text {
    white-space: normal;
  }
}
@media (max-width: 599px) {
  .introduction-links {
    margin-top: 20px;
  }
  .introduction-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .introduction-link-card {
    border-radius: 10px;
    font-size: calc(26 / 599 * 100vw);
    padding: 14px 17px 23px;
  }
  .introduction-link-card-text {
    font-size: 1.1rem;
  }
  .introduction-link-card.-new,
  .introduction-link-card.-repeat {
    min-height: 170px;
    padding-bottom: 23px;
  }
  .introduction-link-card.-wide {
    margin-top: 12px;
    min-height: 120px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 26px 10px 17px;
  }
  .introduction-link-card.-wide .introduction-link-card-icon {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    flex: 0 0 auto;
  }
  .introduction-link-card.-wide .introduction-link-card-text {
    flex: 0 1 auto;
  }
  .introduction-link-card-icon {
    width: clamp(48px, 18vw, 92px);
    min-width: 70px;
    min-height: 70px;
    top: 12px;
  }
  .introduction-link-card-icon img {
    width: clamp(26px, 10vw, 56px);
    height: clamp(26px, 10vw, 56px);
  }
  .introduction-link-card::after {
    width: 8px;
    height: 8px;
    right: 16px;
    border-top-width: 2px;
    border-right-width: 2px;
  }
  .introduction-link-card.-new::after,
  .introduction-link-card.-repeat::after {
    top: auto;
    right: auto;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
  }
  .introduction-link-card.-repeat .introduction-link-card-text {
    white-space: normal;
  }
}

/*
*  pickup
*----------------------------*/
.pickup {
  background-color: var(--color_main);
  padding-block: 80px 130px;
}
.pickup-title {
  margin-inline: auto;
  max-width: 231px;
  animation: 4s 0s bound ease-in infinite;
}


@keyframes bound {
	79%,
	90%,
	97%,
	100% {
		-webkit-transform: translate(0);
		        transform: translate(0);
	}
	85% {
		-webkit-transform: translateY(-20px);
		        transform: translateY(-20px);
	}
	94% {
		-webkit-transform: translateY(-4px);
		        transform: translateY(-4px);
	}
	99% {
		-webkit-transform: translateY(-2px);
		        transform: translateY(-2px);
	}
}


.pickup-slide {
  margin-top: 25px;
}
.pickup-slide .splide__arrow {
  background: transparent;
  width: 3em;
  height: 3em;
  transform-origin: top center;
}
.pickup-slide .splide__arrow::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/common/arrow_w.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.pickup-slide .splide__arrow svg {
  fill: var(--color_white);
  width: 4em;
  height: 4em;
  display: none;
}
.pickup-slide .splide__arrow--prev {
  left: -3.5em;
}
.pickup-slide .splide__arrow--next {
  right: -3.5em;
  rotate: 180deg;
}
.pickup-slide .splide__pagination {
  bottom: -3.5rem;
}
.pickup-slide .splide__pagination__page.is-active {
  transform: scale(1);
  background-color: var(--color_accent);
}
.pickup-slide .splide__pagination__page {
  background-color: var(--color_gray);
  width: 11px;
  height: 11px;
  margin-inline: 10px;
}

@media (max-width: 1024px) {
  .pickup-slide .splide__arrow--prev {
    left: -1.3em;
  }
  .pickup-slide .splide__arrow--next {
    right: -1.3em;
  }
}
@media (max-width: 599px) {
  .pickup {
    padding-block: 32px 86px;
  }
  .pickup-title {
    max-width: 160px;
  }
  .pickup-slide {
    margin-top: 15px;
  }
  .pickup-slide .splide__arrow {
    width: 2em;
    height: 2.2em;
  }
  .pickup-slide .splide__arrow--prev {
    left: -0.8em;
  }
  .pickup-slide .splide__arrow--next {
    right: -0.8em;
  }
  .pickup-slide .splide__pagination {
    bottom: -2.9em;
  }
  .pickup-slide .splide__pagination__page {
    width: 10px;
    height: 10px;
    margin-inline: 8px;
  }
}

/*
*  emergency
*----------------------------*/
.emergency {
  margin-top: 100px;
}
.emergency-content {
  background-color: var(--color_lightRed);
  border-radius: 5px;
  padding: 35px 35px 35px 80px;
}
.emergency-list {
   display: grid;
   gap: 30px;
}
.emergency-list-item {
  position: relative;
}
.emergency-list-item::before {
  content: "";
  position: absolute;
  width: 43px;
  height: 43px;
  background-image: url(../images/home/important_icon.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: 50%;
  left: -60px;
  translate: 0 -50%;
}
.emergency-list-item a {
  text-decoration: underline;
  color: var(--color_font);
  font-size: calc(20 / 16 * 1rem);
  font-weight: 700;
  letter-spacing: 0.1em;
}

@media (max-width: 599px) {
  .emergency {
    margin-top: 45px;
  }
  .emergency-content {
    padding: 15px 15px 15px 60px;
  }
  .emergency-list-item::before {
    width: 30px;
    height: 30px;
    left: -46px;
  }
  .emergency-list-item a {
    font-size: calc(15 / 16 * 1rem);
    letter-spacing: 0.1em;
  }
}
/*
*  news
*----------------------------*/
.top-news {
  margin-block: 75px 100px;
}

@media (max-width: 800px) {
.top-news {
    margin-block: 75px 70px;
}
}

.top-news .section-title {
  text-align: center;
}
.top-news .section-title + .com-news-list {
  margin-top: 34px;
}
.top-news-link {
  margin-left: auto;
  display: block;
  width: fit-content;
  margin-top: 58px;
  font-weight: 700;
}
.top-news-link::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url(../images/common/arrow_b.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 6px;
}

@media (max-width: 599px) {
  .top-news {
    margin-block: 55px;
  }
  .top-news .section-title + .com-news-list {
    margin-top: 10px;
  }
  .top-news-link {
    margin-top: 33px;
    font-size: calc(11 / 16 * 1rem);
    display: flex;
    align-items: center;
  }
  .top-news-link::after {
    width: 12px;
    height: 12px;
    margin-left: 5px;
  }
}

/*
*  consult
*----------------------------*/
.consult {
  background-color: var(--color_sub);
  padding-block: 110px 125px;
}

@media (max-width: 800px) {
.consult {
    padding-block: 80px 95px;
}
}

.consult .section-title {
  text-align: center;
}
.consult-image {
  margin-top: 60px;
  margin-bottom: 30px;
  max-width: 820px;
  margin-inline: auto;
  animation: fuwafuwa 2s ease-in-out infinite alternate-reverse;
}
.consult-button {
  margin-top: 10px;
}
.consult-button .button {
  margin-inline: auto;
}

@media (max-width: 599px) {
  .consult {
    padding-block: 55px;
  }
  .consult-image {
    margin-top: 25px;
  }
  .consult-button {
    margin-top: 15px;
  }
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(3%);
  }
  100% {
    transform: translateY(-3%);
  }
}

/*
*  coordinator
*----------------------------*/
.top-coordinator {
  background-color: var(--color_lightBlue2);
  padding-block: 85px 60px;
}
.top-coordinator .section-title {
  text-align: center;
}
.top-coordinator-list {
  margin-top: 70px;
}
.top-coordinator-photo {
  position: relative;
}
.top-coordinator-area {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--color_accent);
  color: var(--color_font);
  padding: 3px 8px;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 2px;
  align-items: center;
  font-size: calc(10 / 16 * 1rem);
  font-weight: 700;
  border-radius: 0 8px 0 8px;
}
.top-coordinator-area::before {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url(../images/common/pin.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.top-coordinator-photo img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}
.top-coordinator-name {
  color: var(--color_font);
  font-size: calc(18 / 16 * 1rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 20px;
  text-align: center;
}
.top-coordinator-support {
  margin-top: 10px;
  text-align: center;
  color: var(--color_font);
  font-size: calc(11 / 16 * 1rem);
  font-weight: 700;
  letter-spacing: 0.1em;
}

@media (max-width: 599px) {
  .top-coordinator {
    padding-block: 55px;
  }
  .top-coordinator-list {
    margin-top: 40px;
  }
  .top-coordinator-name {
    font-size: calc(11 / 16 * 1rem);
    margin-top: 15px;
  }
  .top-coordinator-support {
    font-size: calc(10 / 16 * 1rem);
  }
  .top-coordinator-support {
    margin-top: 5px;
    font-size: calc(9 / 16 * 1rem);
  }
}

/*
*  top-contact
*----------------------------*/
.top-contact {
  background-color: var(--color_lightBeige);
  padding-top: 220px;
}

@media (max-width: 800px) {
.top-contact {
    padding-top: 130px;
}
}

.top-contact-content {
  background-color: var(--color_main);
  border-radius: 20px;
  padding: 0 64px 80px;
}
.top-contact-head {
  position: relative;
  padding-block: 70px 75px;
}
.top-contact-head::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 243px;
  background-image: url(../images/home/human.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: -85px;
  left: 0;
}
.top-contact-head-image {
  max-width: 350px;
    position: absolute;
    top: -80px;
    inset: -70px auto 0 50%;
    text-align: center;
    translate: -50% 0;
}
.top-contact-head .section-title {
  text-align: center;
}
.top-contact-block {
  background-color: var(--color_white);
  padding: 65px 40px 40px;
  border-radius: 20px;
}
.top-contact-block + .top-contact-block {
  margin-top: 70px;
}
.top-contact-block .section-title {
  text-align: center;
}
.top-contact-button {
  margin-top: 50px;
}
.top-contact-button .button {
  margin-inline: auto;
}
.top-contact-block.-first {
  padding-top: 182px;
}
.top-contact-block.-first .section-title {
  position: relative;
}
.top-contact-block.-first .section-title::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  background-image: url(../images/home/first.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  inset: -130px auto 0 50%;
  translate: -50% 0;
}
.top-contact-block-step {
  margin-top: 62px;
}
.top-contact-form {
  margin-block: 100px 40px;
}
.top-contact-form .contact-button {
  margin-inline: auto;
}
@media (max-width: 1280px) {
  .top-contact-block {
    padding: 65px 30px 60px;
  }
}
@media (max-width: 1024px) {
  .top-contact-head::before {
    width: 25%;
    height: 80%;
    top: -85px;
    left: -30px;
}
  .top-contact-head-image {
    max-width: 250px;
    inset: -50px auto 0 50%;
  }
  .top-contact-block {
    padding: 65px 30px 60px;
  }
  .top-contact-form {
    width: 100%;
	  margin-block: 70px 20px;
  }
}
@media (max-width: 599px) {
  .top-contact {
    padding-top: 95px;
  }
  .top-contact-head::before {
    width: 100px;
    height: 80px;
    top: -55px;
    left: calc(50% - 148px);
  }
  .top-contact-head-image {
    max-width: 190px;
    top: -80px;
    inset: -40px auto 0 calc(50% + 57px);
  }
  .top-contact-head {
    padding-block: 50px 35px;
  }
  .top-contact-content {
    border-radius: 10px;
    padding: 0 30px 30px;
  }
  .top-contact-block {
    padding: 25px 10px 30px;
    border-radius: 10px;
  }
  .top-contact-block .section-title {
    font-size: calc(20 / 16 * 1rem);
  }
  .top-contact-button {
    margin-top: 25px;
  }
  .top-contact-block + .top-contact-block {
    margin-top: 20px;
  }
  .top-contact-block.-first {
    padding-top: 88px;
  }
  .top-contact-block.-first .section-title::after {
    width: 53px;
    height: 53px;
    inset: -67px auto 0 50%;
  }
  .top-contact-block-step {
    margin-top: 35px;
  }
  .top-contact-form {
    margin-block: 43px 5px;
  }
}

/*
*  faq
*----------------------------*/
.faq {
  background-color: var(--color_lightBeige);
  position: relative;
  padding-block: 140px 200px;
  overflow: clip;
}
.faq::after {
  content: "";
  position: absolute;
  width: 816px;
  height: 103px;
  background-image: url(../images/common/town.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  bottom: -6px;
  right: -20px;
}
.faq-content {
  background-color: var(--color_white);
  border-radius: 20px;
  padding: 86px 50px 72px;
  position: relative;
  z-index: 1;
  &::before {
    content: "";
    position: absolute;
    width: 151px;
    height: 118px;
    background-image: url(../images/home/kumo.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
  }
}
.faq-head {
  text-align: center;
  color: var(--color_main);
  position: relative;
}
.faq-head::before,
.faq-head::after {
  content: "";
  position: absolute;
  width: 82px;
  height: 110px;
  background-image: url(../images/home/qa_l.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: 25px;
  left: calc(50% - 210px);
  translate: -50% 0;
}
.faq-head::after {
  background-image: url(../images/home/qa_r.png);
  left: calc(50% + 210px);
}
.faq-head-title {
  position: relative;
  font-size: calc(24 / 16 * 1rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-top: 81px;
  width: fit-content;
  margin-inline: auto;
}
.faq-head-title::before {
  content: "";
  position: absolute;
  width: 133px;
  height: 59px;
  background-image: url(../images/home/icon-qanda.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: 0;
  left: 50%;
  translate: -50% 0;
}
.faq-head-title::after {
  content: "";
  position: absolute;
  width: 105%;
  height: 9px;
  background-color: var(--color_accent);
  border-radius: 10px;
  bottom: -30px;
  left: 50%;
  translate: -50% 0;
}
.faq-list {
  margin-top: 100px;
  display: grid;
  gap: 40px;
}
.faq-more {
  margin-top: 67px;
}
.faq-more .button {
  margin-inline: auto;
}

@media (max-width: 599px) {
  .faq {
    padding-block: 60px 70px;
  }
  .faq::after {
    width: 100%;
    height: 40px;
    background-position: right;
    bottom: -6px;
    right: -20px;
}
  .faq-content {
    border-radius: 15px;
    padding: 36px 20px 26px;
  }
  .faq-content::before {
    width: 70px;
    height: 60px;
    top: -24px;
    left: 20px;
  }
  .faq-head-title {
    font-size: calc(15 / 16 * 1rem);
    padding-top: 50px;
  }
  .faq-head-title::before {
    width: 95px;
    height: 40px;
    top: -3px;
  }
  .faq-head-title::after {
    width: 60%;
    height: 3px;
    bottom: -18px;
  }
  .faq-head::before, .faq-head::after {
    width: 50px;
    height: 60px;
    top: 4px;
    left: calc(50% - 122px);
  }
  .faq-head::after {
    left: calc(50% + 118px);
  }
  .faq-list {
    margin-top: 50px;
    gap: 17px;
  }
  .faq-more {
    margin-top: 27px;
  }
}

/*
*  top-banner
*----------------------------*/
.top-banner {
  background-color: var(--color_lightBlue2);
  padding-block: 90px;
}
.top-banner-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 45px;
  padding: 0 100px;
}

@media (max-width: 1024px) {
  .top-banner-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
  }
}

@media screen and (max-width: 730px) {
.top-banner-list {
    padding: 0 45px;
}
}

@media screen and (max-width: 500px) {
.top-banner-list {
    padding: 0;
}
}

@media screen and (max-width: 599px) {
  .top-banner {
    padding-block: 55px 60px;
  }
  .top-banner-inner {
    max-width: 75%;
  }
  .top-banner-list {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}



/*
*  office
*----------------------------*/
.office {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.office-section {
  padding-block: 65px 105px;
}
.office-section.-matsue {
  background-color: var(--color_blue);
}
.office-section.-hamada {
  background-color: var(--color_blue2);
}
.office-section-inner {
  margin-inline: auto;
  width: fit-content;
	padding: 0 60px;
}
.office-section-image {
  max-width: 500px;
}
.office-section .section-title {
  text-align: center;
    font-size: calc(30 / 16* 1rem);
    margin-top: 55px;
}
.office-section-text {
  text-align: center;
  font-size: calc(16 / 16 * 1rem);
  margin-top: 25px;
  color: var(--color_white);
  line-height: 2.1;
}
.office-section-button {
  margin-top: 45px;
	display: none;
}
.office-section-button .button {
  margin-inline: auto;
}

@media (max-width: 1024px) {
  .office {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 599px) {
  .office-section {
    padding-block: 10px 105px;
  }
  .office-section-inner {
    padding-inline: var(--sidePadding_base_mbl);
  }
  .office-section .section-title {
    font-size: calc(22 / 16* 1rem);
    margin-top: 35px;
  }
  .office-section-text {
    font-size: calc(13 / 16* 1rem);
        margin-top: 21px;
        line-height: 1.8;
  }
  .office-section-button {
    margin-top: 25px;
  }
  .office-section {
    padding-block: 10px 55px;
  }
}

/*
*  top-footer-button
*----------------------------*/
.top-footer-button {
  margin-block: 90px 50px;
}
.top-footer-button .button {
  margin-inline: auto;
}
@media (max-width: 1024px) {
  .top-footer-button {
    width: 100%;
  }
}
@media (max-width: 599px) {
  .top-footer-button {
    margin-block: 35px 0;
  }
}
