.main-visual {
  display: block;
  width: 100%;
  min-height: 650px;
  background-image: url("../img/mv_bg.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  padding: 120px 20px 120px 20px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .main-visual {
    padding: 120px 20px 20px 20px;
  }
}

.main-visual__body {
  display: block;
  width: 100%;
}

.main-visual__inner {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: nowrap;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .main-visual__inner {
    flex-direction: column;
  }
}

.main-visual__text-content,
.main-visual__illust-content {
  display: flex;
  flex-direction: column;
  vertical-align: middle;
  box-sizing: border-box;
}

.main-visual__text-content {
  width: 55%;
  padding-right: 40px;
  text-align: left;
}

@media (max-width: 768px) {
  .main-visual__text-content {
    width: 100%;
    padding: 0;
  }
}

.main-visual__illust-content {
  width: 45%;
  text-align: right;
}

@media (max-width: 768px) {
  .main-visual__illust-content {
    width: 100%;
    text-align: right;
  }
}

.main-visual__heading {
  font-family: "Arial Black", sans-serif;
  font-size: 50px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin: 0 0 24px 0;
}

@media (max-width: 768px) {
  .main-visual__heading {
    font-size: 30px;
    margin: 0;
  }
}

.main-visual__actions {
  display: block;
  margin: 0;
}

.main-visual__logo {
  margin-bottom: 10px;
}

.main-visual__logo-img {
  width: 150px;
  height: auto;
  display: block;
}

.main-visual__schedule {
  margin-top: 24px;
  margin-bottom: 50px;
  max-width: 450px;
  width: 100%;
}

.main-visual__schedule-img {
  width: 100%;
  height: auto;
  display: block;
}

.main-visual__btn {
  display: inline-block;
  padding: 12px 32px;
  font-family: "Arial", sans-serif;
  font-size: 11pt;
  font-weight: bold;
  text-decoration: none;
  border-radius: 25px;
  margin-right: 16px;
  text-align: center;
  transition: opacity 0.2s ease;
}

.main-visual__btn:hover {
  opacity: 0.9;
}

.main-visual__btn--primary {
  background-color: #00b4ec;
  color: #ffffff;
}

.main-visual__btn--secondary {
  background-color: #00d2c4;
  color: #ffffff;
}

