@charset "UTF-8";
/* ============common
=============================================== */
html {
  font-size: 100%;
}

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

main {
  background-color: #FFBCBC;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

a:hover {
  opacity: 0.6;
}

ul,
ol {
  list-style-type: none;
}

.wrapper {
  max-width: 412px;
  margin: 0 auto;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

body {
  margin: 0 auto;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

/* ============ フォント関係
=============================================== */
.noto-sans-jp-400 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.noto-sans-jp-700 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

.zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.ranchers-regular {
  font-family: "Ranchers", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* ============costum.css
=============================================== */
/* =============  fade  ================ */
.js-fadeBottom {
  opacity: 0;
  visibility: hidden;
  transform: translateY(80px);
  transition: opacity 1.2s, visibility 1.2s, transform 1.8s;
}

.js-fadeBottom.scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.js-fadeTop {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-60px);
  transition: opacity 1s, visibility 1s, transform 1.8s;
}

.js-fadeTop.scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.js-fadeLeft {
  opacity: 0;
  visibility: hidden;
  transform: translateX(80px);
  transition: opacity 1s, visibility 1s, transform 1.8s;
}

.js-fadeLeft.scroll {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
}

.js-fadeRight {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-80px);
  transition: opacity 1s, visibility 1s, transform 1.8s;
}

.js-fadeRight.scroll {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
}

/* 動き */
/* 共通 */
.deco {
  display: block;
  position: absolute;
  /* 位置は自由に配置 */
  will-change: transform;
}

.deco-floatY {
  -webkit-animation: floatY 4s ease-in-out infinite;
          animation: floatY 4s ease-in-out infinite;
}

@-webkit-keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}
.deco-floatX {
  -webkit-animation: floatX 6s ease-in-out infinite;
          animation: floatX 6s ease-in-out infinite;
}

@-webkit-keyframes floatX {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes floatX {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(0);
  }
}
.deco-rotate {
  -webkit-animation: rotate 12s linear infinite;
          animation: rotate 12s linear infinite;
}

@-webkit-keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.deco-swing {
  transform-origin: top center;
  -webkit-animation: swing 3s ease-in-out infinite;
          animation: swing 3s ease-in-out infinite;
}

@-webkit-keyframes swing {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes swing {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.deco-swing2 {
  transform-origin: bottom center;
  -webkit-animation: swing2 3s ease-in-out infinite;
          animation: swing2 3s ease-in-out infinite;
}

@-webkit-keyframes swing2 {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes swing2 {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
/* ==========  index  ========== */
header {
  width: 100%;
  background-color: #fff;
  justify-content: center;
  -o-object-fit: cover;
     object-fit: cover;
}
header .clear {
  color: rgba(33, 33, 33, 0);
}
header .section-bg {
  position: relative;
  height: 55%;
}
header .header-bar {
  display: flex;
  justify-content: space-between;
}
header .header-bar a {
  width: 28%;
  max-width: 160px;
  height: auto;
  margin-left: 30px;
}
header .header-bar a img {
  width: 100%;
}
header picture {
  background-color: #FFBCBC;
}
header #top1 {
  display: block;
  width: 100%;
  /* 横幅いっぱい */
  height: calc(100% - 2px);
  /* 下1px分カット */
  -o-object-fit: cover;
     object-fit: cover;
  /* アスペクト比を維持 */
  -o-object-position: top;
     object-position: top;
  /* 上を基準にトリミング */
}
header h1 {
  color: #fff;
  font-size: 0.001rem;
  top: 40%;
  left: 18%;
  z-index: -100;
}
@media (max-width: 450px) {
  header h1 {
    font-size: 3rem;
    left: 4%;
  }
}

/* =============  h2-zone  ============= */
/* ======  black  ===== */
.h2-black {
  margin-top: 20px;
}
.h2-black h2 {
  background-color: #FE1AA7;
  color: #fff;
  border: 3px solid #ffffff;
  border-left: none;
  text-align: center;
  box-shadow: 3px 3px 0px #8A52FF;
  width: 320px;
  border-radius: 0 30px 30px 0;
  padding: 9px;
  font-size: 1.65rem;
  text-shadow: 0 0 10px rgba(243, 243, 243, 0.8);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}
@media (max-width: 450px) {
  .h2-black h2 {
    width: 230px;
    font-size: 1.3rem;
  }
}
.h2-black h3 {
  text-align: center;
  width: 300px;
  padding: 10px 5px;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 450px) {
  .h2-black h3 {
    width: 225px;
    font-size: 1.1rem;
  }
}

/* ======  main  ===== */
main {
  background-color: #FFBCBC;
}

/* =============  features  ============= */
#features {
  padding: 40px 0;
  background-color: #FFBCBC;
}
#features .item-area {
  flex-wrap: wrap;
  justify-content: space-evenly;
  max-width: 1200px;
  margin: 35px auto 0;
}
#features .item-area .item {
  flex-direction: column;
  background-color: #fff;
  color: #090909;
  width: 29%;
  padding: 15px 10px;
  margin-bottom: 45px;
  max-width: 385px;
  min-width: 350px;
  box-shadow: 0px 0px 6px #fd5ec0;
  border-radius: 20px;
}
#features .item-area .item .flex .number {
  font-size: 3.5rem;
  padding: 0;
  padding-left: 30px;
  /* text-shadow:2px 2px 0px rgba(116, 116, 116, 0.3); */
  font-family: "Ranchers", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #FE1AA7;
}
#features .item-area .item .flex h3 {
  display: block;
  margin: 0 auto;
  text-align: center;
  align-items: center;
  color: #000;
  font-family: "Ranchers", sans-serif;
  font-weight: 400;
  font-style: normal;
}
#features .item-area .item .flex h3 .sp-text {
  font-size: 2rem;
  color: #8A52FF;
  /* text-shadow: 3px 3px 2px rgba(118, 118, 118, 0.5); */
}
#features .item-area .item .flex #sp3,
#features .item-area .item .flex #sp4 {
  font-size: 1.75rem;
}
#features .item-area .item img {
  width: 100%;
}
#features .item-area .item p {
  padding: 12px 10px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* =============  Manager  ============= */
