@charset "UTF-8";
/*

Author: 抹茶あんこ
Author URI: https://maccha-anco.com/

*/
:root {
  --primary-color: #00b783;
  --secondary-color: #00856f;
  --text-color: #2c5036;
  --light-bg: #f8faf8;
  --accent-color: #f52a0f;
}

.center {
  text-align: center !important;
}

.left {
  text-align: left !important;
}

.right {
  text-align: right !important;
}

h1, h2, h3 {
  font-family: "Meiryo", serif;
  font-weight: normal;
}

/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  opacity: 1;
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: #FFF;
  text-align: center;
  color: #fff;
  left: 0;
  top: 0;
  transition: all 0.8s ease;
}

/* Loading画像中央配置　*/
#splash_logo {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 400px;
  height: 320px;
  transition: all 0.8s ease;
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 400px;
}
@media screen and (max-width: 1023px) {
    #splash_logo img {
        width: 80%;
    }
}
#splash.fadein,
#splash_logo.fadein {
  visibility: visible;
  opacity: 1;
}

#splash_logo.fadein img {
  /* animation:3s linear infinite rotation1; */
}

#splash.fadein.fadeout,
#splash_logo.fadein.fadeout {
  visibility: hidden;
  opacity: 0;
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.eachTextAnime span {
  opacity: 0;
}

.eachTextAnime span {
  animation: text_anime_on 1s ease-out forwards;
}

.eachTextAnime span {
  opacity: 0;
  animation: text_anime_on 1s ease-out forwards;
  animation-delay: 1s;
}



.ani-fadeIn.animated {
  opacity: 1 !important;
  transition: opacity 3s cubic-bezier(0.155, 0.91, 0.695, 0.95);
}

.ani-fadeInUp {
  position: relative;
  transform: translate(0, 140px);
  transition: opacity 1s cubic-bezier(0.155, 0.91, 0.695, 0.95), transform 1s cubic-bezier(0.155, 0.91, 0.695, 0.95);
}

.ani-fadeInUp.animated {
  opacity: 1 !important;
  transform: translate(0, 0);
}

.ani-fadeInRight {
  position: relative;
  transform: translate(140px, 0);
  transition: opacity 1s cubic-bezier(0.155, 0.91, 0.695, 0.95), transform 1s cubic-bezier(0.155, 0.91, 0.695, 0.95);
}

.ani-fadeInRight.animated {
  opacity: 1 !important;
  transform: translate(0, 0);
}

.ani-fadeInLeft {
  position: relative;
  transform: translate(-140px, 0);
  transition: opacity 1s cubic-bezier(0.155, 0.91, 0.695, 0.95), transform 1s cubic-bezier(0.155, 0.91, 0.695, 0.95);
}

.ani-fadeInLeft.animated {
  opacity: 1 !important;
  transform: translate(0, 0);
}

