/* =========================
   reset
========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}


/* =========================
   base
========================= */

:root {
  --main-blue: #7eb7d9;
  --light-blue: #f2f8fc;
  --beige: #f7f3ec;
  --text: #333;
  --white: #fff;
}

body {
  color: var(--text);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 400;
  background-color: #fff;
}

@media screen and (min-width: 768px) {

  body {
    font-size: 16px;
  }

}


main {
  overflow: hidden;
}


/* =========================
   common
========================= */

.inner {
  width: 100%;
  padding: 0 20px;
}

@media screen and (min-width: 768px) {

  .inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 40px;
  }

}


.section {
  padding: 64px 0;
}

@media screen and (min-width: 768px) {

  .section {
    padding: 120px 0;
  }

}


.section-title-wrap {
  margin-bottom: 48px;
  text-align: center;
}


.section-title-en {
  display: block;
  margin-bottom: 8px;
  color: var(--main-blue);
  font-size: 12px;
  letter-spacing: 0.1em;
}


.section-title {
  font-size: 28px;
  line-height: 1.5;
  font-weight: 500;
}

@media screen and (min-width: 768px) {

  .section-title {
    font-size: 42px;
  }

}


.section-lead {
  margin-top: 16px;
  font-size: 14px;
  line-height: 2;
}

@media screen and (min-width: 768px) {

  .section-lead {
    font-size: 16px;
  }

}

.pc {
  display: none;
}

.sp {
  display: inline;
}

@media screen and (min-width: 768px) {

  .pc {
    display: inline;
  }

  .sp {
    display: none;
  }

}

/* =========================
   button
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  min-height: 58px;
  padding: 12px 24px;
  border-radius: 999px;
  background-color: var(--main-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  transition: .3s;
}

.btn:hover {
  opacity: .8;
}


/* =========================
   header
========================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 80px;
  background-color: #fff;
}


.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
}

@media screen and (min-width: 768px) {

  .header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

}


/* =========================
   logo
========================= */

.header-logo {
  width: 150px;
  position: relative;
  z-index: 120;
}

@media screen and (min-width: 768px) {

  .header-logo {
    width: 210px;
  }

}


/* =========================
   pc nav
========================= */

.header-nav {
  display: none;
}

@media screen and (min-width: 768px) {

  .header-nav {
    display: block;
    margin-left: auto;
  }

}


.header-nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
}


.header-nav-list a {
  font-size: 14px;
  font-weight: 500;
  transition: .3s;
}

.header-nav-list a:hover {
  opacity: .7;
}


/* =========================
   header btn
========================= */

.header-btn {
  display: none;
}

@media screen and (min-width: 768px) {

  .header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    height: 50px;
    margin-left: 32px;
    border-radius: 999px;
    background-color: #4eb8db;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: .3s;
  }

  .header-btn:hover {
    opacity: .8;
  }

}


/* =========================
   hamburger
========================= */

.hamburger {
  position: relative;
  z-index: 120;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
}

@media screen and (min-width: 768px) {

  .hamburger {
    display: none;
  }

}


.hamburger span {
  position: absolute;
  left: 50%;
  width: 24px;
  height: 2px;
  background-color: #333;
  transform: translateX(-50%);
  transition: .3s;
}

.hamburger span:nth-child(1) {
  top: 12px;
}

.hamburger span:nth-child(2) {
  top: 19px;
}

.hamburger span:nth-child(3) {
  top: 26px;
}


/* =========================
   sp nav
========================= */

.sp-nav {
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 110;
  width: 100%;
  height: 100vh;
  padding: 120px 20px 40px;
  background-color: #ffffff;
  transition: .4s;
}


.sp-nav-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.sp-nav-list {
  width: 100%;
}


.sp-nav-list li + li {
  margin-top: 24px;
}


.sp-nav-list a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}


.sp-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 280px;
  height: 58px;
  margin-top: 48px;
  border-radius: 999px;
  background-color: var(--main-blue);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}


