@charset "UTF-8";
@import url("root.css");
/*-----*ブレイクポイントルール*-----*/
/* スマートフォン：max-width:767px */
/* タブレット：min-width:768px */
/* PC：min-width:1025px */
/***************************************
------------- TOP MAIN IMG -------------
***************************************/
@media (max-width: 767px) {
  .top_primary_bg {
    background: url(../img/top_philosophy_sp_bg.jpg) no-repeat center/cover;
  }
}
@media (min-width: 768px) {
  .top_primary_bg {
    overflow: hidden;
    z-index: 0;
    position: relative;
  }
  .top_primary_bg:before,
  .top_primary_bg:after {
    content: "";
    position: absolute;
    z-index: -1;
  }
  .top_primary_bg:before {
    width: 760px;
    height: 1342px;
    background: url(../img/mian_bg01.png) no-repeat center/cover;
    left: 0;
    top: 540px;
  }
  .top_primary_bg:after {
    width: 653px;
    height: 1634px;
    background: url(../img/mian_bg02.png) no-repeat center/cover;
    right: 0;
    top: 840px;
  }
}

.mv {
  position: relative;
  width: min(100%, 1920px);
  margin: auto;

  .mainimage {
    width: min(62.5%, 1200px);
    height: 800px;
    margin-left: auto;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.2);
    transition: opacity 7s cubic-bezier(0.4, 0, 0.2, 1),
      transform 7s cubic-bezier(0.4, 0, 0.2, 1); // 5秒に変更
    z-index: 1; // ←ここを追加して、アクティブ画像に z-index: 2 を効かせやすく
    position: absolute; // ←これも追加すると重ねられる
    top: 0;
    left: 0;

    &.main01 {
      background: url(../img/top01.webp) no-repeat center/cover;
    }
    &.main02 {
      background: url(../img/top02.webp) no-repeat right center/cover;
    }
    &.main03 {
      background: url(../img/top03.webp) no-repeat center/cover;
    }
    &.main04 {
      background: url(../img/top04.webp) no-repeat left center/cover;
    }
    &.main04 {
      background: url(../img/top04.webp) no-repeat left center/cover;
    }
    &.main05 {
      background: url(../img/top05.webp) no-repeat center/cover;
    }
    &.main06 {
      background: url(../img/top06.webp) no-repeat center/cover;
    }
    &.main07 {
      background: url(../img/top07.webp) no-repeat center/cover;
    }
  }

  .splide__slide.is-active .mainimage {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
  }

  .main_copy {
    width: min(40%, 768px);
    margin-left: min(2.5%, 60px);
    margin-right: auto;
    position: absolute;
    top: 5%;
    left: 0;

    h1 {
      font-size: min(6vw, 45px);
      margin-top: min(10vw, 60px);
      width: fit-content;
    }
    p {
      display: flex;
      width: min(83.333%, 640px);
      font-size: 1.6rem;
      line-height: 2;
      margin: 0;
      padding: 0;
      &::before {
        content: "";
        display: block;
        height: inherit;
        width: 6px;
        background: linear-gradient(#6a9de3, #2c67b7);
        margin-right: min(3vw, 30px);
        flex-shrink: 0;
      }
    }
    .top-catch-en {
      display: inline-block;
      margin-top: 0.5em;
      font-size: 1.25em;
      font-weight: bold;
      color: #2c67b7;
      letter-spacing: 0.04em;
    }
    .link_banner {
      margin-top: min(10vw, 30px);
      width: min(83.333%, 640px);
      a {
        display: block;
        width: 100%;
      }
    }
  }
}

