@charset "UTF-8";

.c-blue {
  color: #6FBEDB;
}

.c-orange {
  color: #F29C38;
}

.c-green {
  color: #42633E;
}

.c-red {
  color: #BF3131;
}

.c-white {
  color: #fff;

  & a:hover,
  & a:link,
  & a:visited,
  & a:active {
    color: inherit;
  }
}

.c-grey {
  color: #494949;

  & a:hover,
  & a:link,
  & a:visited,
  & a:active {
    color: inherit;
  }
}

.bg-white {
  background-color: #fff;
}

.bg-blue {
  background-color: #6FBEDB;
}

.bg-orange {
  background-color: #F29C38;
}

.bg-green {
  background-color: #42633E;
}

.bg-blue-btn {
  background-color: #6FBEDB;

  &:hover {
    background-color: #90c8dc;
  }

  :hover {
    color: white;
  }
}

.bg-orange-btn {
  background-color: #F29C38;

  &:hover {
    background-color: #edac61;
    color: white;
  }

  :hover {
    color: white;
  }
}

.bg-green-btn {
  background-color: #42633E;
  color: white;

  &:hover {
    background-color: #5f8957;
  }

  :hover {
    color: inherit;
  }
}

/**  TOP
****************************************************************************/
/**      メインビジュアル      **/
section.main-visual {
  position: relative;
  width: 100%;
  margin-top: -50px;
}

.main-visual_container {
  position: relative;
  height: 750px;
}