/* =========================
   active
========================= */

.sp-nav.active {
  left: 0;
}


.hamburger.active span:nth-child(1) {
  top: 19px;
  transform: translateX(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 19px;
  transform: translateX(-50%) rotate(-45deg);
}

/* =========================
   footer
========================= */

.footer {
  padding: 64px 20px 0;
  background-color: #dcecf4;
  text-align: center;
}


.footer-message {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 2;
}


.footer-logo {
  width: 160px;
  margin: 0 auto 24px;
}


.footer-address {
  margin-bottom: 24px;
  font-size: 13px;
  line-height: 2;
}


.footer-copy {
  font-size: 12px;
}

/* =========================
   hero
========================= */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 350px;
  background-image: url("./images/top/hero-main.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}

.hero-img {
  display: none;
}

.hero-inner {
  position: absolute;
  z-index: 10;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 0 20px;
  text-align: center;
}

.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: .04em;
  color: #333;
}

.hero-title span {
  color: #ffffff;
  font-size: 28px;
}

.hero-text {
  display: none;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 42px;
  margin-top: 14px;
  border-radius: 999px;
  background-color: #31338a;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.hero-wave {
  position: absolute;
  bottom: -34px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 5;
}

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

@media screen and (min-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: 64px;
    background-image: none;
  }

  .hero-img {
    display: block;
    margin-top: -70px;
    line-height: 0;
  }

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

  .hero-inner {
    top: 150px;
    padding: 0 40px;
  }

  .hero-title {
    font-size: 45px;
    line-height: 1.55;
  }

  .hero-title span {
    font-size: 59px;
    color: #fff;
  }

  .hero-text {
    display: block;
    margin-top: 28px;
    font-size: 18px;
    line-height: 2.1;
    color: #333;
  }

  .hero-btn {
    min-width: 260px;
    min-height: 60px;
    margin-top: 36px;
    font-size: 16px;
  }

  .hero-wave {
    bottom: -120px;
  }
}

/* =========================
 background
========================= */

.background{
  padding:50px 20px;
  background:#f8f5ee;
}

.background-content{
  display:flex;
  flex-direction:column;
  gap:56px;
}

.background-left{
  width:100%;
}

.background-title{
  font-family:'Noto Serif JP',serif;
  font-size:20px;
  line-height:1.8;
  font-weight:500;
  color:#333333;
  letter-spacing: 1px;
}

.background-title span{
  color:#1785d6;
  font-size: 25px;
}

.background-text{
  margin-top:48px;
}

.background-text p{
  font-size:16px;
  line-height:1.5;
  color:#333333;
}

.background-text p+p{
  margin-top:28px;
}

/* ---------- photo ---------- */

.background-right{
  position:relative;
  width:100%;
  height:480px;
}

.background-image{
  position:absolute;
}

.background-image img{
  display:block;
  width:100%;
}

.background-image01{
  width:250px;
  top:0;
  left:0;
}

.background-image02{
  width:210px;
  top:160px;
  right:0;
}

.background-image03{
  width:230px;
  top:320px;
  left:35px;
}
.background-image:last-child {
  margin-bottom: 32px;
}

/* ---------- PC ---------- */

@media screen and (min-width:768px){

.background{
  padding:120px 0 110px;
}

.background-content{
  flex-direction:row;
  justify-content:space-between;
  align-items:flex-start;
  gap:90px;
}

.background-left{
  width:560px;
}

.background-title{
  font-size:23px;
  line-height:1.8;
  font-weight:500;
  color:#333333;
}

.background-title span{
  color:#1785d6;
  font-size: 28px;
  letter-spacing: -2px;
}  
  
.background-text{
  margin-top:54px;
}

.background-text p{
  font-size:18px;
}

.background-right{
  width:420px;
  height:560px;
}

.background-image01{
  width:310px;
  top:0;
  left:-20px;
}

.background-image02{
  width:240px;
  top:200px;
  right:0;
}

.background-image03{
  width:260px;
  top:390px;
  left:30px;
}
}

