@charset "UTF-8";
/*---------- common ----------*/
*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 18px;
}
@media (max-width: 520px) {
  *,
::before,
::after {
    font-size: 16px;
  }
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  margin: 0 auto;
}

a {
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
}

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

.wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 834px) {
  .wrapper {
    padding: 0 15px;
  }
}

.flex {
  display: flex;
}

#fixed_btn {
  position: fixed;
  bottom: 165px;
  width: 85spx;
  right: 38px;
  padding: 5px 5px;
  z-index: 101;
  background-color: #06c755;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), inset 0px -3px 6px -2px rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  text-align: center;
}
#fixed_btn a {
  text-align: center;
  color: #fff;
  font-size: 14px;
}
@media (max-width: 834px) {
  #fixed_btn a {
    font-size: 12px;
  }
}
@media (max-width: 834px) {
  #fixed_btn {
    bottom: 145px;
    right: 30px;
    width: 80px;
    font-size: 12px;
  }
}
@media (max-width: 520px) {
  #fixed_btn {
    bottom: 20px;
    left: 15px;
  }
}

#top_btn {
  position: fixed;
  display: flex;
  flex-direction: column;
  width: 140px;
  bottom: 15px;
  right: 10px;
  z-index: 100;
  border-radius: 6px;
  padding: 5px 5px;
  font-size: 18px;
  color: #000;
  text-align: center;
  filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.5));
}
#top_btn img {
  width: 90%;
}
@media (max-width: 834px) {
  #top_btn {
    width: 120px;
    bottom: 15px;
    right: 10px;
    font-size: 16px;
  }
}
@media (max-width: 520px) {
  #top_btn {
    width: 100px;
    bottom: 0px;
    right: 10px;
    font-size: 14px;
  }
}

h2 {
  text-align: center;
  margin: 60px auto;
  font-size: 34px;
}
@media (max-width: 834px) {
  h2 {
    font-size: 28px;
  }
}
@media (max-width: 520px) {
  h2 {
    font-size: 24px;
  }
}

.h2__star {
  color: #FFEC53;
  font-size: 40px;
}
@media (max-width: 834px) {
  .h2__star {
    font-size: 30px;
  }
}

.fadeUp {
  -webkit-animation-name: fadeupanime;
          animation-name: fadeupanime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  opacity: 0;
}

@-webkit-keyframes fadeupanime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeupanime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInTopRightTrigger {
  opacity: 0;
}

header {
  margin: 0 auto;
  width: 100%;
}
header div h1 {
  position: absolute;
  max-width: 150px;
  padding-left: 20px;
  padding-top: 5px;
}
header div h1 a img {
  width: 100%;
}
@media (max-width: 520px) {
  header div h1 {
    display: none;
  }
}
header img {
  width: 100%;
}

/*---------- tiktok ----------*/
#tiktok {
  margin: 0 auto 200px;
}
@media (max-width: 834px) {
  #tiktok {
    margin: 0 auto 100px;
  }
}
#tiktok .wrapper {
  width: 100%;
  margin: 0 auto;
}

.tiktok__area {
  justify-content: space-evenly;
}
@media (max-width: 520px) {
  .tiktok__area {
    flex-direction: column-reverse;
  }
}
.tiktok__area .tiktok__text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  padding: 40px;
}
@media (max-width: 834px) {
  .tiktok__area .tiktok__text {
    padding: 15px;
    width: 45%;
  }
}
@media (max-width: 520px) {
  .tiktok__area .tiktok__text {
    width: 100%;
    padding-top: 50px;
  }
}
.tiktok__area div {
  display: flex;
  width: 40%;
  justify-content: center;
  align-items: center;
}
@media (max-width: 520px) {
  .tiktok__area div {
    width: 80%;
    margin: 0 auto 20px;
  }
}
.tiktok__area div img {
  width: 100%;
  height: auto;
  vertical-align: middle;
  box-shadow: 5px 5px 5px 6px rgba(0, 0, 0, 0.5);
}
@media (max-width: 520px) {
  .tiktok__area div img {
    box-shadow: 5px 5px 5px 6px rgba(0, 0, 0, 0.5);
  }
}

