/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 24 2025 | 02:01:15 */
.mail-section {
  width: 100%;
  max-width: 1200px;
  margin: 30px auto 0;
  padding: 0 40px;
}
@media screen and (min-width: 768px) { 
  .mail-section {
    margin: 80px auto 0;
  }
}

/* タイトル */
.mail-title {
  font-family: "Gabarito", sans-serif;
  font-size: 45px;
  font-weight: 600;
  color: #0065b2;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) { 
  .mail-title {
    font-size: 55px;
  }
}

/* ボタン */
.mail-button-actions {
    display: flex;
    align-items: center;
	justify-content: center;
    gap: 15px;
	padding-bottom: 15px;
}
.mail-button-actions .btn-outline {
    border: 1.5px solid black;
    background-color: transparent;
	width: 200px;
	height: 40px;
    padding: 0 23px 2px 23px;
    border-radius: 0;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 500;
    color: black;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.mail-button-actions .btn-outline:hover {
    background-color: #fff462;
}