#manager {
  display: none;
  background-color: #D9D9D9;
  padding: 40px 0;
}
#manager h4 {
  text-align: center;
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  #manager h4 {
    font-size: 1.4rem;
    width: 340px;
    margin: 30px auto;
  }
}
#manager .mg-area {
  grid-template-columns: 30% 30%;
  margin: 20px auto;
  justify-content: center;
}
@media (max-width: 768px) {
  #manager .mg-area {
    grid-template-columns: 43% 43%;
  }
}
#manager p {
  text-align: center;
  padding: 50px 20px;
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  #manager p {
    font-size: 1.2rem;
  }
  #manager p br {
    display: none;
  }
}

/* =============  voice  ============= */
#voice {
  display: none;
  padding: 40px 0;
  background-color: #fff;
}
#voice .voice-area {
  display: flex;
  justify-content: space-evenly;
  margin: 60px auto 80px;
  flex-wrap: wrap;
}
#voice .voice-area .voice-item {
  width: 30%;
  max-width: 350px;
  min-width: 320px;
  margin: 30px auto;
}
#voice .voice-area .voice-item img {
  width: 100%;
}
#voice .voice-area .voice-item h4 {
  display: flex;
  justify-content: center;
  padding: 10px;
  background-color: #252525;
  color: #fff;
  font-size: 1.3rem;
}
#voice .voice-area .voice-item p {
  color: #030303;
  padding: 15px 12px;
  align-items: center;
  font-size: 1.2rem;
}
#voice .voice-area .voice-item a {
  display: flex;
  justify-content: center;
  padding: 10px;
  color: #1a1a1a;
  box-shadow: 3px 3px 5px rgba(90, 90, 90, 0.9);
  border: 1px solid #ffffff;
  color: #000;
  font-size: 1.3rem;
  background: linear-gradient(to top left, rgb(112, 254, 254), rgb(214, 85, 223));
  border-radius: 30px;
}