@media (max-width: 1024px) {
  .mv {
    .mainimage {
      width: 100%;
      height: clamp(400px, 60vh, 800px);
      margin: auto;
    }
    .main_copy {
      width: 90%;
      margin: auto;
      position: relative;
      top: auto;
      bottom: auto;
      left: auto;
      right: auto;
      > img {
        width: clamp(320px, 75%, 800px);
        position: absolute;
        top: 0;
        left: 0;
        transform: translateY(calc(-100% + -10vw + -10px));
      }
      p {
        width: 100%;
      }
      .link_banner {
        width: 100%;
      }
    }
  }
}
@media (max-width: 767px) {
  .mv .mainimage.main01 {
    background: url(../img/top01_sp.webp) no-repeat center center/contain !important;
  }
  .mv .mainimage.main02 {
    background: url(../img/top02_sp.webp) no-repeat center center/contain !important;
  }
  .mv .mainimage.main03 {
    background: url(../img/top03_sp.webp) no-repeat center center/contain !important;
  }
  .mv .mainimage.main04 {
    background: url(../img/top04_sp.webp) no-repeat center center/contain !important;
  }
  .mv .mainimage.main05 {
    background: url(../img/top05_sp.webp) no-repeat center center/contain !important;
  }
  .mv .mainimage.main06 {
    background: url(../img/top06_sp.webp) no-repeat center center/contain !important;
  }
  .mv .mainimage.main07 {
    background: url(../img/top07_sp.webp) no-repeat center center/contain !important;
  }
}
/***************************************
------------- 青木塗装のこだわり -------------
***************************************/
.top_philosophy {
  padding: clamp(80px, 20.8vw, 100px) 0 clamp(40px, 15.62vw, 100px);
}
.top_philosophy .txt_wrap {
  margin-bottom: clamp(20px, 5.2vw, 50px);
}
.top_philosophy .txt_box {
  line-height: 1.7;
}
.top_philosophy .row {
  margin-bottom: clamp(30px, 9.11vw, 100px);
}
@media (min-width: 768px) {
  .top_philosophy .row {
    gap: clamp(20px, 2.6vw, 60px);
  }
}
@media (min-width: 1250px) {
  .top_philosophy .txt_wrap {
    line-height: 2.625;
  }
}

/***************************************
------------- 塗り替えの目安をチェック -------------
***************************************/
.top_check {
  padding: clamp(40px, 15.625vw, 150px) 0;
  background: url(../img/top_about_bg.jpg) no-repeat center/cover;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}