/*----------  reason  ----------*/
#reason {
  background-image: url(/images/haikei-1.png);
  background-position: bottom, top;
  background-size: 100%;
  margin-bottom: 200px;
}
@media (max-width: 834px) {
  #reason {
    margin-bottom: 100px;
  }
}
@media (max-width: 520px) {
  #reason {
    background-image: url(/images/haikei-1.png), url(/images/haikei-4.png), url(/images/haikei-5.png);
    background-position: bottom, top, center;
  }
}
#reason h2 {
  margin: 50px auto 20px;
}
#reason .reason__area {
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
@media (max-width: 520px) {
  #reason .reason__area {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
#reason .reason__area figure {
  width: 26%;
  margin: 0 3%;
  padding-top: 40px;
  text-align: center;
}
@media (max-width: 834px) {
  #reason .reason__area figure {
    margin: 0 15px;
    min-width: 170px;
  }
}
@media (max-width: 520px) {
  #reason .reason__area figure {
    width: 80%;
    margin: 10px auto;
  }
}
#reason .reason__area figure img {
  width: 85%;
  text-align: center;
  margin: 0 auto;
}
#reason .reason__area figure figcaption h3 {
  padding: 15px 0 20px;
  text-align: center;
}
@media (max-width: 520px) {
  #reason .reason__area figure figcaption h3 br {
    display: none;
  }
}
#reason .reason__area figure figcaption p {
  text-align: left;
}

/*----------  merit  -----------*/
#merit {
  padding-bottom: 50px;
  background: url(/images/haikei-2.png), linear-gradient(180deg, rgba(255, 171, 217, 0.9), rgba(255, 171, 217, 0.1));
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom, top;
}
#merit .merit__title {
  align-items: center;
  justify-content: center;
}
#merit .merit__title h2 {
  display: block;
  margin-left: 2%;
  margin-right: 2%;
}
#merit .merit__title h2 br {
  display: none;
}
@media (max-width: 834px) {
  #merit .merit__title h2 br {
    display: block;
  }
}
#merit .merit__title .h2__star {
  font-size: 46px;
}
@media (max-width: 520px) {
  #merit .merit__title .h2__star {
    font-size: 34px;
  }
}
#merit .merit__area {
  display: grid;
  justify-content: space-evenly;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 100px 45px;
  width: 100%;
}
@media (max-width: 834px) {
  #merit .merit__area {
    gap: 50px 40px;
  }
}
@media (max-width: 520px) {
  #merit .merit__area {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.merit__item {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  background-color: #f8f8f8;
}
@media (max-width: 520px) {
  .merit__item {
    margin: 10px auto;
  }
}
.merit__item .back_no {
  position: absolute;
  font-size: 120px;
  top: 15px;
  left: 15px;
  font-weight: bolder;
  z-index: 5;
}
@media (max-width: 834px) {
  .merit__item .back_no {
    font-size: 70px;
    top: 15px;
    left: auto;
    right: 10px;
  }
}
@media (max-width: 520px) {
  .merit__item .back_no {
    right: auto;
    left: 10px;
  }
}
.merit__item .back_01,
.merit__item .back_04 {
  color: rgba(255, 236, 83, 0.4);
}
.merit__item .back_02,
.merit__item .back_05 {
  color: rgba(152, 220, 249, 0.4);
}
.merit__item .back_03,
.merit__item .back_06 {
  color: rgba(255, 171, 217, 0.4);
}
.merit__item .merit__inner {
  min-height: 210px;
  width: auto;
  padding: 0 10px 10px 99px;
  z-index: 10;
}
@media (max-width: 834px) {
  .merit__item .merit__inner {
    padding: 0 10px 5px;
  }
}
.merit__item .merit__inner h3 {
  display: flex;
  align-items: center;
  justify-content: left;
  padding: 25px 0;
  font-size: 24px;
  min-height: 125px;
}
@media (max-width: 834px) {
  .merit__item .merit__inner h3 {
    font-size: 18px;
    justify-content: left;
  }
}
@media (max-width: 520px) {
  .merit__item .merit__inner h3 {
    text-align: right;
    justify-content: end;
    vertical-align: middle;
    font-size: 22px;
  }
}
.merit__item .merit__inner p {
  font-size: 16px;
  padding-bottom: 15px;
}
.merit__item img {
  display: flex;
  justify-items: end;
  width: 100%;
  margin-top: auto;
}