.main-visual_container::before {
  content: "";
  display: block;
  background-image: url(/images/top/mv-img.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 790px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.mv-human {
  position: absolute;
  bottom: 0;
  left: 3%;
  max-width: 610px;
}

.mv-human img {
  width: 100%;
}

.mv-copy_area {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  max-width: 600px;
}

.mv-copy_area img {
  width: 100%;
}

.lesson_achive img {
  width: 150px;
}

.registration-btn {
  width: 280px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 35px;
  /* margin-top: 50px; */
}

.registration-btn a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}

aside.banner-slide_area {
  width: 100%;
  background: #F7F7F7;
  padding: 40px 0;
}

/**      VIETCAFEの特徴      **/
section.feature-sec {
  padding: 80px 0;
  position: relative;

  & ul {
    padding: 0;
  }
}

section.feature-sec::before {
  content: "";
  display: block;
  background-image: url(/images/top/feature-sec_bg.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

ul.feature-list_area {
  justify-content: center;
  gap: 30px;
  margin-top: 70px;
  flex-wrap: wrap;
}

ul.feature-list_area::after {
  content: "";
  display: block;
  width: 340px;
}

li.feature-list_wrap {
  width: 340px;
  border: solid 3px #42633E;
  border-radius: 12px;
  padding: 25px;
  background-color: #fff;
}

.feature-list_number {
  font-size: 30px;
  font-weight: bold;
}

.feature-list_icon {
  width: 120px;
  height: 120px;
  margin: 0 auto;
}

.feature-list_icon img {
  width: 100%;
}

p.feature-list_text {
  font-size: 16px;
  font-weight: 500;
}

p.feature-list_text a {
  text-decoration: underline;
  text-underline-position: under;
}

.feature-btn {
  margin: 50px auto 0;
}

/**      レッスン形式      **/
section.lesson-sec {
  padding: 60px 0;
  position: relative;

  & p {
    margin: 0;
  }

  & ul {
    padding: 0;
  }
}

section.lesson-sec::before {
  content: "";
  display: block;
  background-color: #42633E;
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}

ul.lesson-list_area {
  justify-content: center;
  gap: 30px;
  row-gap: 30px;
  flex-wrap: wrap;
  margin-top: 60px;
}

li.lesson-list_wrap {
  width: 470px;
  background-color: #fff;
  border-radius: 25px;
  padding: 30px 40px;
}

.lesson-list_en {
  font-size: 16px;
  font-weight: bold;
  color: #E0E0E0;
}

h3.lesson-list_title {
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
}

p.lesson-list_text {
  font-size: 16px;
  margin-top: 20px;
}

/**      今だけのキャンペーン      **/
aside.campaign-sec {
  padding: 60px;
  background-color: #F4F4F4;

  & p {
    margin: 0;
  }
}

.campaign-list_wrap {
  justify-content: center;
  align-items: center;
  gap: 40px;
  row-gap: 40px;
  margin-top: 40px;
}

.campaign-list_img {
  max-width: 420px;
}

.campaign-list_img img {
  width: 100%;
}

.campaign-list_text p {
  font-size: 20px;
  font-weight: bold;
}

.campaign-list_text span {
  font-size: 28px;
  padding-right: 10px;
}

.campaign-btn {
  margin: 30px 0 0;
}

/**      VIETCAFEの講師      **/
section.teacher-sec {
  margin-top: 70px;
  margin-bottom: 70px;
}

ul.teacher-list_area {
  margin-top: 60px;
  justify-content: center;
  gap: 30px;
  row-gap: 30px;
  flex-wrap: wrap;
  padding: 0;
}

li.teacher-list_wrap {
  width: 420px;
  padding: 15px;
  border: solid 2px #42633E;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  border-radius: 10px;
}

.teacher-img_area {
  width: 120px;
  height: 120px;
}

.teacher-img_area img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.teacher-text_head {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

p.teacher-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 10px;
  margin-bottom: 10px;
}

.teacher-course_list {
  gap: 8px;
  margin-top: 10px;
}

.teacher-course_list span {
  font-size: 12px;
  border-radius: 12px;
  padding: 2px 12px;
  color: #fff;
}

.teacher-btn {
  margin: 40px auto 0;
}

/**      料金プラン      **/
section.price-sec {
  padding: 80px 0;
  position: relative;

  & ul {
    padding: 0;
  }
}

section.price-sec::before {
  content: "";
  display: block;
  background-color: #42633E;
  width: 100%;
  height: 41%;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}

section.price-sec::after {
  content: "";
  display: block;
  background-color: #F4F4F4;
  width: 100%;
  height: 59%;
  z-index: -1;
  position: absolute;
  top: 41%;
  left: 0;
}

p.price-sec_top {
  margin-top: 30px;
  font-size: 16px;
}

p.price-sec_top a {
  text-decoration: underline;
  text-underline-position: under;
}

.price-course_container {
  margin: 35px auto 0;
  max-width: 1050px;

  .exchange_currency {
    font-weight: bold;
    margin-bottom: 10px;
  }
}

.price-course_head {
  font-size: 20px;
  font-weight: bold;
  padding: 10px;
  margin-bottom: 10px;
}

ul.price-list-01_area {
  justify-content: center;
  gap: 30px;
  margin-bottom: 0;
}

li.price-list-01_wrap {
  width: 510px;
  padding: 30px;
  border-radius: 20px;
  background-color: #fff;
  margin-top: 30px;
  position: relative;
}

li.price-list-02_wrap {
  width: 330px;
  padding: 30px;
  border-radius: 20px;
  background-color: #fff;
  margin-top: 30px;
  position: relative;
}

.discount-badge {
  position: absolute;
  top: 0px;
  right: 0px;
  background-color: #C73939;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 0 20px 0 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

h3.price-course_title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 0;
}

.price-course_yen {
  margin-top: 10px;
  font-size: 16px;
}

.price-course_dong {
  margin-top: 10px;
  font-size: 14px;

  & span.price {
    font-size: 33px;
    font-weight: bold;
    margin: 0 10px;
  }
}

span.price {
  font-size: 36px;
  font-weight: bold;
  margin: 0 10px;
}

p.price-one-lesson_yen {
  font-size: 14px;
  padding: 2px;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 10px;
}

ul.price-list-02_area {
  justify-content: center;
  gap: 30px;
  margin-bottom: 0;
}

p.lesson-message_area {
  margin-top: 30px;
  font-size: 16px;
}

.price-btn {
  margin: 40px auto 0;
}

/**      単語帳プレゼントバナー      **/
aside.ad-free_book {
  margin: 50px auto;
  max-width: 940px;
  width: 90%;
}

aside.ad-free_book img {
  width: 100%;
}

/**      授業までの流れ     **/
section.flow-sec {
  margin-bottom: 90px;

  & p {
    margin: 0;
  }

  & ul {
    padding: 0;
  }
}

ul.flow-list_area {
  margin-top: 70px;
  justify-content: center;
  gap: 30px;
  row-gap: 50px;
  flex-wrap: wrap;
}

/* ul.flow-list_area::after {
  content: "";
  display: block;
  width: 330px;
} */

li.flow-list_wrap {
  width: 330px;
  border: solid 1px #494949;
  position: relative;
  padding: 40px 30px 30px;
}

.flow-list_number {
  width: 65px;
  height: 65px;
  position: absolute;
  top: -20px;
  left: -5px;
}

.flow-list_number img {
  width: 100%;
}

h3.flow-list_title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.flow-list_icon {
  width: 220px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}


.flow-list_icon img {
  width: 100%;
}

p.flow-list_text {
  font-size: 16px;
  margin-top: 20px;
}

p.flow-list_text a {
  color: #42633E;
  text-decoration: underline;
  text-underline-position: under;
}

/**      ニュースリリース     **/
section.news-sec {
  margin-top: 70px;
  margin-bottom: 120px;

  & ul {
    margin-bottom: 0;
    padding-left: 0;
  }

  & p {
    margin: 0;
  }
}

.news-list_area {
  max-width: 1000px;
  margin: 40px auto 0;
}

ul.news-list_year {
  justify-content: flex-start;
  overflow-x: scroll;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
}

ul.news-list_year::-webkit-scrollbar {
  display: none;
  /* Webkit ベースのブラウザ */
}

li.news-list_tab {
  width: 80px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  /* border: solid 1px #42633E;*/
  color: #42633E;
}

li.tab-active {
  background-color: #42633E;
  color: #fff;
}

.news-contents_area {
  padding: 30px;
  border: solid 1px #42633E;
  overflow: scroll;
  height: 350px;
  overflow-x: hidden;
}

.news-contents-single_area {
  padding: 30px;
  overflow-x: hidden;

  @media screen and (max-width: 780px) {
    padding: 15px;
  }
}

.news-list_wrap {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px #dedede;
}

.news-list_wrap:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.news-list_top {
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.news-list_date {
  font-size: 12px;
  text-align: center;
  background-color: #42633E;
  color: #fff;
  padding: 4px 8px;
  transform: skew(-15deg, 0deg);
}

.news-list_new {
  font-size: 12px;
  text-align: center;
  background-color: #ff6868;
  color: #fff;
  padding: 4px 8px;
  transform: skew(-15deg, 0deg);
}

.news-list_title {
  font-size: 20px;
  font-weight: 500;
}

.news-list_top_title {
  font-size: 18px;
  font-weight: 500;
}

.news-list_text {
  margin-top: 14px;
  font-size: 16px;
  color: #494949;
}

/**  下層ページ
****************************************************************************/
/**      初めての方へ     **/
section.page-first_sec {
  margin: 70px 0;

  & ul {
    padding: 0;
  }

  & p {
    margin-bottom: 0;
  }
}

p.guest-top_message {
  margin-top: 40px;
  font-size: 16px;
}

ul.guest-list_area {
  justify-content: center;
  gap: 30px;
  margin-top: 70px;
  flex-wrap: wrap;
}

ul.guest-list_area::after {
  content: "";
  display: block;
  width: 340px;
}

li.guest-list_wrap {
  width: 340px;
  border: solid 3px #42633E;
  border-radius: 12px;
  padding: 25px;
  background-color: #fff;
}

.guest-list_icon {
  width: 220px;
  height: 160px;
  margin: 0 auto;
}

.guest-list_icon img {
  width: 100%;
}

p.guest-list_text {
  font-size: 16px;
  font-weight: 500;
}

/**      ベトナム語とは？     **/
section.vietnamese-sec {
  margin-top: 160px;
}

.vietnamese-container {
  justify-content: center;
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
}

.vietnamese-text_area {
  width: 50%;
}

.vietnamese-text_head {
  padding-left: 5%;
}

h2.vietnamese-title_en {
  font-size: 60px;
  font-weight: bold;
  line-height: 1.4;
}

p.vietnamese-title_jp {
  font-size: 20px;
  font-weight: bold;
  margin-top: 30px;
}

p.vietnamese-text_wrap {
  padding: 10%;
  font-size: 16px;
  position: relative;
  z-index: 5;
  background-color: #fff;
  margin-top: 40px;
}

.vietnamese-img_area {
  width: 50%;
  max-width: 790px;
  margin-left: -10%;
  margin-top: 5%;
}

.vietnamese-img_area img {
  width: 100%;
}

/** feed back top screen **/

.feedback-container {
  width: 100%;
  height: 800px;
  max-width: 600px;
  margin: 30px auto;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

aside.feedback-sec {
  padding: 60px;
  background-color: #F4F4F4;

  & p {
    margin: 0;
  }
}

.dflex {
  display: flex;
}

.feedback-green-color {
  background-color: #42633E;
  color: #fff;
  border-radius: 2rem;
  width: 650px;
  margin-left: 8rem;
  margin-bottom: 1rem;
}

.feedback-orange-color {
  background-color: #F29C38;
  color: #fff;
  border-radius: 2rem;
  width: 650px;
  margin-left: -15rem;
  margin-bottom: 1rem;
}

@media screen and (min-width: 781px) and (max-width: 1200px) {
  .feedback-green-color {
    margin-left: 1rem;
  }

  .feedback-orange-color {
    margin-left: -8rem;
  }
}

.feedback-title-lable {
  font-size: 23px;
  font-family: 'Noto Sans JP';
  font-weight: 500;
}

.feedback-title {
  padding: 1.5rem;
  line-height: initial;
  display: flex;
}

.feedback-content-lable {
  font-size: 14px;
  font-family: 'Noto Sans JP';
  font-weight: normal !important;
  line-height: initial;
}

.feedback-content {
  padding: 0rem 1.5rem 1rem 1.5rem;
}

.feedback-green-image {
  display: grid;
  padding-right: 20px;
  align-content: center;
}

@media screen and (max-width: 780px) {
  .feedback-green-image {
    align-content: space-around;
  }
}

.feedback-image-link {
  width: 20px;
  height: 20px;
  margin: 2px 8px 0px -15px;
}

.link-feedback-youtube {
  font-size: 10px;
}

.feedback-orange-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
}

.feedback-content-input {
  border-radius: 1rem !important;
  height: 5rem;
}

.input-with-image {
  position: relative;
}

.input-with-image input {
  padding-right: 30px;
}

.input-image {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-55%);
  width: 30px;
}

.feedback-form {
  margin-bottom: 20px;
}

.feedback-form label {
  display: block;
  margin-bottom: 5px;
}

.feedback-form input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ececec;
  border-radius: 5px;
  background-color: #ececec;
}

.feedback-green-image-before {
  width: 35px;
  height: 35px;
  margin-top: -1rem;
  margin-left: -0.9rem;
}

.feedback-green-image-after {
  width: 35px;
  height: 35px;
  margin-top: auto;
}

/**  レスポンシブ
****************************************************************************/
/**      PC      **/
@media screen and (min-width: 1600px) {
  .mv-human {
    left: 12%;
  }

  .mv-copy_area {
    max-width: 860px;
  }

  .mv-copy_area img {
    width: 100%;
  }

  .lesson_achive {
    width: 150px;
  }
}

/**      Tab      **/
@media screen and (min-width: 781px) and (max-width: 1200px) {
  section.main-visual {
    margin-top: 15px;
  }

  .mv-human {
    left: -8%;
  }
}

/**      PC      **/
@media screen and (min-width: 781px) {
  .sp_part {
    display: none;
  }
}

/**      Tab      **/
@media screen and (max-width: 780px) {
  .pc_part {
    display: none;
  }

  /**  TOP
  ****************************************************************************/
  /**      メインビジュアル      **/
  section.main-visual {
    margin-top: 0;
  }

  .main-visual_container {
    height: 520px;
    overflow: hidden;
  }

  .main-visual_container::before {
    height: 520px;
  }

  .mv-human {
    left: unset;
    right: 0%;
    max-width: 320px;
    transform: scale(-1, 1);
  }

  .mv-copy_area {
    top: 40%;
    left: 5%;
    max-width: 360px;
    z-index: 5;
  }

  .mv-copy_area img {
    width: 90%;
  }

  .lesson_achive img {
    width: 100px;
    margin-right: 50px;
  }

  .registration-btn {
    width: 200px;
    height: 50px;
    line-height: 50px;
    /* margin-top: 60px; */
  }

  .registration-btn a {
    font-size: 14px;
  }

  aside.banner-slide_area {
    width: 100%;
    background: #F7F7F7;
    padding: 40px 0;
  }

  /**      VIETCAFEの特徴      **/
  section.feature-sec {
    padding: 50px 0;
  }

  ul.feature-list_area {
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
  }

  li.feature-list_wrap {
    width: 340px;
    padding: 20px;
  }

  .feature-list_number {
    font-size: 20px;
  }

  p.feature-list_text {
    font-size: 14px;
  }

  .feature-btn {
    margin: 30px auto 0;
  }

  /**      レッスン形式      **/
  section.lesson-sec {
    padding: 50px 0;
  }

  ul.lesson-list_area {
    gap: 20px;
    row-gap: 20px;
    margin-top: 40px;
  }

  li.lesson-list_wrap {
    max-width: 470px;
    width: 100%;
    background-color: #fff;
    border-radius: 25px;
    padding: 20px;
  }

  .lesson-list_en {
    font-size: 14px;
  }

  h3.lesson-list_title {
    font-size: 18px;
  }

  p.lesson-list_text {
    font-size: 14px;
    margin-top: 20px;
  }

  /**      今だけのキャンペーン      **/
  aside.campaign-sec {
    padding: 50px;
  }

  .campaign-list_wrap {
    display: block;
  }

  .campaign-list_img {
    max-width: 380px;
  }

  .campaign-list_text {
    margin-top: 20px;
    text-align: center;
  }

  .campaign-list_text p {
    font-size: 16px;
  }

  .campaign-list_text span {
    font-size: 24px;
    padding-right: 10px;
  }

  .campaign-btn {
    margin: 30px auto 0;
  }

  /**      VIETCAFEの講師      **/
  section.teacher-sec {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  ul.teacher-list_area {
    margin-top: 40px;
    gap: 20px;
    row-gap: 20px;
  }

  li.teacher-list_wrap {
    max-width: 420px;
    padding: 15px;
    gap: 20px;
  }

  .teacher-img_area {
    width: 120px;
    height: 120px;
  }

  .teacher-img_area img {
    width: 100%;
  }

  .teacher-text_head {
    font-size: 14px;
  }

  p.teacher-text {
    font-size: 14px;
  }

  .teacher-course_list {
    gap: 8px;
    margin-top: 10px;
  }

  .teacher-course_list span {
    font-size: 10px;
    padding: 2px 6px;
  }

  .teacher-btn {
    margin: 40px auto 0;
  }

  /**      料金プラン      **/
  section.price-sec {
    padding: 50px 0;
  }

  p.price-sec_top {
    margin-top: 30px;
    font-size: 14px;
  }

  .price-course_head {
    font-size: 16px;
  }

  ul.price-list-01_area {
    gap: 0px;
    flex-wrap: wrap;
  }

  li.price-list-01_wrap {
    max-width: 330px;
    padding: 20px;
    margin-top: 20px;
  }

  h3.price-course_title {
    font-size: 16px;
  }

  .price-course_yen {
    margin-top: 10px;
    font-size: 16px;
  }

  span.price {
    font-size: 26px;
  }

  .price-course_dong {
    margin-top: 10px;
    font-size: 14px;

    & span.price {
      font-size: 33px;
      font-weight: bold;
      margin: 0 10px;
    }
  }

  p.price-one-lesson_yen {
    font-size: 14px;
    padding: 2px;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 5px;
  }

  ul.price-list-02_area {
    justify-content: center;
    gap: 0px;
    flex-wrap: wrap;
  }

  li.price-list-02_wrap {
    max-width: 510px;
    padding: 20px;
    margin-top: 20px;
  }

  p.lesson-message_area {
    margin-top: 20px;
    font-size: 14px;
  }

  .price-btn {
    margin: 40px auto 0;
  }

  /**      単語帳プレゼントバナー      **/
  aside.ad-free_book {
    margin: 40px auto;
    max-width: 940px;
    width: 90%;
  }

  /**      授業までの流れ     **/
  section.flow-sec {
    margin-bottom: 50px;
  }

  ul.flow-list_area {
    margin-top: 50px;
    gap: 30px;
    row-gap: 40px;
  }

  li.flow-list_wrap {
    max-width: 330px;
    padding: 30px 20px;
  }

  .flow-list_number {
    width: 55px;
    height: 55px;
  }

  h3.flow-list_title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .flow-list_icon {
    margin-bottom: 10px;
  }

  p.flow-list_text {
    font-size: 14px;
    margin-top: 20px;
  }

  /**      ニュースリリース     **/
  section.news-sec {
    margin-top: 50px;
  }

  .news-list_area {
    max-width: 1000px;
    margin: 40px auto 0;
  }

  li.news-list_tab {
    width: 60px;
    height: 30px;
    font-size: 14px;
  }

  .news-contents_area {
    padding: 30px;
  }

  .news-list_top {
    gap: 8px;
  }

  .news-list_date {
    font-size: 12px;
    padding: 2px 6px;
  }

  .news-list_new {
    font-size: 12px;
    padding: 2px 6px;
  }

  .news-list_title {
    font-size: 16px;
  }

  .news-list_top_title {
    font-size: 14px;
  }

  .news-list_text {
    margin-top: 12px;
    font-size: 14px;
  }

  /**  下層ページ
  ****************************************************************************/
  /**      初めての方へ     **/
  section.page-first_sec {
    margin: 50px 0;
  }

  p.guest-top_message {
    margin-top: 30px;
    font-size: 14px;
  }

  ul.guest-list_area {
    gap: 30px;
    margin-top: 50px;
  }

  li.guest-list_wrap {
    max-width: 340px;
    padding: 20px;
  }

  .guest-list_icon {
    width: 220px;
    height: 160px;
  }

  p.guest-list_text {
    font-size: 14px;
  }

  /**      ベトナム語とは？     **/
  section.vietnamese-sec {
    margin-top: 80px;
  }

  .vietnamese-container {
    display: block;
  }

  .vietnamese-text_area {
    width: 100%;
  }

  .vietnamese-text_head {
    padding-left: 0%;
  }

  h2.vietnamese-title_en {
    font-size: 40px;
  }

  p.vietnamese-title_jp {
    font-size: 14px;
    margin-top: 20px;
  }

  p.vietnamese-text_wrap {
    padding: 7%;
    font-size: 14px;
    margin-top: 30px;
  }

  .vietnamese-img_area {
    width: 100%;
    margin-left: unset;
    margin-top: 30px;
  }

  /** feedback screen mobile **/

  aside.feedback-sec {
    padding: 5px;
    padding-top: 50px;
    padding-bottom: 50px;
    ;
    background-color: #F4F4F4;
  }

  .feedback-container {
    width: 100%;
    height: 100%;
    max-width: 600px;
    margin: 15px auto;
    background: rgba(255, 255, 255, 0.8);
    padding-top: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }

  .feedback-green-color {
    background-color: #42633E;
    color: #fff;
    border-radius: 1rem;
    width: 100%;
    margin-left: 0rem;
    margin-bottom: 1rem;
  }

  .feedback-orange-color {
    background-color: #F29C38;
    color: #fff;
    border-radius: 1rem;
    width: 100%;
    margin-left: 0rem;
    margin-bottom: 1rem;
  }

  .feedback-title-lable {
    font-size: 14px;
    font-family: 'Noto Sans JP';
    font-weight: 500;
  }

  .feedback-content-lable {
    font-size: 10px;
    font-family: 'Noto Sans JP';
    font-weight: normal !important;
    line-height: initial;
  }

  .feedback-image {
    width: 70px;
  }

  .feedback-title {
    display: flex;
  }

  .feedback-green-image-before {
    width: 20px;
    height: 20px;
    margin-top: -0.5rem;
    margin-left: -0.5rem;
  }

  .feedback-green-image-after {
    width: 20px;
    height: 20px;
    margin-top: auto;
  }

  .feedback-image-link {
    width: 15px;
    height: 15px;
    margin: 2px 5px 0px -10px;
  }

  .link-feedback-youtube {
    font-size: 10px;
  }
}

.card-payment-top {
  margin: 0px 78px;
}

.card-payment-top p {
  /* color:#4D4D4D; */
  font-size: 14px
}

.card-payment-top img {
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .feedback-link {
    margin-top: -5rem;
  }

  .card-payment-top {
    margin: 19px 10px;
  }
}

/**      SP      **/
@media screen and (max-width: 480px) {
  .mv-human {
    right: -15%;
  }
}