/* =========================
   support-use
========================= */

.support-use{
  padding:72px 20px;
}

.section-heading{
  text-align:center;
}

.section-sub{
  font-family:'Noto Serif JP',serif;
  font-size:20px;
  line-height:1.8;
}

.section-sub span{
  color:#0b8ee8;
  font-size:25px;
}

.section-text{
  margin-top:16px;
  font-size:15px;
  line-height:2;
}

.support-use-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:24px;
  margin-top:48px;
}

.support-card{
  background:#eff2f8;
  border-radius:12px;
  padding:16px;
}

.support-card img{
  width:100%;
  display:block;
}

.support-card h3{
  margin-top:18px;
  padding-bottom:10px;
  border-bottom:2px solid #036eb6;
  color:#036eb6;
  font-size:19px;
  line-height:1.5;
  font-weight:700;
}

.support-card ul{
  margin-top:18px;
  padding-left:18px;
  list-style: disc;
}

.support-card li{
  margin-bottom:10px;
  font-size:15px;
  line-height:1.3;
}

.support-use-message{
  margin-top:64px;
  margin-bottom: 60px;
  text-align:center;
}

.support-use-message p{
  font-size:18px;
  line-height:2;
}

.support-use-message h2{
  margin:16px 0;
  font-family:'Noto Serif JP',serif;
  font-size:23px;
  line-height:1.8;
  font-weight:500;
}

/* =========================
   PC
========================= */

@media screen and (min-width:768px){

  .support-use{
    padding:100px 0;
  }

  .section-sub{
    font-size:23px;
  }

  .section-sub span{
    font-size:28px;
  }

  .section-text{
    font-size:18px;
  }

  .support-use-grid{
    grid-template-columns:repeat(3,1fr);
    gap:28px;
    margin-top:60px;
  }

  .support-card{
    padding:20px;
  }

  .support-card h3{
    font-size:20px;
    text-align: center
  }

  .support-card li{
    font-size:16px;
  }

  .support-use-message{
    margin-top:80px;
    margin-bottom: 70px;
  }

  .support-use-message h2{
    font-size:23px;
  }

}


/* =========================
   future
========================= */

.future {
  position: relative;
  padding: 88px 20px 80px;
  background-color: #f8f5ee;
}

.future-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

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

.future-inner {
  position: relative;
  z-index: 2;
}

.future-heading {
  text-align: center;
}

.future-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  line-height: 1.8;
  font-weight: 500;
  color: #333;
}

.future-title span {
  color: #0b8ee8;
  font-size: 25px;
}

.future-lead {
  margin-top: 18px;
  font-size: 15px;
  line-height: 2;
  font-weight: 500;
  color: #333;
}

.future-content {
  margin-top: 40px;
}

.future-label {
  display: inline-block;
  padding: 10px 28px;
  background: #e6d8bb;
  font-size: 17px;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
  width: 100%;
  text-align: center
}

.future-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 28px;
}

.future-card {
  padding: 28px 22px 30px;
  background: #fff;
  border-radius: 10px;
  text-align: center;
}

.future-image {
  width: 180px;
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
}

.future-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.future-card-title {
  margin-top: 18px;
  font-size: 19px;
  line-height: 1.6;
  font-weight: 700;
  color: #333;
}

.future-card p {
  font-size: 15px;
  line-height: 1.9;
  color: #333;
  text-align: left;
}


/* =========================
   PC
========================= */

@media screen and (min-width: 768px) {

  .future {
    padding: 120px 0 100px;
  }

  .future-title {
    font-size: 24px;
  }

  .future-title span {
    font-size: 30px;
  }

  .future-lead {
    margin-top: 22px;
    font-size: 16px;
  }

  .future-content {
    margin-top: 56px;
    text-align: center;
  }

  .future-label {
    padding: 12px 44px;
    font-size: 20px;
    width: auto;
  }

  .future-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 32px;
  }

  .future-card {
    padding: 34px 28px;
  }

  .future-image {
    width: 190px;
  }

  .future-card-title {
    margin-top: 26px;
    font-size: 20px;
    min-height: 45px;
  }

  .future-card p {
    font-size: 16px;
    line-height: 1.9;
  }

}