.top_check h2 {
  text-align: center;
}
.top_check h2 .txt1 {
  display: table;
  margin: auto;
  font-size: clamp(21px, 3.75vw, 36px);
  background: var(--base-color01);
  padding: 7px clamp(15px, 2.9vw, 28px) 10px;
  color: #fff;
  border-radius: 6px;
  margin-bottom: 30px;
  position: relative;
}
.top_check h2 .txt1:before {
  content: "";
  width: clamp(30px, 5.208vw, 40px);
  height: clamp(20px, 3.5vw, 27px);
  background-color: var(--base-color01);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: absolute;
  top: 99%;
  left: 0;
  right: 0;
  margin: auto;
}
.top_check h2 .txt1 .num {
  font-size: clamp(34px, 5.833vw, 56px);
  line-height: 1;
}
.top_check h2 .txt2 {
  font-size: clamp(20px, 2.9vw, 28px);
  font-weight: 500;
  display: block;
}
.top_check h2 .txt3 {
  font-size: clamp(26px, 6.666vw, 64px);
  position: relative;
  display: table;
  margin: auto;
  z-index: 0;
  padding: 0 10px 10px;
}
@media (min-width: 768px) {
  .top_check h2 .txt3 {
    padding: 0 45px 15px 5px;
  }
}
.top_check h2 .txt3:after {
  content: "";
  width: 100%;
  height: clamp(36px, 8.458vw, 88px);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../img/h2_check_line.png) no-repeat center/cover;
  z-index: -1;
}
.top_check .primary_block {
  margin-bottom: clamp(20px, 5.2vw, 50px);
}
.top_check .primary_block .col {
  background: #fff;
  border-radius: 0 0 4px 4px;
  box-shadow: 5px 0 10px rgba(0, 0, 0, 0.1);
  max-width: 420px;
  margin: auto;
}
.top_check .primary_block .col figure {
  margin: 0;
}
.top_check .primary_block h3 {
  margin: 0;
  padding: clamp(10px, 2.3vw, 18px);
  font-size: clamp(16px, 3.645vw, 28px);
  font-weight: 500;
  line-height: 1.2142857143;
}
.top_check .primary_block h3 .check {
  padding: 0 0 0 clamp(25px, 5.33vw, 41px);
  display: block;
  position: relative;
}
.top_check .primary_block h3 .check:before {
  content: "";
  width: clamp(19px, 3.776vw, 29px);
  height: clamp(14px, 3.125vw, 24px);
  background: url(../img/check_ic.png) no-repeat center/cover;
  position: absolute;
  top: 0.2em;
  left: 0;
}
.top_check .secondary_block .txt_wrap {
  font-weight: 700;
  line-height: 1.21875;
  text-align: center;
  font-size: clamp(22px, 5.5vw, 64px);
  margin-bottom: clamp(20px, 5.4vw, 52px);
}
.top_check .secondary_block .txt_wrap .color {
  color: var(--base-color01);
}
.top_check .secondary_block .button_list {
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: center;
  gap: 20px 10px;
}
@media (min-width: 768px) {
  .top_check .primary_block {
    gap: 27px 27px;
  }
}
@media (min-width: 768px) and (max-width: 1250px) {
  .top_check .primary_block .col {
    grid-column: span 6;
  }
}
@media (max-width: 1024px) {
  .top_check .secondary_block .button_list {
    flex-wrap: wrap;
  }
}
/***************************************
------------- サービス内容 -------------
***************************************/
.top_service {
  padding: clamp(40px, 15.62vw, 150px) 0;
  background: url(../img/top_service_bg_sp.jpg) no-repeat center/cover;
  position: relative;
  z-index: 1;
}
.top_service:after {
  content: "";
  width: 509px;
  height: 711px;
  background: url(../img/top_bg_ic.png) no-repeat center/cover;
  position: absolute;
  bottom: -220px;
  left: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .top_service:after {
    display: none;
  }
}
.top_service .txt_wrap {
  margin-bottom: clamp(20px, 5.4vw, 52px);
}
.top_service .primary_block {
  margin-bottom: clamp(40px, 10.41vw, 100px);
}
.top_service .primary_block h3 {
  font-size: clamp(20px, 2.6vw, 28px);
  margin: 0 auto clamp(10px, 1.3vw, 15px);
  line-height: 1;
}
.top_service .primary_block h3 .en {
  font-size: clamp(10px, 1.3vw, 14px);
  text-align: right;
  opacity: 0.5;
}
.top_service .primary_block figure {
  margin: 0;
}
.top_service .primary_block .col {
  border-radius: 6px;
  overflow: hidden;
  background: #61c86c;
}
.top_service .primary_block .col.type_blue {
  background: #75a9e4;
}
.top_service .primary_block .col.type_blue .content:after {
  border-color: #75a9e4;
}
.top_service .primary_block .col.type_pink {
  background: #e48faf;
}
.top_service .primary_block .col.type_pink .content:after {
  border-color: #e48faf;
}
.top_service .primary_block .col.type_purple {
  background: #b187c3;
}
.top_service .primary_block .col.type_purple .content:after {
  border-color: #b187c3;
}

.top_service .content {
  display: block;
  text-decoration: none;
  padding: 10px 17px;
  color: #fff;
  position: relative;
}
.top_service .content:before {
  content: "";
  width: clamp(20px, 3.9vw, 40px);
  height: clamp(20px, 3.9vw, 40px);
  border-radius: 50%;
  background: #fff;
  position: absolute;
  bottom: 17px;
  right: 17px;
}
.top_service .content:after {
  content: "";
  border-top: solid clamp(2px, 0.026vw, 3px) #61c86c;
  border-right: solid clamp(2px, 0.026vw, 3px) #61c86c;
  width: clamp(5px, 1vw, 10px);
  height: clamp(5px, 1vw, 10px);
  position: absolute;
  bottom: clamp(25px, 3.7vw, 32px);
  right: clamp(25px, 3.7vw, 34px);
  transform: rotate(45deg);
}
.top_service .content .txt_content {
  padding-right: clamp(20px, 5.89vw, 45px);
  letter-spacing: normal;
}
.top_service .bnr a {
  display: block;
}
@media (max-width: 767px) {
  .top_service .col {
    max-width: 380px;
    margin: auto;
  }
}
@media (min-width: 768px) {
  .top_service {
    background: url(../img/top_service_bg.jpg) no-repeat center/cover;
  }
  .top_service .txt_wrap {
    line-height: 2.625;
  }
  .top_service .txt_wrap {
    line-height: 1.75;
  }
  .top_service .primary_block {
    gap: clamp(10px, 2.6vw, 30px);
  }
}