/* =============  liver faq  ============= */
#bgc-001 {
  background: linear-gradient(to top, rgb(207, 234, 255), rgb(252, 234, 253));
  border-radius: 30px 30px 0 0;
  z-index: 0;
}
#bgc-001 .bg-star {
  left: 5%;
  right: 5%;
  top: 5%;
  bottom: 10%;
  z-index: 0;
}

/* =============  liver  ============= */
#liver {
  padding: 40px 0;
  z-index: 10;
}
#liver .liver-area {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  width: 90%;
  margin: 35px auto 0;
  max-width: 1200px;
}
@media (max-width: 450px) {
  #liver .liver-area {
    flex-direction: column;
  }
}
#liver .liver-area .double-border {
  position: relative;
  display: inline-block;
  padding: 6px;
  background: #fff;
  border: 4px solid #ff80c0;
  border-radius: 12px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}
#liver .liver-area .double-border::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  border: 2px solid #fff;
  border-radius: 8px;
  pointer-events: none;
}
#liver .liver-area .liver-item {
  width: 27%;
  max-width: 340px;
  margin-bottom: 35px;
}
@media (max-width: 768px) {
  #liver .liver-area .liver-item {
    min-width: 330px;
    margin: 25px auto;
  }
}
@media (max-width: 450px) {
  #liver .liver-area .liver-item {
    width: 75%;
    margin: 25px auto;
  }
}
#liver .liver-area .liver-item img {
  width: 100%;
  border-radius: 6px;
}
#liver .liver-area .liver-item p {
  display: flex;
  justify-content: center;
  padding: 10px;
  margin-top: 20px;
  color: #1a1a1a;
  box-shadow: 3px 3px 5px rgba(90, 90, 90, 0.9);
  border: 3px solid #ffffff;
  color: #ffffff;
  font-size: 1.3rem;
  background: linear-gradient(to top left, rgb(112, 254, 254), rgb(214, 85, 223));
  border-radius: 30px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* =============  faq  ============= */
#faq {
  padding: 40px 0 60px;
  z-index: 10;
  position: relative;
}
#faq .faq {
  width: 100%;
  max-width: 600px;
  margin: 35px auto 0;
  z-index: 100;
}
@media (max-width: 768px) {
  #faq .faq {
    width: 90%;
  }
}
#faq .faq-item {
  border-bottom: 1px solid #ccc;
  padding: 20px 0 10px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}
#faq .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
}
#faq .faq-answer {
  display: none;
  padding: 10px 0;
  font-size: 16px;
  color: #555;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 1.9s ease, opacity 1.9s ease;
}
#faq .faq-arrow {
  transition: transform 0.3s ease;
}
#faq .faq-item.open .faq-answer {
  display: block;
  opacity: 1;
  max-height: 300px;
  /* Arbitrary large value for smooth expansion */
}
#faq .faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

