html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
.wrapper {
  max-width: 1140px;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
img {
  pointer-events: none;
}
a {
  text-decoration: none;
  color: #222;
}
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: "Zen Old Mincho", serif;
}
.sr-only {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #fff;
  background-color: #bdb76b;
  min-width: 120px;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-align: center;
}
.button svg {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  fill: #fff;
}
.button span {
  display: none;
}
@media (min-width: 600px) {
  .button span {
    display: initial;
  }
}
.button--icon {
  min-width: initial;
  padding: 0.5rem;
}
/******************************************/
/*コンテンツスタート*/
/******************************************/
.brand {
  font-weight: bold;
  font-size: 20px;
}
.site-header__start a {
  display: block;
}
.brand img {
  margin-top: 10px;
  display: block;
}
.brand img.mblogo {
  display: none;
}
@media screen and (max-width: 768px) {
  .brand img.mblogo {
    display: block;
    width: 60%;
  }
  .brand img.pclogo {
    display: none;
  }
}
.site-header {
  position: relative;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.site-header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 660px) {
  .site-header__wrapper {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (min-width: 768px) {
  .nav__wrapper {
    display: flex;
  }
}
@media (max-width: 768px) {
  .nav__wrapper {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    height: 100vh;
    z-index: 999;
    background-color: #fff;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  }
  .nav__wrapper.active {
    visibility: visible;
    opacity: 0.9;
    transform: translateY(0);
  }
}
.nav__item a {
  display: inline-block;
  position: relative;
  padding: 1rem 1rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
}
@media (max-width: 768px) {
  .nav__item a {
    color: #000;
    border: 1px solid #000;
    margin-bottom: 10px;
    width: 80%;
  }
  .nav__item {
    text-align: center;
  }
}
.nav__item a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #bdb76b;
  animation: flow 0.2s linear;
}
@keyframes flow {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.nav__toggle {
  display: none;
  border: 0;
  padding: 0;
  background: transparent;
}
.nav_toggle img {
  display: none;
}
@media (max-width: 659px) {
  .nav__toggle {
    display: block;
    position: absolute;
    right: 2.5rem;
    top: 2.5rem;
  }
  .nav__toggle img {
    display: block;
    width: 50px;
    height: 50px;
  }
}
/***************scroll****************/
.scr_design::-webkit-scrollbar {
  width: 10px;
}
.scr_design::-webkit-scrollbar-track {
  background-color: #fff;
}
.scr_design::-webkit-scrollbar-thumb {
  background: #bdb76b;
}
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background-color: #fff;
}
::-webkit-scrollbar-thumb {
  background: #bdb76b;
}
/***************section : top-img*****************/
.main-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 100px;
}
.section-content {
  position: relative;
}
.desktop-image {
  width: 100%;
  height: auto;
  display: block;
}
.mobile-image {
  display: none;
}
/* Media Queries */
@media screen and (max-width: 768px) {
  .main-section {
    margin-top: 150px;
  }
  .desktop-image {
    display: none;
  }
  .mobile-image {
    display: block;
    width: 100%;
  }
}
/**********************section:statement***********************/
.statement {
  width: 100%;
  height: auto;
}
.statement-content {
  text-align: center;
  width: 80%;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 50px;
  box-sizing: border-box;
}
.statement-content h1 {
  color: #00b0f0;
  font-size: 3em;
  font-weight: 900;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 30px;
}
.statement-content h2 {
  color: black;
  font-size: 3em;
  font-weight: 900;
  border-bottom: 10px solid#f8fbf8;
  display: inline-block;
  margin-bottom: 30px;
  font-family: "Zen Old Mincho", serif;
}
.statement-content h3 img.intro {
  width: 80%;
}
.statement-content h3 {
  margin-bottom: 30px;
}
.statement-content p {
  font-size: 1.3em;
  text-align: left;
  line-height: 2;
  font-family: "Zen Old Mincho", serif;
  margin-bottom: 30px;
}
/* Media Queries */
@media screen and (max-width: 768px) {
  .statement-content {
    width: 80%;
  }
  .statement-content h1 {
    font-size: 2.5em;
  }
  .statement-content h3 img.intro {
    width: 100%;
  }
  .statement-content h2 {
    font-size: 2em;
  }
  .statement-content p {
    font-size: 1.3em;
  }
}
/**********************section:policy**********************/
/********************section:profile***********************/
.to-profile {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.promise_cards {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
}
.statement-content .mobile_ch {
  display: none;
}
.cards {
  width: 100%;
  height: auto;
}
.sc_cards {
  text-align: center;
  width: 90%;
  margin: 0 auto;
  margin-top: 80px;
  margin-bottom: 30px;
  box-sizing: border-box;
}
.promise_cards img {
  width: 100%; /*33.333% 画面幅が768px以上の場合は1行目は3枚横並び */
  box-sizing: border-box;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .sc_cards {
    width: 90%;
  }
  .promise_cards img {
    display: none; /* 画面幅が768px以下の場合は全て縦に並べる */
  }
  .statement-content .mobile_ch {
    display: block;
  }
  .sc_cards h2 img {
    width: 100%;
  }
}
/************************section:challenge***************************/
.challenge_sec {
  width: 100%;
  height: auto;
  /*background-image:url('../assets/okanemasa_bk.png');*/
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  bottom: 30px;
}
.challenge_box {
  text-align: center;
  width: 100%;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 50px;
  box-sizing: border-box;
}
.challenge_box h2 {
  margin-top: 30px;
  margin-bottom: 10px;
}
.challenge_cards {
  width: 100%;
  display: flex;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.challenge_cards img {
  width: 80%;
  display: block;
  margin: auto;
  z-index: 2;
  margin-bottom: 30px; /* 適切な隙間を設定してください */
}
.challenge_box .mobile_ch {
  display: none;
}
@media screen and (max-width: 768px) {
  .challenge_box {
    width: 90%;
  }
  .challenge_box h2 img {
    width: 100%;
  }
  .challenge_box .mobile_ch {
    display: block;
    display: flex;
    flex-direction: column;
  }
  .mobile_ch img {
    width: 100%;
    margin-bottom: 30px;
  }
  .challenge_cards {
    display: none;
  }
}
/*********************section:activities***********************/
#latest-info {
  width: 100%;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 20px;
  max-height: 400px;
  overflow-y: auto;
}
.latest-info-table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  margin-bottom: 20px;
  border-spacing: 20px;
}
.latest-info-table th,
.latest-info-table td {
  text-align: left;
  padding: 10px;
}
.latest-info-table th:first-child,
.latest-info-table td:first-child {
  width: 20%;
}
.latest-info-table td:nth-child(2) {
  background-color: none;
  color: #ffffff;
  border-radius: 0px;
  width: 15%;
}
@media screen and (max-width: 768px) {
  .latest-info-table th,
  .latest-info-table td {
    display: block;
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
  }
  .latest-info-table th:first-child,
  .latest-info-table td:first-child {
    width: 95%;
  }
  .latest-info-table td:nth-child(2) {
    background-color: #00b0f0;
    color: #ffffff;
    border-radius: 15px;
    width: 95%;
  }
}
.latest-info-table th:first-child,
.latest-info-table td:first-child {
  /*border-bottom: 1px solid #ccc;*/
}
/*********************section:updates**************************/
/***********************secion:footer*************************/
#footer {
  width: 100%;
}
.footer {
  background: #bdb76b;
  background-size: cover;
  color: white;
  padding: 50px 0;
  text-align: center;
  height: auto;
}
.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__left,
.footer__right {
  width: 50%;
}
.footer__left h2 img {
  width: 500px;
}
.footer__right h2 {
  font-size: 2rem;
  font-family: "Zen Old Mincho", serif;
  margin-bottom: 30px;
  font-weight: 900;
}
.footer__right .sns-link img {
  width: 45%;
}
.credit p {
  font-family: "Zen Old Mincho", serif;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .footer__content {
    flex-direction: column;
    align-items: center;
  }
  .footer__left,
  .footer__right {
    width: 100%;
    margin-top: 20px;
  }
}
.sns {
  display: flex;
  padding: 10px;
  margin: 0 auto;
  margin-top: 30px;
  width: 80%;
}
.sns a {
  display: block;
  width: 100%;
  margin: 5px;
}
.sns a img {
  width: 100%;
  display: block;
}
.credit {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .footer {
    padding: 20px 10px;
  }
  .footer__left h2 img {
    width: 80%;
  }
  .footer__content {
    flex-direction: column;
    align-items: center;
  }
  .footer__left,
  .footer__right {
    width: 100%;
  }
  .footer__right {
    margin-top: 10px;
  }
  .sns-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .sns {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .sns a img {
    padding: 5px;
  }
}
/***************************profile page : introduction*****************************/
.introduction {
  width: 100%;
  height: auto;
  padding: 30px 0;
}
.intro-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  /*gap:50px;*/
}
.intro_left {
  width: 0%; /* Updated: Adjust the width as needed */
  box-sizing: border-box;
}
.intro_left img {
  width: 100%;
}
.intro_right {
  width: 100%; /* Updated: Adjust the width as needed */
  box-sizing: border-box;
}
.intro_right h2 {
  background: url(../assets/gradation_blue.jpg);
  color: white;
  padding: 10px;
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-family: "Zen Old Mincho", serif;
}
.intro_right p {
  font-size: 1.5rem;
  line-height: 1.5em;
  font-family: "Zen Old Mincho", serif;
}
.intro_right p span {
  font-size: 3rem;
  font-weight: 900;
  margin-right: 30px;
  font-family: "Zen Old Mincho", serif;
}
/* Media Query for screens with a maximum width of 768px */
@media (max-width: 768px) {
  .intro-wrapper {
    flex-direction: column; /* Stack elements vertically on small screens */
  }
  .intro_left,
  .intro_right {
    width: 100%; /* Full width for both intro_left and intro_right on small screens */
  }
}
/******************************section:contact********************************/
section.contact {
  width: 80%;
  margin: auto;
  padding: 50px 0;
  background-color: #fff;
}
.Form {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
}
.Form h2 {
  color: black;
  font-size: 3em;
  font-weight: 900;
  border-bottom: 10px solid #aadfe7;
  display: inline-block;
  margin-bottom: 30px;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 768px) {
  .Form h2 {
    font-size: 2rem;
    font-family: "Zen Old Mincho", serif;
  }
  .Form p {
    line-height: 2em;
    font-family: "Zen Old Mincho", serif;
  }
}
.Form-Item-Select {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 100%;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .Form {
    margin-top: 0px;
    max-width: 100%;
  }
}
.Form-Item {
  border-top: 1px solid #ddd;
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  margin-top: 30px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
}
.Form-Item:nth-child(5) {
  /* border-bottom: 1px solid #ddd;*/
}
.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
}
.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
@media screen and (max-width: 768px) {
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}
.Form-Item-Label-Required {
  border-radius: 0px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 10px;
  width: 100%;
  margin-bottom: 10px;
  display: inline-block;
  text-align: center;
  background: url(../assets/gradation_blue.jpg);
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
}
.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 100%;
  background: #eaedf2;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 100%;
  background: #eaedf2;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Btn {
  border-radius: 10px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 60%;
  display: block;
  letter-spacing: 0.05em;
  background: #fff;
  color: #00b0f0;
  font-family: "Zen Old Mincho", serif;
  font-weight: bold;
  font-size: 20px;
  border: 1px solid #00b0f0;
  transition: all 0.3s;
}
.Form-Btn:hover {
  background: url(../assets/gradation_blue.jpg);
  color: #fff;
}
@media screen and (max-width: 768px) {
  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 80%;
    font-size: 20px;
  }
}
/********追加25/5/13*********/
/*policy*/
.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
/*news area*/
#news_wrapper {
  width: 100%;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 30px;
}
#news_topics {
  width: 90%;
  display: flex;
  gap: 20px;
  margin: 0 auto;
}
.activities {
  color: #7fbfff;
}
#news_topics .left-content {
  flex: 7;
}
#news_topics .right-content {
  flex: 3;
}
#news_topics .right-content a {
  display: block;
  width: 100%;
}
#news_topics .right-content img {
  width: 100%;
  display: block;
  margin-bottom: 10px;
}
#news_topics .report {
  margin-top: 30px;
}
#news_topics .report a {
  display: block;
  margin: 0 auto;
  text-align: center;
  width: 300px;
  padding: 15px;
  background: #bdb76b;
  color: #fff;
}
#news_topics .right-content a {
  display: inline;
}
#news_topics h2 {
  background: #bdb76b;
  color: white;
  padding: 20px;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 20px;
}
#news_table {
  width: 100%;
  display: block;
  overflow-y: scroll;
  height: calc(100vh / 2);
  border-collapse: collapse;
}
#news_table tr {
  border-bottom: 1px dashed #000;
}
#news_table td {
  padding: 10px;
  vertical-align: top;
}
#news_table img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  margin-right: 5px;
}
#news_table h3 {
  color: #bdb76b;
  margin: 0;
  display: inline-block;
  font-size: 18px;
  padding: 10px;
}
#news_table p {
  font-weight: bold;
  margin: 5px 0;
}
@media screen and (max-width: 767px) {
  #news_topics {
    flex-direction: column;
  }
  #news_topics .right-content {
    order: -1;
  }
  #news_table img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 10px;
    margin-right: 5px;
  }
  #news_table tr {
    border-bottom: 1px dashed #000;
    word-break: break-all;
  }
}
/*updates area*/
#updates {
  width: 100%;
  height: auto;
  background: url(assets/footer_bk.svg);
  background-attachment: fixed;
  background-size: cover;
  padding-bottom: 30px;
}
#updates h2 img.pc_updates {
  max-width: 30%;
  margin-top: 30px;
  margin-left: 50px;
  margin-bottom: 30px;
}
#updates h2 img.mobile_updates {
  display: none;
}
.container {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.card {
  width: calc(33% - 20px);
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.card img {
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
}
.card-content {
  padding: 15px;
}
.card-content h3 {
  margin: 10px 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
}
.card-content p {
  color: #666;
  font-family: "Zen Old Mincho", serif;
  margin-bottom: 10px;
  line-height: 2em;
}
.btn {
  display: inline-block;
  padding: 10px 20px;
  background: url(assets/gradation_blue.jpg);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-family: "Zen Old Mincho", serif;
  transition: background-color 0.3s ease;
}
.btn:hover {
  background-color: #005688;
}
@media (max-width: 768px) {
  .card {
    width: 100%;
  }
  #updates h2 img.pc_updates {
    display: none;
  }
  #updates h2 img.mobile_updates {
    width: 50%;
    display: block;
    margin: 0 auto;
    padding: 20px 0;
  }
}
/*profiles*/
.my_profile-section {
  display: flex;
  width: 100%;
  height: auto;
  box-sizing: border-box;
}
.my_profile-left {
  flex: 2;
  background-color: #ffffff;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.my_profile-image {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
  object-fit: cover;
}