/*---------- chance ----------*/
.slide__area1 {
  width: 100vw;
  overflow: hidden;
}
@media (max-width: 520px) {
  .slide__area1 {
    display: none;
  }
}
.slide__area1 img {
  width: auto;
  height: 100%;
}
.slide__area1 img:first-child {
  -webkit-animation: slide1 60s -30s linear infinite;
          animation: slide1 60s -30s linear infinite;
}
.slide__area1 img:last-child {
  -webkit-animation: slide2 60s linear infinite;
          animation: slide2 60s linear infinite;
}

.slide__area2 {
  width: 100vw;
  overflow: hidden;
  display: none;
}
@media (max-width: 520px) {
  .slide__area2 {
    display: flex;
  }
}
.slide__area2 img {
  width: auto;
  height: 100%;
}
.slide__area2 img:first-child {
  -webkit-animation: slide1 60s -30s linear infinite;
          animation: slide1 60s -30s linear infinite;
}
.slide__area2 img:last-child {
  -webkit-animation: slide2 60s linear infinite;
          animation: slide2 60s linear infinite;
}

@-webkit-keyframes slide1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes slide1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes slide2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes slide2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.chance__inner {
  width: 100%;
  justify-content: space-between;
  margin: 100px auto;
}
@media (max-width: 834px) {
  .chance__inner {
    flex-direction: column-reverse;
    margin: 20px auto;
  }
}
.chance__inner .chance__text {
  font-size: 20px;
  width: 50%;
  padding: 15px;
}
.chance__inner .chance__text h6 {
  font-weight: normal;
  font-size: 18px;
}
@media (max-width: 834px) {
  .chance__inner .chance__text {
    width: 90%;
    margin: 0 auto;
  }
}
.chance__inner .chance__text .line_btn {
  display: none;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  background-color: #E9537D;
  border-radius: 20px;
}
@media (max-width: 834px) {
  .chance__inner .chance__text .line_btn {
    display: flex;
    max-width: 380px;
    margin: 40px auto 0;
  }
}
.chance__inner .chance__text .line_btn p {
  color: #f8f8f8;
}
.chance__inner .chance__img {
  width: 45%;
  align-items: center;
  padding: 15px;
}
@media (max-width: 834px) {
  .chance__inner .chance__img {
    width: 90%;
    margin: 0 auto;
  }
}
.chance__inner .chance__img img {
  width: 100%;
  height: auto;
  margin-bottom: 80px;
}
@media (max-width: 834px) {
  .chance__inner .chance__img img {
    margin-bottom: 30px;
  }
}
.chance__inner .chance__img .line_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  max-width: 380px;
  background-color: #E9537D;
  border-radius: 20px;
}
@media (max-width: 834px) {
  .chance__inner .chance__img .line_btn {
    display: none;
  }
}
.chance__inner .chance__img .line_btn p {
  color: #f8f8f8;
}

/*---------- features ----------*/
#features {
  background: linear-gradient(180deg, rgba(254, 120, 127, 0.9), rgba(254, 120, 127, 0.3));
  padding-bottom: 60px;
}
#features .features__title {
  align-items: center;
  justify-content: center;
}
#features .features__title h2 {
  display: block;
  margin-left: 1%;
  margin-right: 1%;
}
#features .features__title h2 br {
  display: none;
}
@media (max-width: 520px) {
  #features .features__title h2 br {
    display: block;
  }
}
#features .features__title .h2__star {
  font-size: 42px;
}
@media (max-width: 520px) {
  #features .features__title .h2__star {
    font-size: 34px;
  }
}