/* =============  content-1  ============= */
#contact-1 {
  background-color: #d1d1d1;
  background-image: url(../img/contact1-bgi-main.png);
  background-size: cover;
}
#contact-1 .relative .clear {
  color: rgba(246, 246, 246, 0);
}
#contact-1 .relative .contact-text {
  display: flex;
  justify-content: center;
  margin: 20% auto 0px;
  padding: 30px 0 5px;
  color: #fff;
  text-align: center;
  font-size: 1.3rem;
}
@media (max-width: 768px) {
  #contact-1 .relative .contact-text {
    padding: 45px 0 10px;
    font-size: 1.2rem;
  }
}
@media (max-width: 450px) {
  #contact-1 .relative .contact-text {
    padding: 70px 0 10px;
    font-size: 1rem;
  }
}
#contact-1 .relative .btn-area {
  display: flex;
  justify-content: center;
  padding: 10px 0 20%;
}
@media (max-width: 768px) {
  #contact-1 .relative .btn-area {
    padding: 30px 0 25%;
    font-size: 1.1rem;
  }
}
@media (max-width: 450px) {
  #contact-1 .relative .btn-area {
    padding: 40px 0 32%;
    font-size: 1rem;
  }
}
#contact-1 .relative .btn-area .line-btn {
  margin: 20px auto;
  padding: 15px 25px;
  background-color: #FFAFE0;
  color: #000;
  border-radius: 35px;
  border: 4px solid #8A52FF;
  box-shadow: 3px 3px 5px rgba(33, 33, 33, 0.8);
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  #contact-1 .relative .btn-area .line-btn {
    padding: 15px 24px;
    font-size: 1.1rem;
  }
}
@media (max-width: 450px) {
  #contact-1 .relative .btn-area .line-btn {
    font-size: 1rem;
  }
}
#contact-1 .relative .img-top {
  width: 100%;
  top: 0;
}
#contact-1 .relative .img-bottom {
  width: 100%;
  bottom: -5px;
}
#contact-1 .relative .img-icon1 {
  width: 7%;
  height: auto;
  bottom: 40%;
  right: 11%;
}
@media (max-width: 768px) {
  #contact-1 .relative .img-icon1 {
    width: 11%;
    height: auto;
    bottom: 40%;
    right: 6%;
  }
}
@media (max-width: 450px) {
  #contact-1 .relative .img-icon1 {
    width: 18%;
    height: auto;
    bottom: 37%;
    right: 5%;
  }
}
#contact-1 .relative .img-icon2 {
  width: 7%;
  height: auto;
  top: 36%;
  right: 25%;
}
@media (max-width: 768px) {
  #contact-1 .relative .img-icon2 {
    width: 11%;
    height: auto;
    top: 26%;
    right: 7%;
  }
}
@media (max-width: 450px) {
  #contact-1 .relative .img-icon2 {
    width: 20%;
    height: auto;
    top: 20%;
    right: 6%;
  }
}
#contact-1 .relative .img-icon3 {
  width: 7%;
  height: auto;
  bottom: 30%;
  left: 22%;
}
@media (max-width: 768px) {
  #contact-1 .relative .img-icon3 {
    width: 11%;
    height: auto;
    bottom: 25%;
    left: 7%;
  }
}
@media (max-width: 768px) {
  #contact-1 .relative .img-icon3 {
    width: 15%;
    height: auto;
    bottom: 16%;
    left: 4%;
  }
}
#contact-1 .relative .img-icon4 {
  width: 6%;
  height: auto;
  top: 33%;
  left: 15%;
}
@media (max-width: 768px) {
  #contact-1 .relative .img-icon4 {
    width: 11%;
    height: auto;
    top: 25%;
    left: 5%;
  }
}
@media (max-width: 450px) {
  #contact-1 .relative .img-icon4 {
    width: 17%;
    height: auto;
    top: 18%;
    left: 5%;
  }
}

/* =============  flow  ============= */
#flow {
  padding: 40px 0;
  background-color: #FFC8C8;
}
#flow .flow-area {
  display: flex;
  justify-content: space-evenly;
  margin: 60px auto 80px;
  max-width: 1100px;
  flex-wrap: wrap;
}
@media (max-width: 450px) {
  #flow .flow-area {
    margin: 50px auto 40px;
  }
}
#flow .flow-area .double-border2 {
  position: relative;
  display: inline-block;
  padding: 19px;
  border: 5px solid #FF9EDA;
  border-radius: 15px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}