/* =========================
   donation
========================= */

.donation {
  padding: 72px 20px;
  background-color: #fff;
}

.donation-heading {
  text-align: center;
}

.donation-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  line-height: 1.8;
  font-weight: 500;
  color: #333;
}

.donation-title span {
  color: #0b8ee8;
  font-size: 25px;
}

.donation-lead {
  margin-top: 18px;
  font-size: 14px;
  line-height: 2;
  font-weight: 500;
  color: #333;
}

/* =========================
   donation methods
========================= */

.donation-methods {
  margin-top: 44px;
  padding: 28px 20px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .1);
}

.donation-methods-title {
  width: fit-content;
  margin: 0 auto;
  padding: 9px 30px;
  background-color: #edf4fb;
  color: #0b8ee8;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}

/* =========================
   donation method
========================= */

.donation-method {
  padding: 30px 0;
}

.donation-method + .donation-method {
  border-top: 1px dashed #aacde3;
}

.donation-method-content {
  min-width: 0;
}

.donation-card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1f2c83;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 700;
}

.donation-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.donation-icon img {
  display: block;
  width: 100%;
  height: 100%;
}

.donation-method-content > p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.9;
  font-weight: 500;
  color: #333;
}

/* =========================
   donation button
========================= */

.donation-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  margin-top: 22px;
  padding: 0 48px 0 28px;
  border-radius: 999px;
  background-color: #4eb8db;
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}

.donation-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

/* =========================
   donation bank
========================= */

.donation-bank {
  margin-top: 12px;
  color: #333;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
}

.donation-bank-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.donation-bank-row + .donation-bank-row {
  margin-top: 8px;
}

.donation-bank-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 10px;
  align-items: baseline;
}

.donation-bank-label {
  font-weight: 700;
}

.donation-bank-data {
  min-width: 0;
}

.donation-bank-name {
  margin-top: 10px;
}

.donation-bank-name p {
  margin: 0;
}