.features__area {
  justify-content: center;
}
@media (max-width: 520px) {
  .features__area {
    flex-direction: column;
  }
}
.features__area .features__img {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 450px;
  height: auto;
}
@media (max-width: 834px) {
  .features__area .features__img {
    min-width: 200px;
  }
}
.features__area .features__img img {
  width: 90%;
}
.features__area .features__text {
  position: relative;
  display: inline-block;
  margin: 1.5em 25px 1.5em 0;
  padding: 7px 8px;
  min-width: 380px;
  max-width: 100%;
  color: #555;
  font-size: 16px;
  background: #FFF;
  border: solid 6px #FE787F;
  box-sizing: border-box;
  border-radius: 20px;
}
@media (max-width: 834px) {
  .features__area .features__text {
    padding: 5px;
    min-width: 305px;
    margin: 1.2em 20px 1.2em 20px;
  }
}
@media (max-width: 520px) {
  .features__area .features__text {
    margin: 1.2em 20px 1.2em 20px;
    display: flex;
    min-width: 330px;
    flex-direction: column;
    justify-content: center;
  }
}
.features__area .features__text ul {
  margin: 45px 50px;
}
@media (max-width: 834px) {
  .features__area .features__text ul {
    margin: 20px 15px;
  }
}
@media (max-width: 520px) {
  .features__area .features__text ul {
    width: 71%;
    margin: 0 auto;
  }
}
.features__area .features__text ul li {
  padding-bottom: 10px;
}
.features__area .features__text ul li:before {
  color: #F3A7A9;
  content: "⭐️ ";
}
.features__area .features__text::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -42px;
  margin-top: -18px;
  border: 18px solid transparent;
  border-left: 28px solid #FFF;
  z-index: 2;
}
@media (max-width: 520px) {
  .features__area .features__text::before {
    top: 98%;
    bottom: -20px;
    right: 50%;
    left: 50%;
    margin-top: 0;
    margin-left: -15px;
    border: 18px solid transparent;
    border-top: 28px solid #FFF;
  }
}
.features__area .features__text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -54px;
  margin-top: -20px;
  border: 20px solid transparent;
  border-left: 30px solid #FE787F;
  z-index: 1;
}
@media (max-width: 520px) {
  .features__area .features__text::after {
    top: 100%;
    bottom: -30px;
    left: 50%;
    right: 50%;
    margin-top: 0;
    margin-left: -17px;
    z-index: -1;
    border: 20px solid transparent;
    border-top: 30px solid #FE787F;
  }
}

/*---------- belong ----------*/
#belong {
  background-image: url(/images/haikei-6.png);
  background-size: cover;
  background-position: center;
}
@media (max-width: 834px) {
  #belong {
    background-size: 100%;
  }
}
@media (max-width: 520px) {
  #belong {
    background-size: 100%;
    background-image: none;
  }
}
#belong .belong__text {
  display: flex;
  width: 80%;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#belong .belong__area {
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 520px) {
  #belong .belong__area {
    flex-direction: column;
    background-image: url(/images/haikei-6.png);
    background-size: 100%;
    background-repeat: repeat-y;
    background-position: center;
  }
}
#belong .belong__area img {
  width: 29%;
  margin: 0 15px;
}
@media (max-width: 834px) {
  #belong .belong__area img {
    width: 30%;
    margin: 0;
  }
}
@media (max-width: 520px) {
  #belong .belong__area img {
    width: 85%;
    margin: 0 auto;
  }
}

/*---------- liver ----------*/
#liver {
  background-image: url(/images/haikei-3.png);
  background-repeat: repeat-y;
  background-size: 100%;
}

.liver__area {
  /* display: grid;
  grid-template-columns: repeat(auto-fit, 280px); */
  display: flex;
  flex-wrap: wrap;
  row-gap: 50px;
  justify-content: space-evenly;
}
@media (max-width: 520px) {
  .liver__area {
    grid-template-columns: 85%;
  }
}
.liver__area .liver__item {
  display: flex;
  flex-direction: column;
  border: 1px solid #c9c7c7;
  border-radius: 20px;
  width: 280px;
}
.liver__area .liver__item img {
  border-radius: 20px 20px 0 0;
  width: 100%;
}
.liver__area .liver__item h3 {
  text-align: center;
  background-color: #FFF8C3;
  padding: 20px 0;
}
.liver__area .liver__item div {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 0 0 20px 20px;
}
.liver__area .liver__item div p {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 25px;
  text-align: left;
  min-height: 125px;
}
.liver__area .liver__item div a {
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #98DCF9;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin: 5px 15px 10px;
  border-radius: 10px;
}
@media (max-width: 520px) {
  .liver__area .liver__item div a {
    width: 250px;
    margin: 0 auto 15px;
  }
}