#flow .flow-area .double-border2::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  border: 4px solid #fff;
  border-radius: 10px;
  pointer-events: none;
}
#flow .flow-area .flow-item {
  width: 29%;
  max-width: 360px;
  min-width: 340px;
  margin: 30px auto;
}
#flow .flow-area .flow-item .step {
  color: #000;
  width: 80%;
  font-size: 1.5rem;
  padding: 5px;
  text-align: center;
  margin: 0 auto;
  font-family: "Ranchers", sans-serif;
  font-weight: 400;
  font-style: normal;
}
#flow .flow-area .flow-item img {
  display: block;
  margin: 0 auto;
  width: 80%;
  filter: drop-shadow(0 0 2px rgb(255, 255, 255));
}
#flow .flow-area .flow-item h4 {
  color: #090909;
  text-align: center;
  font-size: 1.35rem;
  padding-bottom: 10px;
}
#flow .flow-area .flow-item .flow-text {
  color: #090909;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* =============  contact-2  ============= */
#contact-2 {
  padding: 40px 0;
  background-color: #FFC8C8;
}
#contact-2 .contact2-area {
  background-color: #fff;
  width: 80%;
  max-width: 1000px;
  margin: 0 auto 100px;
  border: 6px solid #FF9EDA;
  border-radius: 15px;
  padding: 35px 20px;
  box-shadow: 0 0 10px rgba(62, 62, 62, 0.2);
}
@media (max-width: 450px) {
  #contact-2 .contact2-area {
    width: 92%;
    margin: 0 auto 100px;
  }
}
#contact-2 .contact2-area h4 {
  display: flex;
  width: 90%;
  justify-content: center;
  font-size: 1.3rem;
  margin: 30px auto;
}
@media (max-width: 768px) {
  #contact-2 .contact2-area h4 {
    width: 90%;
    font-size: 1.2rem;
  }
}
@media (max-width: 450px) {
  #contact-2 .contact2-area h4 {
    width: 95%;
    font-size: 1.055rem;
    margin: 35px auto;
  }
}
#contact-2 .contact2-area .btn-area {
  display: flex;
  justify-content: center;
  padding: 10px 0;
}
#contact-2 .contact2-area .btn-area .line-btn {
  margin: 20px auto;
  padding: 15px 25px;
  background-color: #FFAFE0;
  color: #000;
  border-radius: 35px;
  border: 4px solid #8A52FF;
  box-shadow: 3px 3px 5px rgba(33, 33, 33, 0.8);
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  #contact-2 .contact2-area .btn-area .line-btn {
    padding: 15px 24px;
    font-size: 1.1rem;
  }
}
@media (max-width: 450px) {
  #contact-2 .contact2-area .btn-area .line-btn {
    font-size: 1rem;
  }
}
#contact-2 .contact2-area .img2-icon1 {
  width: 10%;
  height: auto;
  bottom: 10%;
  left: 4%;
}
@media (max-width: 768px) {
  #contact-2 .contact2-area .img2-icon1 {
    width: 10%;
    height: auto;
    bottom: 10%;
    left: 6%;
  }
}
@media (max-width: 450px) {
  #contact-2 .contact2-area .img2-icon1 {
    width: 14%;
    height: auto;
    bottom: 2%;
    left: 3%;
  }
}
#contact-2 .contact2-area .img2-icon2 {
  width: 13%;
  height: auto;
  bottom: 12%;
  right: 8%;
}
@media (max-width: 768px) {
  #contact-2 .contact2-area .img2-icon2 {
    width: 15%;
    height: auto;
    bottom: 38%;
    right: 5%;
  }
}
@media (max-width: 450px) {
  #contact-2 .contact2-area .img2-icon2 {
    width: 19%;
    height: auto;
    bottom: 40%;
    right: 4%;
  }
}
#contact-2 .contact2-area .img2-icon3 {
  width: 12%;
  height: auto;
  top: 2%;
  right: 1%;
}
@media (max-width: 768px) {
  #contact-2 .contact2-area .img2-icon3 {
    width: 10%;
    height: auto;
    top: 2%;
    right: 1%;
  }
}
@media (max-width: 450px) {
  #contact-2 .contact2-area .img2-icon3 {
    width: 19%;
    height: auto;
    top: 2%;
    right: 1%;
  }
}