/* 泡アニメーション用のスタイル */
.bubble-container {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.bubble {
  --violet: violet;
  --blue: #0ff;
  position: absolute;
  bottom: -100px;
  background: rgba(206, 182, 88, 0.2);
  box-shadow: inset 0 0 50px #fff, inset 20px 0 60px var(--violet), inset -20px 0 60px var(--blue), inset 20px 0 300px var(--violet), inset -20px 0 300px var(--blue), 0 0 50px #fff, -10px 0 60px var(--violet), 10px 0 60px var(--blue);
  border-radius: 50%;
  animation: rise 10s infinite ease-in;
  opacity: 0;
}

.bubble:nth-child(1) {
  left: 10%;
  width: 80px;
  height: 80px;
  animation-duration: 8s;
  animation-delay: 1s;
}

.bubble:nth-child(2) {
  left: 20%;
  width: 60px;
  height: 60px;
  animation-duration: 10s;
  animation-delay: 2s;
}

.bubble:nth-child(3) {
  left: 35%;
  width: 40px;
  height: 40px;
  animation-duration: 7s;
  animation-delay: 3s;
}

.bubble:nth-child(4) {
  left: 50%;
  width: 70px;
  height: 70px;
  animation-duration: 11s;
  animation-delay: 4s;
}

.bubble:nth-child(5) {
  left: 65%;
  width: 50px;
  height: 50px;
  animation-duration: 9s;
  animation-delay: 2s;
}

.bubble:nth-child(6) {
  left: 80%;
  width: 45px;
  height: 45px;
  animation-duration: 12s;
  animation-delay: 1s;
}

.bubble:nth-child(7) {
  left: 90%;
  width: 55px;
  height: 55px;
  animation-duration: 8s;
  animation-delay: 3s;
}

/* ローディング画面のスタイル */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loading.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  text-align: center;
  position: relative;
  width: 200px;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

.loading-text {
  font-size: 1.2rem;
  color: var(--primary-color);
  position: absolute;
  width: 200px;
  text-align: center;
  top: 60px;
  left: 0;
  right: 0;
  margin: auto;
}

.loading-text span {
  display: inline-block;
  animation: bounce 1.4s infinite;
  opacity: 1;
  color: var(--primary-color);
}

.loading-text span:nth-child(2) {
  animation-delay: 0.1s;
}

.loading-text span:nth-child(3) {
  animation-delay: 0.2s;
}

.loading-text span:nth-child(4) {
  animation-delay: 0.3s;
}

.loading-text span:nth-child(5) {
  animation-delay: 0.4s;
}

.loading-text span:nth-child(6) {
  animation-delay: 0.5s;
}

.loading-text span:nth-child(7) {
  animation-delay: 0.6s;
}

.loading-text span:nth-child(8) {
  animation-delay: 0.7s;
}

.loading-text span:nth-child(9) {
  animation-delay: 0.8s;
}

.loading-text span:nth-child(10) {
  animation-delay: 0.9s;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-10px);
    opacity: 1;
  }
}
.ani-CharAnimation {
  text-align: center;
  font-size: 2em;
}

.ani-CharAnimation span {
  margin-right: 0.3em;
}

.ani-CharAnimation .char {
  opacity: 0;
  transform: translateY(50px) rotate(30deg);
  display: inline-block;
}

.ani-CharAnimation.animated .char {
  animation: charAnimation 0.5s ease forwards;
}

.ani-CharAnimation.animated .char:nth-child(1) {
  animation-delay: 0.1s;
}

.ani-CharAnimation.animated .char:nth-child(2) {
  animation-delay: 0.2s;
}

.ani-CharAnimation.animated .char:nth-child(3) {
  animation-delay: 0.3s;
}

.ani-CharAnimation.animated .char:nth-child(4) {
  animation-delay: 0.4s;
}

.ani-CharAnimation.animated .char:nth-child(5) {
  animation-delay: 0.5s;
}

.ani-CharAnimation.animated .char:nth-child(6) {
  animation-delay: 0.6s;
}

.ani-CharAnimation.animated .char:nth-child(7) {
  animation-delay: 0.7s;
}

.ani-CharAnimation.animated .char:nth-child(8) {
  animation-delay: 0.8s;
}

.ani-CharAnimation.animated .char:nth-child(9) {
  animation-delay: 0.9s;
}

.ani-CharAnimation.animated .char:nth-child(10) {
  animation-delay: 1s;
}

.ani-CharAnimation.animated .char:nth-child(11) {
  animation-delay: 1.1s;
}

.ani-CharAnimation.animated .char:nth-child(12) {
  animation-delay: 1.2s;
}

.ani-CharAnimation.animated .char:nth-child(13) {
  animation-delay: 1.3s;
}

.ani-CharAnimation.animated .char:nth-child(14) {
  animation-delay: 1.4s;
}

.ani-CharAnimation.animated .char:nth-child(15) {
  animation-delay: 1.5s;
}

.ani-CharAnimation.animated .char:nth-child(16) {
  animation-delay: 1.6s;
}

.ani-CharAnimation.animated .char:nth-child(17) {
  animation-delay: 1.7s;
}

.ani-CharAnimation.animated .char:nth-child(18) {
  animation-delay: 1.8s;
}

.ani-CharAnimation.animated .char:nth-child(19) {
  animation-delay: 1.9s;
}

.ani-CharAnimation.animated .char:nth-child(20) {
  animation-delay: 2s;
}