/*---------- faq ----------*/
#faq {
  background-image: url(/images/haikei-4.png);
  background-size: 100%;
}
@media (max-width: 520px) {
  #faq h2 {
    margin: 50px auto 30px;
  }
}
#faq h3 {
  background-color: #FE787F;
  max-width: 500px;
  text-align: center;
  margin-bottom: 50px;
}
#faq .faq__inner {
  margin: 0 auto;
  padding: 20px;
  font-size: 30px;
  background-color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 520px) {
  #faq .faq__inner {
    padding: 20px;
    margin: 0 auto 50px;
  }
}
#faq .faq__inner .accordion-003 {
  max-width: 1000px;
  margin: 0 auto 7px;
  border-bottom: 3px solid #fe787f;
}
#faq .faq__inner .accordion-003 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  color: #333333;
  font-weight: 600;
  cursor: pointer;
}
#faq .faq__inner .accordion-003 summary::-webkit-details-marker {
  display: none;
}
#faq .faq__inner .accordion-003 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-bottom: 3px solid #fe787f;
  border-right: 3px solid #fe787f;
  content: "";
  transition: transform 0.5s;
}
#faq .faq__inner .accordion-003[open] summary::after {
  transform: rotate(225deg);
}
#faq .faq__inner .accordion-003 p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0.3em 2em 1.5em;
  color: #333333;
  transition: transform 0.5s, opacity 0.5s;
}
#faq .faq__inner .accordion-003[open] p {
  transform: none;
  opacity: 1;
}

/*---------- salary ----------*/
#salary {
  padding-top: 30px;
  padding-bottom: 30px;
  background: url(/images/haikei-4.png), linear-gradient(180deg, rgba(152, 220, 249, 0.9), rgba(152, 220, 249, 0.1));
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom, top;
}
#salary div h2 {
  margin: 30px auto 20px;
}
#salary div .salary__sub {
  text-align: center;
  margin: 0 auto 50px;
}
#salary div .salary__sub br {
  display: none;
}
@media (max-width: 520px) {
  #salary div .salary__sub br {
    display: block;
  }
}
@media (max-width: 520px) {
  #salary div .salary__sub {
    margin: 0 15px 50px;
  }
}
#salary .salary__area {
  width: 90%;
  padding: 20px;
  border: 10px solid #FFEC53;
  border-radius: 20px;
  background-color: #fff;
}
#salary .salary__area h3 {
  font-size: 26px;
  text-align: center;
  margin: 30px auto 0;
}
#salary .salary__area p {
  padding: 4%;
  line-height: 3rem;
  text-align: center;
}
@media (max-width: 834px) {
  #salary .salary__area p {
    line-height: 2rem;
  }
}
@media (max-width: 520px) {
  #salary .salary__area p {
    line-height: 2rem;
  }
}
#salary .line_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  background-color: #E9537D;
  border-radius: 20px;
  max-width: 380px;
  color: #f8f8f8;
  margin: 50px auto 20px;
}
@media (max-width: 520px) {
  #salary .line_btn {
    margin: 50px auto 20px;
  }
}