.main-visual__image {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.about {
  padding: 45px 0;
  background: #fff;
}

@media (max-width: 768px) {
  .about {
    padding: 20px 0;
  }
}

.about__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* イラストの包み枠 */
.about__illust-wrap {
  flex: 0 0 35%;
}

.about__illust-img {
  width: 100%;
  height: auto;
  display: block;
}

.about__content {
  flex: 1;
}

.about__sub-title {
  display: block;
  color: #0a2986;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 12px;
}

.about__sub-title::before {
  content: "• ";
  margin-right: 4px;
}

/* メインの見出し */
.about__title {
  color: #0a2986;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 24px;
  font-family: "Arial Black", sans-serif;
}

/* 本文文言 */
.about__text {
  color: #333333;
  font-size: 15px;
  line-height: 1.8;
  font-weight: bold;
  margin-bottom: 0;
}

/* ==========================================
   レスポンシブ（スマホ表示：画面幅768px以下）
   ========================================== */
@media (max-width: 768px) {
  /* 縦並びに切り替え */
  .about__inner {
    flex-direction: column;
    gap: 24px;
  }

  .about__illust-wrap {
    width: 100%;
    max-width: 320px;
  }

  .about__title {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }

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

.event {
  position: relative;
  width: 100%;
  margin: 0 0 130px;
  padding-top: 80px;
}

@media (max-width: 768px) {
  .event {
    margin: 0 0 20px;
    padding: 0;
  }
}

.event:after {
  content: "";
  position: absolute;
  bottom: -130px;
  left: 0;
  width: 100%;
  height: 130px;
  background: transparent url("../img/event_bg-bottom.png") center bottom / 100%
    100% no-repeat;
  z-index: 2;
}

.event__header,
.product__header,
.event_outline__header {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .event__header,
  .product__header,
  .event_outline__header {
    margin-bottom: 10px;
  }
}

.event__sub-title,
.product__sub-title,
.event_outline__sub-title {
  display: block;
  color: #0a2986;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
}

.event__sub-title::before,
.event_outline__sub-title::before,
.product__sub-title::before {
  content: "• ";
  margin-right: 4px;
}

.event__title,
.event_outline__title,
.product__title {
  color: #0a2986;
  font-size: 3.2rem;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 768px) {
  .event__title,
  .event_outline__title,
  .product__title {
    font-size: 1.6rem;
  }
}

.event__illust {
  position: absolute;
  top: -150px;
  right: 0;
  z-index: 100;
}

.event__body-wrap {
  position: relative;
  background-color: #edf7fe;
  margin-top: 0;
  padding-top: 140px;
  padding-bottom: 10px;
}

.event__body-wrap::before {
  content: "";
  position: absolute;
  top: -285px;
  left: 0;
  width: 100%;
  height: 285px;
  background: transparent url("../img/event_bg-top.png") center bottom / 100%
    auto no-repeat;
  z-index: 2;
}

@media (max-width: 768px) {
  .event__body-wrap::before {
    content: "";
    position: absolute;
    top: -285px;
    left: 0;
    width: 100%;
    height: 285px;
    z-index: 2;
  }
}

.event__header {
  position: relative;
  z-index: 5;
  text-align: center;
}

@media (max-width: 900px) {
  .event__illust {
    display: none;
  }
}

.event__inner {
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
  box-sizing: border-box;
}

.event__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.event__box {
  flex: 0 0 55%;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  box-sizing: border-box;
  margin-bottom: 70px;
  position: relative;
}

.event__list-item {
  line-height: 1.8;
  font-weight: bold;
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  font-size: 1.6rem;
}

@media (max-width: 768px) {
  .event__list-item {
    font-size: 14px;
  }
}

.event__list-item:last-child {
  margin-bottom: 0;
}

.event__list-item::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.event__illust-wrap {
  flex: 0 0 43%;
  box-sizing: border-box;
}

/* イラスト画像本体 */
.event__illust-img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .event__header {
    padding-top: 10px;
  }

  .event__body-wrap {
    padding: 20px 8px;
  }

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

  .event__box {
    width: 100%;
    flex: none;
    padding: 24px;
    margin-bottom: 10px;
  }

  .event__illust-wrap {
    width: 100%;
    flex: none;
    max-width: 340px;
    margin: 0 auto;
  }
}

.time_schedule .bg-blue {
  background-color: #ddd7eb;
}

.time_schedule .bg-purple {
  background-color: #d8def0f3;
}

.inner {
  max-width: 1280px;
  margin: 0 auto;
}

@media screen and (max-width: 903px) {
  .inner {
    padding: 10px;
  }
}

.mv {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}

.mv_block {
  max-width: 1280px;
  margin: 0 auto 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (max-width: 903px) {
  .mv_block {
    margin: 0 auto 15px;
  }
}

.mv_block .main_ttl {
  font-size: 4rem;
  font-weight: 600;
  color: #fafafa;
  line-height: 1.4;
  margin-bottom: 20px;
  letter-spacing: -1.3px;
  text-shadow: 0 0 4px #000;
}

.mv_block p {
  font-size: 1.8rem;
  color: #fafafa;
  margin-bottom: 20px;
}

.mv_block a {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  text-decoration: none;
  width: 120px;
  margin-top: 20px;
  padding: 10px;
  font-weight: bold;
  background: linear-gradient(45deg, #262ed6, #0a2986);
  cursor: pointer;
  color: #fff;
  position: relative;
}
.mv_block a:before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.event_attention {
  font-size: 1.4rem;
  margin-bottom: 70px;
}

@media screen and (max-width: 903px) {
  .event_attention {
    margin-bottom: 15px;
  }
}

.navi_event {
  display: flex;
  flex-direction: row;
  margin-bottom: 70px;
}

@media screen and (max-width: 903px) {
  .navi_event {
    display: block;
    margin-bottom: 15px;
  }
}

.navi_event a {
  position: relative;
  width: calc((100% - 50px) / 3);
  display: inline-block;
  margin-right: 25px;
  border: 2px solid #0a2986;
  color: #0a2986;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 10px;
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
  border-radius: 3px;
}

.navi_event a:after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-top: #0a2986 2px solid;
  border-right: #0a2986 2px solid;
  display: inline-block;
  top: 50%;
  right: 35px;
  transform: rotate(135deg);
  margin-top: -4px;
}

.navi_event a:last-child {
  margin-right: 0;
}

@media screen and (max-width: 903px) {
  .navi_event a {
    width: 100%;
    margin-bottom: 10px;
  }
}

.event_list {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 120px;
}

@media screen and (max-width: 903px) {
  .event_list {
    margin-bottom: 15px;
    flex-direction: column;
  }
}

.event_list_item {
  display: flex;
  flex-direction: column;
  width: calc((100% - 60px) / 3);
  box-shadow: 0 0 8px rgba(192, 192, 192, 0.8);
  background: #fff;
  border-radius: 3px;
}

@media screen and (max-width: 903px) {
  .event_list_item {
    flex-direction: column;
    margin: 0 0 10px;
    width: 100%;
  }
}

.event_list_item a {
  display: block;
  width: 100%;
  height: 100%;
}

.event_list_item a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}

.event_list_item:nth-child(4n) {
  margin-right: 0;
}
.mv_block .main_ttl .event_list_item_img {
  position: relative;
}

.event_list_item_img span {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.2rem;
  display: inline-block;
  padding: 8px 8px;
  color: #fff;
}

.event_list_item_img span.blue {
  background: linear-gradient(45deg, #262ed6, #0a2986);
}

.event_list_item_img span.sky {
  background: linear-gradient(45deg, #219ed8, #3aaff3d8);
}

.event_list_wrap {
  padding: 15px 15px 0;
}

.event_list_ttl {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.event_list_ico_01 {
  display: inline-block;
  font-size: 1.2rem;
  background: #0a2986;
  padding: 6px;
  margin: 0 10px 5px 0;
  border-radius: 3px;
  color: #fff;
}

.event_list_ico_02 {
  display: inline-block;
  font-size: 1.2rem;
  background: #00b4f1;
  padding: 6px;
  margin: 0 10px 5px 0;
  border-radius: 3px;
  color: #fff;
}

.event_list_txt {
  font-size: 1.4rem;
  margin: 10px 0;
}

.event_list_date {
  font-size: 1.4rem;
  color: #848484;
  margin-bottom: 6px;
}

.event_list_product {
  font-size: 1.2rem;
  border: 1px solid #d7d7d7;
  padding: 2px 5px;
  display: inline-block;
  margin-bottom: 15px;
  border-radius: 3px;
}

.event_list_link {
  display: block;
  position: relative;
  padding-left: 25px;
  font-size: 1.4rem;
  margin: 0 0 25px 0;
  margin-top: auto;
  font-weight: 600;
}

.event_list_link:before {
  position: absolute;
  content: "";
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  width: 18px;
  height: 18px;
  background-color: #0a2986;
  border-radius: 50%;
  transform: none;
  border: none;
}

.event_list_link:after {
  position: absolute;
  content: "";
  margin: auto;
  top: 0;
  bottom: 0;
  left: 6px;
  width: 5px;
  height: 5px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
}

.event_tbl {
  border-top: 1px solid #dedede;
  width: 100%;
  margin-bottom: 30px;
}

.event_tbl a {
  color: #0a2986;
}

.event_tbl a:hover {
  color: #0a2986;
  text-decoration: underline;
  transition: all 0.3s;
}

.event_tbl .tbl_group01 {
  width: 15%;
}

.event_tbl .tbl_group02 {
  width: 85%;
}

.event_tbl th {
  background: #0a2986;
  border-right: #dedede;
  color: #fff;
}

.event_tbl th,
.event_tbl td {
  padding: 20px;
  border-bottom: 1px solid #dedede;
  font-size: 1.6rem;
  border-right: 1px solid #dedede;
}

@media screen and (max-width: 903px) {
  .event_tbl th,
  .event_tbl td {
    padding: 10px;
    border-bottom: 1px solid #dedede;
    font-size: 1.4rem;
  }
}

.event_tbl_attention {
  margin-bottom: 70px;
}

@media (max-width: 748px) {
  .event_tbl_attention {
    margin-bottom: 0;
  }
}

.event_tbl_attention li {
  position: relative;
  padding-left: 25px;
  font-size: 1.4rem;
}

.event_tbl_attention li:before {
  position: absolute;
  content: "※";
  display: block;
  left: 0;
  top: 0;
}

.access_txt {
  margin-bottom: 50px;
}

.access_pdf {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
  max-width: 480px;
  margin: 30px auto;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.access_pdf_btn {
  display: inline-block;
  background: #0a2986;
  color: #fff !important;
  text-decoration: none !important;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
}

.access_map {
  max-width: 560px;
  margin: 0 auto 50px;
}

.access a {
  color: #0a2986;
}

.access a:hover {
  text-decoration: underline;
}

.product_list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 130px;
}

@media screen and (max-width: 903px) {
  .product_list {
    display: block;
    margin-bottom: 20px;
  }
}

.product_item {
  width: calc((100% - 75px) / 3);
  margin: 0 25px 15px 0;
  padding: 20px 20px 20px 24px;
  box-shadow: rgba(192, 192, 192, 0.8) 0px 0px 8px;
  border-left: 6px solid #0b2d72;
  border-radius: 6px;
}

@media screen and (max-width: 903px) {
  .product_item {
    width: 100%;
    margin: 0 0 15px 0;
  }
}

.product_item a {
  width: 100%;
  height: auto;
  display: block;
}

.product_item a:hover {
  opacity: 0.8;
  transition: all 0.3s;
}

.product_item:nth-child(3n) {
  margin-right: 0;
}

.product_item_ttl {
  font-weight: 600;
  padding-bottom: 5px;
  margin-bottom: 15px;
  border-bottom: 2px solid #eee;
  color: #0a2986;
  font-size: 1.6rem;
}

.product_item_copy {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.product_item_txt {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.product_item_link_txt {
  position: relative;
  padding-left: 25px;
  font-size: 1.4rem;
  font-weight: 600;
}

.product_item_link_txt:before {
  position: absolute;
  content: "";
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  width: 18px;
  height: 18px;
  background-color: #0a2986;
  border-radius: 50%;
  transform: none;
  border: none;
}

.product_item_link_txt:after {
  position: absolute;
  content: "";
  margin: auto;
  top: 0;
  bottom: 0;
  left: 6px;
  width: 5px;
  height: 5px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
}

.tab_label {
  color: #0a2986;
  border: solid 1px #0a2986;
  position: relative;
  z-index: 1;
  cursor: pointer;
  flex: 1;
  padding: 10px;
  margin: 0 5px;
  border-radius: 3px;
}

.tab_label:hover {
  opacity: 0.75;
  transition: all 0.3s;
}

.tab_content {
  flex: 100%;
  display: none;
  overflow: hidden;
}

.tab_content a {
  color: #0a2986;
}

.tab_content a:hover {
  color: #0a2986;
  text-decoration: underline;
}

input[name="tab_switch"] {
  display: none;
}

.tabs input:checked + .tab_label {
  color: #fff;
  background: #0a2986;
}
.tabs input:checked + .tab_label::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 0 10px;
  border-color: #0a2986 transparent transparent transparent;
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  transition: all 0.3s ease 0s;
}

#tab01:checked ~ #tab01_content,
#tab02:checked ~ #tab02_content,
#tab03:checked ~ #tab03_content {
  display: block;
}

.tab_content {
  position: relative;
  animation: fadeIn 1s ease;
}

.time_schedule table {
  border-bottom: 1px solid #bebebed2;
  border-right: 1px solid #bebebed2;
  width: 100%;
  margin: 50px 0;
  font-size: 1.4rem;
}

@media (max-width: 748px) {
  .time_schedule table {
    margin: 10px 0;
  }
}

.time_schedule table td,
.time_schedule table th {
  border-top: 1px solid #bebebed2;
  border-right: 1px solid #bebebed2;
  border-left: 1px solid #bebebed2;
  padding: 10px;
}

.time_schedule table th {
  text-align: center;
  width: calc(100% / 6);
  background: #0a2986;
  color: #fff;
}

.time_schedule table td {
  vertical-align: middle;
}

.link_btn_wrap {
  display: flex;
  justify-content: center;
}

.link_btn {
  display: inline-block;
  padding: 10px 30px;
  background: #0a2986;
  color: #fff;
  position: relative;
  text-align: center;
}

@media screen and (max-width: 903px) {
  .link_btn {
    width: 100%;
  }
}

.link_btn:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  left: 10px;
  top: 50%;
  margin-top: -4px;
}

.close_wrap {
  box-shadow: 2px 2px 8px #ccc;
  padding: 30px;
}

@media screen and (max-width: 903px) {
  .close_wrap {
    padding: 15px;
  }
}

.close_ttl {
  font-size: 2rem;
  font-weight: 600;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #333;
  text-align: center;
}

@media screen and (max-width: 903px) {
  .close_ttl {
    font-size: 1.6rem;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}

.deadline_wrap {
  background-color: #eff3f7;
  padding: 20px;
  margin: 20px 0;
  text-align: center;
  border-radius: 8px;
}

.deadline_txt {
  font-size: 16px;
  margin-bottom: 10px;
}

@media screen and (max-width: 630px) {
  .deadline_txt {
    font-size: 14px;
  }
}

.deadline_btn {
  display: inline-block;
  background-color: #0a2986;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.section02 {
  padding: 70px 0 70px;
}

@media screen and (max-width: 630px) {
  .section02 {
    padding: 15px 0 15px;
  }
}

.third_ttl {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 30px;
  padding-bottom: 5px;
}

.event_outline {
  padding: 70px 0;
}

@media (max-width: 630px) {
  .event_outline {
    padding: 10px 0;
  }
}

@media (max-width: 630px) {
  .slider {
    overflow: auto;
    margin-left: 66px;
  }
}

.event_outline_list {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 20px;
}

.event_outline_item {
  padding-left: 1rem;
  text-indent: -1rem;
}

.time_schedule_header,
.event_outline__header,
.access__header {
  text-align: center;
  margin-bottom: 30px;
}

.time_schedule__sub-title,
.access__sub-title {
  display: block;
  color: #003399;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
}

.time_schedule__sub-title:before,
.access__sub-title:before {
  content: "• ";
  margin-right: 4px;
}

.time_schedule_title,
.access__title {
  color: #0a2986;
  font-size: 32px;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 768px) {
  .time_schedule_title,
  .access__title {
    font-size: 16px;
  }
}
.contact-section {
  width: 100%;
  padding: 0 0 50px;
  background-color: #ffffff;
  background-image: url("../img/contact_bg.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 350px;
}

.contact-section__container {
  max-width: 660px;
  margin: 0 auto;
  padding: 23px;
  background: #ffffff;
  border: 2px solid #1b53c0;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-section__content {
  flex: 1;
}

.contact-section__title {
  margin: 0 0 15px 0;
  font-size: 22px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .contact-section__title {
    font-size: 16px;
  }
}

.contact-section__info {
  font-size: 14px;
  line-height: 1.6;
  color: #333333;
}

.contact-section__department {
  font-weight: 500;
}

.contact-section__email {
  margin: 0;
  font-weight: 700;
}

.contact-section__link {
  color: #333333;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.contact-section__icon {
  margin: 5px 6px 0 0;
  line-height: 1;
}

.contact-section__link:hover {
  text-decoration: none;
}

.contact-section__action {
  margin-left: 40px;
}

.contact-section__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 190px;
  height: 54px;
  background: #00aeef;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 27px;
  box-shadow: 0 4px 10px rgba(0, 174, 239, 0.3);
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
}

.contact-section__button:hover {
  background-color: #0093cb;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .contact-section__container {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
  }

  .contact-section__action {
    margin-left: 0;
    margin-top: 25px;
    width: 100%;
  }

  .contact-section__button {
    width: 100%;
  }
}