/***************************************
------------- 施工の流れ+ -------------
***************************************/
.top_composite_bg {
  background: url(../img/top_composite_bg.jpg) no-repeat center bottom/cover;
}

/***************************************
------------- 施工の流れ -------------
***************************************/
.top_flow {
  padding: clamp(40px, 15.62vw, 150px) 10px;
}
@media (max-width: 767px) {
  .top_flow {
    padding-top: 0;
  }
  .top_flow .grid_bg .row {
    gap: 40px;
  }
  .top_flow .grid_bg .row .col:not(:last-child) {
    position: relative;
  }
  .top_flow .grid_bg .row .col:not(:last-child):after {
    content: "";
    width: 30px;
    height: 15px;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    margin: auto;
    background-color: #61c86c;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
  }
}
@media (min-width: 768px) {
  .top_flow .row {
    gap: clamp(30px, 3.9vw, 40px);
  }
  .top_flow .row .col:not(:nth-child(4n)) figure {
    position: relative;
  }
  .top_flow .row .col:not(:nth-child(4n)) figure:before {
    content: "";
    width: clamp(10px, 1.3vw, 20px);
    height: clamp(20px, 2.6vw, 40px);
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(100% + 10px);
    margin: auto;
    background-color: #61c86c;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
  }
  .top_flow .row .col .caption {
    font-size: clamp(14px, 1.8vw, 24px);
  }
}

/***************************************
-------------  -------------
***************************************/
.top_works {
  padding: 0 0 40px;
}
.top_works .splide__track {
  margin-bottom: clamp(40px, 10.4vw, 100px);
}
.top_works .splide__list .splide__slide {
  box-shadow: 5px 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  max-width: 500px;
}
.top_works .splide__list .splide__slide.cat_wall .cat {
  background: #61c86c;
}
.top_works .splide__list .splide__slide.cat_wall .link a {
  color: #61c86c;
  font-size: clamp(16px, 2.2vw, 18px);
}
.top_works .splide__list .splide__slide.cat_roof .cat {
  background: #75a9e4;
}
.top_works .splide__list .splide__slide.cat_roof .link a {
  color: #75a9e4;
  font-size: clamp(16px, 2.2vw, 18px);
}
.top_works .splide__list .splide__slide.cat_roof .link a:after {
  border-color: #75a9e4;
}
.top_works .splide__list .splide__slide.cat_others .cat {
  background: #e48faf;
}
.top_works .splide__list .splide__slide.cat_others .link a {
  color: #e48faf;
  font-size: clamp(16px, 2.2vw, 18px);
}
.top_works .splide__list .splide__slide.cat_others .link a:after {
  border-color: #e48faf;
}

.top_works .splide__list .splide__slide.cat_wash .cat {
  background: #b187c3;
}
.top_works .splide__list .splide__slide.cat_wash .link a {
  color: #b187c3;
  font-size: clamp(16px, 2.2vw, 18px);
}
.top_works .splide__list .splide__slide.cat_wash .link a:after {
  border-color: #b187c3;
}