.donation-bank-value {
  margin-top: 3px !important;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.donation-method-content .donation-bank-note {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.7;
}

/* =========================
   donation note
========================= */

.donation-note {
  margin-top: 20px;
  font-size: 12px;
  line-height: 1.8;
  font-weight: 500;
  color: #333;
}

/* =========================
   PC
========================= */

@media screen and (min-width: 768px) {

  .donation {
    padding: 100px 0 80px;
  }

  .donation-title {
    font-size: 23px;
  }

  .donation-title span {
    font-size: 28px;
  }

  .donation-lead {
    margin-top: 20px;
    font-size: 16px;
  }

  .donation-methods {
    max-width: 930px;
    margin: 52px auto 0;
    padding: 28px 34px;
  }

  .donation-methods-title {
    padding: 10px 58px;
    font-size: 19px;
  }

  .donation-method {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    padding: 34px 0;
  }

  .donation-method-content {
    flex: 1;
    min-width: 0;
  }

  .donation-card-title {
    font-size: 19px;
  }

  .donation-icon {
    width: 32px;
    height: 32px;
  }

  .donation-method-content > p {
    font-size: 15px;
    line-height: 1.8;
  }

  .donation-btn {
    width: 260px;
    min-width: 260px;
    min-height: 54px;
    margin-top: 0;
    font-size: 16px;
  }

  /* 銀行振込はCTAがないため横幅全体を使用 */
  .donation-method-bank {
    display: block;
  }

  .donation-method-bank .donation-method-content {
    width: 100%;
    max-width: none;
  }

  /* 銀行情報 */
  .donation-method-bank .donation-bank {
    margin-top: 12px;
  }

  .donation-method-bank .donation-bank-row {
    display: grid;
    grid-template-columns: 200px 200px;
    column-gap: 18px;
    align-items: baseline;
  }

  .donation-method-bank .donation-bank-row + .donation-bank-row {
    margin-top: 5px;
  }

  .donation-method-bank .donation-bank-item {
    display: grid;
    grid-template-columns: 68px 1fr;
    column-gap: 8px;
    align-items: baseline;
  }

  .donation-method-bank .donation-bank-label,
  .donation-method-bank .donation-bank-data {
    white-space: nowrap;
  }

  /* 口座名義 */
  .donation-method-bank .donation-bank-name {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-top: 5px;
  }

  .donation-method-bank .donation-bank-name .donation-bank-label {
    flex-shrink: 0;
  }

  .donation-method-bank .donation-bank-value {
    margin-top: 0 !important;
    padding-left: 10px;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: keep-all;
  }

  .donation-method-bank .donation-bank-note {
    white-space: nowrap;
  }

  /* ご寄贈のCTA位置 */
  .donation-method:last-child {
    align-items: center;
  }

  .donation-method:last-child .donation-btn {
    transform: translateY(10px);
  }

  .donation-note {
    max-width: 930px;
    margin: 20px auto 0;
    font-size: 13px;
  }
}

/* =========================
   contact-cta
========================= */

.contact-cta {
  padding: 68px 20px 80px;
  background: #fff;
  text-align: center;
}

.contact-cta-message {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  line-height: 2;
  font-weight: 500;
  color: #333;
}

.contact-cta-sub {
  margin-top: 18px;
  font-size: 14px;
  line-height: 2;
  font-weight: 500;
  color: #333;
}

.contact-cta-box {
  margin-top: 48px;
}

.contact-cta-box p {
  font-size: 14px;
  line-height: 2;
  font-weight: 500;
  color: #333;
}

/* =========================
   contact button
========================= */

.contact-cta-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  max-width: 340px;
  height: 58px;

  margin: 24px auto 0;
  padding: 0 50px 0 28px;

  border-radius: 999px;
  background: #4eb8db;

  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.contact-cta-btn::after {
  content: "";
  position: absolute;
  right: 24px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

/* =========================
   PC
========================= */

@media screen and (min-width: 768px) {

  .contact-cta {
    padding: 70px 0 100px;
  }

  .contact-cta-message {
    font-size: 25px;
    line-height: 1.9;
  }

  .contact-cta-sub {
    margin-top: 18px;
    font-size: 15px;
  }

  .contact-cta-box {
    margin-top: 56px;
  }

  .contact-cta-box p {
    font-size: 15px;
  }

  .contact-cta-btn {
    width: 420px;
    max-width: none;
    height: 64px;

    margin-top: 28px;
    padding: 0 60px 0 36px;

    font-size: 18px;
  }

  .contact-cta-btn::after {
    right: 30px;
    width: 9px;
    height: 9px;
  }
}

/* =========================
   contact return
========================= */

.contact-cta-return {
  margin-top: 20px;
  text-align: center;
}

.contact-cta-return-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 220px;
  min-height: 48px;
  padding: 0 42px 0 24px;

  border: 2px solid #4eb8db;
  border-radius: 999px;

  background: #fff;
  color: #4eb8db;

  font-size: 15px;
  font-weight: 700;

  transition: .3s;
}

.contact-cta-return-btn::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;

  width: 7px;
  height: 7px;

  border-top: 2px solid #4eb8db;
  border-right: 2px solid #4eb8db;

  transform: translateY(-50%) rotate(45deg);
}

.contact-cta-return-btn:hover {
  background: #4eb8db;
  color: #fff;
}

.contact-cta-return-btn:hover::after {
  border-color: #fff;
}

@media screen and (min-width: 768px) {

  .contact-cta-return {
    margin-top: 72px;
  }

  .contact-cta-return-btn {
    width: 260px;
    min-height: 52px;
    font-size: 16px;
  }
}