/*---------- flow ----------*/
#flow {
  background-image: url(/images/haikei-2.png);
  background-size: 100%;
  padding-bottom: 30px;
}
#flow .flow__area .flow__item {
  width: 85%;
  margin: 50px auto;
  position: relative;
  background-color: #fff;
}
@media (max-width: 520px) {
  #flow .flow__area .flow__item {
    width: 95%;
  }
}
#flow .flow__area .flow__item h3 {
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  text-align: center;
  width: 320px;
  background-color: #FE787F;
  color: #fff;
  position: absolute;
  z-index: 10;
  border-radius: 10px;
}
@media (max-width: 520px) {
  #flow .flow__area .flow__item h3 {
    width: 250px;
  }
}
#flow .flow__area .flow__item .flow__inner {
  justify-content: space-evenly;
  align-items: center;
  border-radius: 10px;
  padding: 25px 10px 15px;
  border: 1px solid #000;
}
@media (max-width: 834px) {
  #flow .flow__area .flow__item .flow__inner {
    padding: 25px 10px 15px;
  }
}
@media (max-width: 520px) {
  #flow .flow__area .flow__item .flow__inner {
    padding: 25px 5px 15px;
  }
}
#flow .flow__area .flow__item .flow__inner .flow__icon {
  display: flex;
  width: auto;
  height: 160px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 520px) {
  #flow .flow__area .flow__item .flow__inner .flow__icon {
    height: 110px;
  }
}
#flow .flow__area .flow__item .flow__inner .flow__text {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  width: 45%;
}
@media (max-width: 520px) {
  #flow .flow__area .flow__item .flow__inner .flow__text {
    width: 55%;
    font-size: 16px;
  }
}
#flow .flow__area .flow__item .flow__inner .flow__text h4 {
  text-align: center;
  padding-bottom: 12px;
}
#flow .line_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  background-color: #E9537D;
  border-radius: 20px;
  max-width: 380px;
  color: #f8f8f8;
  margin: 50px auto 20px;
}
@media (max-width: 520px) {
  #flow .line_btn {
    margin: 0 auto;
  }
}

/*---------- About ----------*/
#about {
  background-color: rgba(253, 167, 208, 0.3);
  padding-top: 30px;
  padding-bottom: 30px;
}
#about h2 {
  margin: 30px auto 60px;
}
#about .about__area {
  justify-content: space-around;
}
@media (max-width: 834px) {
  #about .about__area {
    flex-direction: column;
  }
}
#about .about__area .about__text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45%;
  background-color: #F3A7D0;
  border-radius: 10px;
  color: #fff;
  padding: 30px;
  line-height: 2.5rem;
}
@media (max-width: 834px) {
  #about .about__area .about__text {
    width: 100%;
    margin-bottom: 30px;
  }
}
#about .about__area .about__text p {
  margin: 0 auto;
}
#about .about__area .about__images {
  width: 40%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 834px) {
  #about .about__area .about__images {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    gap: 20px;
    margin-bottom: 20px;
  }
}
#about .about__area .about__images img {
  width: 100%;
}

/*---------- contact ----------*/
#contact {
  background-image: url(/images/contact-1.png);
  background-size: cover;
  background-position: center;
  padding: 20px;
}
@media (max-width: 520px) {
  #contact {
    padding: 20px 10px;
  }
}
#contact .contact__area {
  display: flex;
  flex-direction: column;
  margin: 30px auto;
  background-color: rgba(255, 255, 255, 0.4);
  padding: 30px 60px;
}
@media (max-width: 520px) {
  #contact .contact__area {
    padding: 20px 10px;
  }
}
#contact .contact__area h2 {
  margin: 30px auto 10px;
}
#contact .contact__area .contact__sub {
  text-align: center;
}
#contact .contact__area .contact__text {
  width: 100%;
  margin: 40px auto;
}
#contact .contact__area .line_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  background-color: #E9537D;
  border-radius: 20px;
  max-width: 380px;
  color: #f8f8f8;
  margin: 20px auto 20px;
}

/*---------- footer ----------*/
footer {
  background: linear-gradient(180deg, rgba(255, 236, 83, 0.1), rgba(255, 236, 83, 0.9));
  padding-top: 30px;
}
footer .footer__area {
  justify-content: space-evenly;
}
@media (max-width: 520px) {
  footer .footer__area {
    flex-direction: column;
    justify-content: center;
  }
}
footer .footer__area table tr .footer__th {
  min-width: 150px;
}
@media (max-width: 520px) {
  footer .footer__area table tr .footer__th {
    min-width: 10px;
  }
}
footer .footer__area table tr td {
  padding-left: 30px;
  width: 70%;
}
@media (max-width: 520px) {
  footer .footer__area table tr td {
    padding-left: 0;
  }
}
@media (max-width: 520px) {
  footer .footer__area table tr {
    font-size: 14px;
  }
}
footer .footer__copyligt {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}
@media (max-width: 520px) {
  footer .footer__copyligt {
    font-size: 14px;
    padding: 40px;
  }
}

/* commonは共通  */
/*# sourceMappingURL=style.css.map */