/* =============  about-contact3-bgi  ============= */
#about-contact3-bgi {
  background-image: url(../img/about-contact3-bgi.jpg);
  background-size: cover;
  background-position: center center;
}

/* =============  about  ============= */
#about {
  padding: 40px 0;
  position: relative;
}
#about .star-img {
  position: absolute;
  top: 13%;
  right: 20%;
  width: 12%;
  min-width: 150px;
}
@media (max-width: 768px) {
  #about .star-img {
    right: 12%;
    min-width: 120px;
  }
}
@media (max-width: 450px) {
  #about .star-img {
    top: 15%;
    right: 9%;
    min-width: 100px;
  }
}
#about .about-text-area {
  width: 100%;
}
#about .about-text-area .inner-area {
  max-width: 870px;
  padding: 10px 25px;
  margin: 0 auto;
  /*             color: #f3f3f3; */
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 768px) {
  #about .about-text-area .inner-area {
    width: 85%;
    padding: 10px 20px;
  }
}
@media (max-width: 450px) {
  #about .about-text-area .inner-area {
    width: 92%;
  }
}
#about .about-text-area .inner-area h4 {
  text-align: center;
  padding: 25px;
  font-size: 1.35rem;
}
#about .about-text-area .inner-area p {
  font-size: 1.2rem;
  line-height: 2.5rem;
}
@media (max-width: 768px) {
  #about .about-text-area .inner-area p {
    font-size: 1.1rem;
  }
}
@media (max-width: 450px) {
  #about .about-text-area .inner-area p {
    font-size: 1.05rem;
  }
}
@media (max-width: 768px) {
  #about .about-text-area {
    width: 100%;
  }
}

/* =============  contact-3  ============= */
#contact-3 {
  padding: 40px 0;
}
#contact-3 p {
  display: block;
  width: 55%;
  margin: 10% auto;
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  #contact-3 p {
    width: 80%;
    margin: 10% auto;
    font-size: 1.1rem;
  }
}
@media (max-width: 450px) {
  #contact-3 p {
    font-size: 1rem;
  }
}
#contact-3 .btn-area {
  display: flex;
  justify-content: center;
  padding: 10px 0 21%;
}
#contact-3 .btn-area .line-btn {
  margin: 20px auto;
  padding: 15px 25px;
  background-color: #FFAFE0;
  color: #000;
  border-radius: 35px;
  border: 4px solid #8A52FF;
  box-shadow: 3px 3px 5px rgba(33, 33, 33, 0.8);
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  #contact-3 .btn-area .line-btn {
    padding: 15px 24px;
    font-size: 1.1rem;
  }
}
@media (max-width: 450px) {
  #contact-3 .btn-area .line-btn {
    font-size: 1rem;
  }
}
#contact-3 .img-bottom3 {
  width: 100%;
  bottom: 0px;
}

/* =============  footer  ============= */
footer {
  background-color: #F3ECF4;
  color: #4b4b4b;
}
footer .flex {
  padding: 25px 0;
  justify-content: space-evenly;
  align-items: center;
}
@media (max-width: 768px) {
  footer .flex {
    flex-direction: column;
  }
}
footer .flex img {
  width: 20%;
  max-width: 120px;
}
@media (max-width: 768px) {
  footer .flex img {
    margin: 30px auto;
  }
}
footer .flex .footer-inner h2 {
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  footer .flex .footer-inner h2 {
    font-size: 1.2rem;
  }
}
footer .flex .footer-inner p {
  padding-bottom: 10px;
}
footer .footer-area {
  display: flex;
  justify-content: center;
  margin: 15px auto 0;
  padding-bottom: 10px;
}
/*# sourceMappingURL=style.css.map */