.top_works .splide__list .splide__slide figure {
  margin: 0;
}
.top_works .splide__list .content {
  padding: clamp(10px, 1.9vw, 20px);
}
.top_works .splide__list .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 15px;
}
.top_works .splide__list .list .cat {
  color: #fff;
  font-weight: 700;
  padding: 2px 15px;
  border-radius: 5px;
}
.top_works .splide__list .list .name {
  font-weight: 700;
}
.top_works .splide__list .link {
  text-align: right;
}
.top_works .splide__list .link a {
  font-weight: 700;
  padding-right: 16px;
  position: relative;
}
.top_works .splide__list .link a:after {
  content: "";
  border-top: solid 2px #61c86c;
  border-right: solid 2px #61c86c;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

/***************************************
------------- 塗装料金の目安 -------------
***************************************/
.top_price {
  padding: clamp(40px, 15.6vw, 150px) 0 clamp(40px, 10vw, 100px);
  background: url(../img/top_price_bg.jpg) no-repeat center top/cover;
}
.top_price .txt_wrap {
  margin-bottom: clamp(20px, 3.9vw, 50px);
}
.top_price {
  h3 {
    margin: 0 auto 10px;
    font-size: 28px;
    color: #fff;
    text-align: center;
  }
  ul.merit {
    width: 100%;
    background: #fff;
    padding: 15px;
    border-radius: 4px;
    margin: 0 auto 10px;
    li {
      display: flex;
      align-items: center;
    }
    li::before {
      content: "";
      display: block;
      width: auto;
      height: 1em;
      aspect-ratio: 19/16;
      margin-right: 0.75rem;
    }
  }
  .lifespan {
    width: 100%;
    background: #fff;
    padding: 15px;
    border-radius: 4px;
    margin: 0 auto 10px;
    line-height: 1;
    font-weight: bold;
    span {
      color: #c80000;
      font-size: 1.25em;
    }
  }
}

.price_block_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: min(2vw, 20px);
  margin: 0 auto clamp(20px, 2.6vw, 30px);
}
.price_block {
  width: calc((100% - (min(2vw, 20px) * 2)) / 3);
  display: flex;
  flex-direction: column;
  padding: clamp(10px, 2.6vw, 20px);
  border-radius: 6px;
}

.price_list {
  width: 100%;
  background: #fff;
  padding: 15px;
  border-radius: 4px;
  .price_box {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    dt {
      line-height: 1;
      font-size: clamp(16px, 5.25vw, 24px);
      font-weight: bold;
      width: min(25%, 120px);
      span {
        font-size: 0.7em;
      }
    }
    dd {
      line-height: 1;
      text-align: right;
      font-size: clamp(16px, 5.25vw, 24px);
      font-weight: bold;
      flex-grow: 1;
      span {
        font-size: 0.7em;
      }
    }
  }
  .price_box:not(:last-of-type) {
    border-bottom: 2px dotted;
    margin: 0 0 10px;
    padding: 0 0 5px;
  }
}

.Urethane {
  background: #dbc864;
  ul.merit li::before {
    background: url(../img/check_yellow.svg) no-repeat;
  }
  .price_box:not(:last-of-type) {
    border-bottom-color: #dbc864;
  }
}
.Silicone {
  background: #61c86c;
  ul.merit li::before {
    background: url(../img/check_green.svg) no-repeat;
  }
  .price_box:not(:last-of-type) {
    border-bottom-color: #61c86c;
  }
}
.Radical {
  background: #75a9e4;
  ul.merit li::before {
    background: url(../img/check_blue.svg) no-repeat;
  }
  .price_box:not(:last-of-type) {
    border-bottom-color: #75a9e4;
  }
}
.Fluorine {
  background: #e48faf;
  ul.merit li::before {
    background: url(../img/check_pink.svg) no-repeat;
  }
  .price_box:not(:last-of-type) {
    border-bottom-color: #e48faf;
  }
}
.Inorganic {
  background: #b187c3;
  ul.merit li::before {
    background: url(../img/check_purple.svg) no-repeat;
  }
  .price_box:not(:last-of-type) {
    border-bottom-color: #b187c3;
  }
}

.aopen_bg {
  background: url(../img/common/aopen_bg.png) no-repeat center center;
  background-size: min(90%, 300px);
}

.top_price .txt {
  margin-bottom: clamp(40px, 10vw, 100px);
}
@media (max-width: 1024px) {
  .price_block {
    width: calc((100% - min(2vw, 20px)) / 2);
  }
}

@media (min-width: 768px) {
  .top_price .txt_wrap {
    line-height: 2.625;
  }
}

@media (max-width: 599px) {
  .price_block {
    width: 100%;
  }
  .aopen01_bg {
    display: none;
  }
}
/***************************************
------------- よくあるご質問 -------------
***************************************/
.top_faq {
  padding: clamp(100px, 13vw, 200px) 10px clamp(100px, 13vw, 220px);
  background: url(../img/top_faq_bg.jpg) no-repeat center top/cover;
}