@keyframes charAnimation {
  0% {
    opacity: 0;
    transform: translateY(50px) rotate(30deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}
.text-rotate-container {
  position: relative;
  height: 6rem;
  overflow: hidden;
}

.text-rotate {
  position: absolute;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  opacity: 0;
  animation: rotateText 9s linear infinite;
  width: 100%;
  left: 0;
}

.text-rotate:nth-child(2) {
  animation-delay: 3s;
}

.text-rotate:nth-child(3) {
  animation-delay: 6s;
}

@keyframes rotateText {
  0%, 20% {
    opacity: 0;
    transform: translateY(50px);
  }
  25%, 45% {
    opacity: 1;
    transform: translateY(0);
  }
  50%, 100% {
    opacity: 0;
    transform: translateY(-50px);
  }
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
  .text-rotate {
    font-size: 1.5rem;
  }
  .ani-fadeIn {
    opacity: 1;
  }
  .ani-fadeIn.animated {
    opacity: 1 !important;
    transition: opacity 3s cubic-bezier(0.155, 0.91, 0.695, 0.95);
  }
  .ani-fadeInUp {
    position: relative;
    opacity: 1;
    transform: translate(0, 0);
    transition: opacity 1s cubic-bezier(0.155, 0.91, 0.695, 0.95), transform 1s cubic-bezier(0.155, 0.91, 0.695, 0.95);
  }
  .ani-fadeInUp.animated {
    opacity: 1 !important;
    transform: translate(0, 0);
  }
  .ani-fadeInRight {
    position: relative;
    transform: translate(0, 0);
    transition: opacity 1s cubic-bezier(0.155, 0.91, 0.695, 0.95), transform 1s cubic-bezier(0.155, 0.91, 0.695, 0.95);
    opacity: 1;
  }
  .ani-fadeInRight.animated {
    opacity: 1 !important;
    transform: translate(0, 0);
  }
  .ani-fadeInLeft {
    position: relative;
    transform: translate(0, 0);
    transition: opacity 1s cubic-bezier(0.155, 0.91, 0.695, 0.95), transform 1s cubic-bezier(0.155, 0.91, 0.695, 0.95);
    opacity: 1;
  }
  .ani-fadeInLeft.animated {
    opacity: 1 !important;
    transform: translate(0, 0);
  }
}
img {
  max-width: 100%;
  height: auto;
}

img.border-round {
  border-radius: 1rem;
}

.mt-2 {
  margin-top: 2rem !important;
}

.toparea4_p01 {
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 0 0 1em 0;
}

.sp_big {
  font-size: 1.5rem;
  font-weight: 900;
  color: teal;
}

.p_st_01 {
  font-size: 2rem;
  font-weight: 900;
  background: rgb(220, 138, 96);
  color: #FFF;
  padding: 0.5rem;
  max-width: 800px;
  margin: 0 auto;
}

#main {
  position: relative;
}

#main .ab_img {
  position: absolute;
  width: 30px;
  height: 30px;
  z-index: -1;
}

.catch-phrase {
  margin-bottom: 2rem;
}

.check li {
  font-size: 1.2rem;
  font-weight: 900;
  list-style: none;
  margin: 0.5rem 0;
}
.check li i {
  margin-right: 1rem;
}

.check2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 2rem auto;
  gap: 1rem;
}
.check2 li {
  width: 28%;
  font-size: 1.2rem;
  font-weight: 900;
  list-style: none;
  margin: 0.5rem 0;
  border: 2px solid yellowgreen;
  border-radius: 1rem;
  padding: 0.5rem 1rem;
}
.check2 li i {
  margin-right: 1rem;
}