.my_profile-text {
  line-height: 1.6;
  font-size: 16px;
}

.profile_font {
  font-weight: bold;
  color: #bdb76b;
  display: block;
}
.my_profile-right {
  flex: 1;
  box-sizing: border-box;
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
  .my_profile-section {
    flex-direction: column;
    height: auto;
  }
  .my_profile-left,
  .my_profile-right {
    flex: none;
    width: 100%;
    height: auto;
  }
  .my_profile-right {
    min-height: 150px;
  }
}
/*contact*/
#contact-section {
  background-color: rgba(189, 183, 107, 0.05);
  text-align: center;
  padding: 50px 20px;
  width: 100%;
}
#contact-section h2 {
  font-weight: bold;
  font-size: 2em;
  margin-bottom: 30px;
  font-family: "Zen Old Mincho", serif;
}
#contact-section p {
  font-size: 1em;
  margin: 10px 0;
  line-height: 1.6;
  font-family: "Zen Old Mincho", serif;
}
.contact-email-box {
  background-color: rgba(189, 183, 107, 0.3); /* #BDB76B の薄い色 */
  display: inline-block;
  padding: 50px 30px;
  border-radius: 10px;
  width: 80%;
  line-height: 30px;
  margin: 20px 0;
}
.contact-email {
  font-size: 1.2em;
  font-weight: bold;
  color: #333;
}
@media (max-width: 768px) {
  .contact-section {
    padding: 40px 10px;
  }
  .contact-section h2 {
    font-size: 1.5em;
  }
  .contact-email-box {
    padding: 15px 20px;
    width: 100%;
  }
  .contact-email {
    font-size: 1em;
  }
}
@media (max-width: 480px) {
  .contact-section h2 {
    font-size: 1.3em;
  }
  .contact-section p {
    font-size: 0.95em;
  }
  .contact-email {
    font-size: 0.95em;
  }
}