/***************************************
------------- 新着情報 -------------
***************************************/
.top_news {
  background: url(../img/top_news_bg_sp.jpg) no-repeat center/cover;
  padding: clamp(40px, 19vw, 150px) 0;
}
.top_news h2 {
  color: #fff;
}
.top_news .splide__slide {
  border-radius: 6px;
  overflow: hidden;
  max-width: 300px;
  background: #fff;
}
.top_news figure {
  margin: 0;
}
.top_news .content {
  padding: 14px;
}
.top_news .content .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}
.top_news .content .list .date {
  font-weight: 700;
  font-size: clamp(16px, 2.3vw, 18px);
}
.top_news .content .list .cat {
  padding: 3px clamp(10px, 2.6vw, 20px) 4px;
  background: #61c86c;
  color: #fff;
  font-weight: 700;
  border-radius: 4px;
  font-size: clamp(14px, 2vw, 16px);
}
.top_news .content .ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.top_news .content .link {
  text-align: right;
}
.top_news .content .link a {
  font-size: 18px;
  font-weight: 700;
  padding-right: 15px;
  position: relative;
  color: #61c86c;
}
.top_news .content .link a:after {
  content: "";
  border-top: solid 3px #61c86c;
  border-right: solid 3px #61c86c;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.top_news .content.cat_blog .list .cat {
  background: #75a9e4;
}
.top_news .content.cat_blog .link a {
  color: #75a9e4;
}
.top_news .content.cat_blog .link a:after {
  border-color: #75a9e4;
}
.top_news .content.cat_column .list .cat {
  background: #e48faf;
}
.top_news .content.cat_column .link a {
  color: #e48faf;
}
.top_news .content.cat_column .link a:after {
  border-color: #e48faf;
}
.top_news .content.cat_cp .list .cat {
  background: rgb(233, 170, 125);
}
.top_news .content.cat_cp .link a {
  color: rgb(233, 170, 125);
}
.top_news .content.cat_cp .link a:after {
  border-color: rgb(233, 170, 125);
}
@media (min-width: 768px) {
  .top_news {
    background: url(../img/top_news_bg.jpg) no-repeat center top/cover;
  }
}

/***************************************
------------- お問い合わせ -------------
***************************************/
.top_contact {
  background: url(../img/top_contact_bg.jpg) repeat left top;
}
.top_contact .list li.tel .time {
  text-align: center;
}
.top_contact .time {
  text-align: center;
  transform: translateY(-5px);
  margin-bottom: clamp(30px, 5vw, 40px);
  font-weight: 500;
}
@media (min-width: 1250px) {
  .top_contact .container {
    max-width: 1500px;
    margin: auto;
  }
  .top_contact .row {
    grid-template-columns: 50% 50%;
  }
  .top_contact .row .img_col {
    order: 2;
  }
  .top_contact .row .content_col {
    order: 1;
    display: flex;
    align-items: center;
    justify-content: end;
    padding-right: 80px;
  }
  .top_contact .row .content_col .box {
    max-width: 550px;
  }
  .top_contact .txt_wrap {
    line-height: 2.625;
  }
}
@media (max-width: 1249px) {
  .top_contact {
    padding-bottom: clamp(50px, 10vw, 80px);
  }
  .top_contact .container {
    padding: 0;
  }
  .top_contact .row {
    display: block;
  }
  .top_contact .row .box {
    padding: 0 15px;
  }
  .top_contact .txt_wrap {
    margin-bottom: 20px;
  }
  .top_contact .common_button {
    margin-left: auto;
    margin-right: auto;
  }
}

.mv,
.mv .slick-list,
.mv .slick-track,
.mv .slick-slide {
  background: transparent !important;
}

.mv .slick-slide {
  opacity: 0;
  transition: opacity 2.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.mv .slick-slide.slick-active {
  opacity: 1;
}

@keyframes fadezoom {
  0% {
    transform: scale(1.18);
  }
  100% {
    transform: scale(1);
  }
}
.mv .slick-slide.slick-active .mainimage {
  animation: fadezoom 2.5s 0s forwards;
}
.txt_wrap.text-center {
  margin-bottom: 20px;
}