table {
  margin-bottom: 20px;
  max-width: 100%;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

table tr:nth-of-type(2n+1) {
  background-color: #DDD;
}

table:not(.has-border-color) :where(th, td) {
  border: 1px solid #f0f0f0;
}

table.cal {
  margin-bottom: 20px;
  max-width: 100%;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
table.cal th {
  background: #64b066;
  color: white;
  position: relative;
  padding: 0.5em;
  text-align: center;
  font-weight: 500;
}
table.cal td {
  background: #FFF;
  position: relative;
  padding: 0.5em;
  text-align: center;
}
table.cal td:first-child {
  background: #64b066;
  color: white;
  font-weight: 500;
}

.wrap_box {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.wrap_box2 {
  max-width: 980px;
  width: 100%;
  padding: 5px 20px;
  margin: 0 auto;
}

.toparea4_box_text {
  background: #75a976;
  color: #FFF;
  padding: 1rem;
  border-radius: 1rem;
  margin: 1rem auto;
  font-size: 1.5rem;
  max-width: 600px;
  font-weight: 900;
  width: 80%;
}

.toparea4_box_text2 {
  background: #FFF;
  padding: 2rem;
  border-radius: 1rem;
  margin: 1rem auto;
  font-size: 1.2rem;
  max-width: 800px;
  width: 90%;
  text-align: left;
}

.about_st01 dt,
.about_st01 dd {
  padding: 10px;
  margin: 0;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}

.about_st01 dt {
  font-size: 1.6em;
  color: #2f4430;
}

.about_st01 dt span {
  font-size: 1.5em;
  color: #75a976;
  margin-right: 0.1em;
}

.about_st01 dd {
  border-bottom: 2px dashed #ccc;
  padding: 0 20px 10px 20px;
}

ul.about_rokusou_a {
  margin: 0 0 2em 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

ul.about_rokusou_a li {
  list-style: none;
  margin: 0 2%;
  width: 21%;
  text-align: center;
}

.s_text_01 {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 900;
  margin: 0 0 1em 0;
}

.check-container {
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
  max-width: 1000px;
  background: #f7f4e9;
  border-radius: 1rem;
}

.check-container2 {
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
  max-width: 800px;
  background: #f7f4e9;
  border-radius: 1rem;
}

.check-container3_wrap {
  background: #FFF;
  margin-top: 5rem;
  padding: 2rem;
}

.check-container3 {
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
  max-width: 1280px;
}

.check_img {
  width: 30%;
  position: relative;
}
.check_img img {
  position: absolute;
  left: 2em;
}

.check_text {
  width: 70%;
  text-align: left !important;
  background: #FFF;
  border-radius: 1rem;
  padding: 2rem 2rem 2rem 4rem;
}

.check_img2 {
  width: 50%;
}
.check_img2 img {
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 60%;
}

.check_text2 {
  width: 50%;
  text-align: left !important;
}

.check li {
  font-size: 1.2rem;
  font-weight: 900;
  list-style: none;
  margin: 0.5rem 0;
}
.check li i {
  margin-right: 1rem;
}

.check2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 2rem auto;
  gap: 1rem;
}
.check2 li {
  font-size: 1.2rem;
  font-weight: 900;
  list-style: none;
  margin: 0.5rem 0;
  width: 28%;
  border: 2px solid yellowgreen;
  border-radius: 1rem;
  padding: 0.5rem 1rem;
}
.check2 li i {
  margin-right: 1rem;
}

table {
  margin-bottom: 20px;
  max-width: 100%;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

table.cal {
  margin-bottom: 20px;
  max-width: 100%;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
table.cal th {
  background: #64b066;
  color: white;
  position: relative;
  padding: 0.5em;
  text-align: center;
  font-weight: 500;
}
table.cal td {
  background: #FFF;
  position: relative;
  padding: 0.5em;
  text-align: center;
}
table.cal td:first-child {
  background: #64b066;
  color: white;
  font-weight: 500;
}

.wrap_box {
  width: 100%;
  margin: 0 auto;
  max-width: 900px;
}

.wrap_box2 {
  width: 100%;
  margin: 0 auto;
  max-width: 980px;
  padding: 5px 1rem;
}

.top_sns {
  text-align: right;
  margin-top: 0.8em;
  justify-content: flex-end;
  padding-right: 20px;
}

.top_sns a.inq, .top_sns a.inq2 {
  display: inline-block;
  position: fixed;
  margin-left: 0.8em;
  border-radius: 8px 0 0 8px;
  background: #64b066;
  text-decoration: none;
  text-align: center;
  color: #fff;
  font-size: 0.9em;
  font-weight: 600;
  height: 130px;
  width: 40px;
  line-height: 40px;
  right: 0;
  bottom: 4em;
  z-index: 210;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-align: center;
}

.top_sns a.inq {
  right: 0;
  bottom: 300px;
}

.top_sns a.inq2 {
  right: 0;
  bottom: 150px;
}

.top_sns a.inq i, .top_sns a.inq2 i {
  font-size: 1.3em;
  margin-bottom: 0.5em;
}

.ab_img {
  position: absolute;
  width: 50px;
  height: 50px;
  z-index: -1;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 5%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  box-shadow: 0 2px 15px rgba(0, 104, 183, 0.1);
}

.path-animation-section {
  padding: 100px 0;
  overflow: hidden;
}

.voice-container {
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
  max-width: 1000px;
  background: #f7f4e9;
  border-radius: 1rem;
}

.toparea3_box2 {
  width: 50%;
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  text-align: left;
}

.toparea3 div.toparea3_box2 {
  text-align: left;
}

.toparea3 div.toparea3_box2 .splide__slide {
  text-align: left;
}

.toparea3_box3_img {
  width: 50%;
  max-width: 400px;
  margin: 0 auto;
}
.toparea3_box3_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.toparea3_box3 p {
  text-align: left;
  padding: 2rem;
  background: #FFF;
  border-radius: 1rem;
}

.youtube {
  padding: 2rem;
}

.review01, .review02 {
  position: relative;
  padding: 15px;
  margin: 20px 0;
  border-radius: 8px;
  background: #FFF;
}

.review01:before, .review02:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}

.review01:before {
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 10px 10px 10px 0;
  border-color: transparent #FFF transparent transparent;
}

.review02:before {
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #FFF;
}

@media (min-width: 769px) and (max-width: 1280px) {
  .catch-main {
    font-size: 2.8rem;
  }
  .text-rotate {
    font-size: 1.5rem;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .logo {
    font-size: 0.7rem;
    text-align: left;
    padding-left: 1rem;
  }
  .check-container {
    padding: 0.5rem;
  }
  .check-container2 {
    padding: 0.5rem;
  }
  .check-container3 {
    padding: 0.5rem;
  }
  .check-container3_wrap {
    margin-top: 3rem;
    padding: 0.5rem;
  }
  .check_img,
  .check_img2 {
    width: 100%;
    height: auto;
    position: relative;
  }
  .check_img2 {
    order: 1;
  }
  .check_text2 {
    order: 2;
  }
  .check_text,
  .check_text2 {
    width: 100%;
    position: relative;
    padding: 1rem;
  }
  .check_img img {
    position: absolute;
    left: 0;
    right: 0;
    width: 40%;
    top: 2em;
    margin-top: -2em;
  }
  .check li {
    font-size: 1.1rem;
    font-weight: 900;
    list-style: none;
    margin: 0.5rem 0;
  }
  ul.check,
  ul.check2 {
    padding-left: 0;
  }
  .check2 li {
    font-size: 0.9rem;
    font-weight: 900;
    list-style: none;
    margin: 0;
    width: 44%;
    border: 2px solid yellowgreen;
    border-radius: 0.5rem;
    padding: 0.2rem 0.5rem;
  }
  .top_sns {
    text-align: center;
    margin-top: 0.8em;
    justify-content: flex-end;
    padding-right: 20px;
  }
  .top_sns a.inq, .top_sns a.inq2 {
    display: inline-block;
    position: fixed;
    margin-left: 0;
    border-radius: 0;
    background: #64b066;
    text-decoration: none;
    text-align: center;
    color: #fff;
    font-size: 0.9em;
    font-weight: 600;
    height: 40px;
    width: 40%;
    line-height: 40px;
    right: 0;
    bottom: 0;
    z-index: 210;
    -ms-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
    text-align: center;
  }
  .top_sns a.inq {
    left: 1%;
    bottom: 0;
  }
  .top_sns a.inq2 {
    right: 17%;
    bottom: 0;
  }
  .top_sns a.inq i, .top_sns a.inq2 i {
    font-size: 1.3em;
    margin-bottom: 0;
    margin-right: 0.5em;
  }
  .content, .main, .sidebar, .wrap {
    width: 100%;
    padding: 0 3px;
  }
  .toparea4_box_text {
    font-size: 1.1rem;
  }
  .about_st01 dt {
    font-size: 1.2em;
    color: #2f4430;
  }
  .about_st01 dt span {
    font-size: 1.2em;
    color: #75a976;
    margin-right: 0.1em;
  }
  .path-animation-section {
    padding: 20px 0;
  }
  .p_st_01 {
    font-size: 1.2rem;
    padding: 0.5rem;
  }
  .youtube {
    padding: 1rem;
  }
  .toparea3_box2 {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 1rem;
    text-align: left;
  }
  .section-heading {
    padding: 1rem 0;
    position: relative;
    overflow: hidden;
  }
  .voice-container {
    padding: 0.5rem;
  }
}