/*
Theme Name: wellink-theme
*/
* {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

p {
  font-size: 0.875rem;
  color: #555555;
}
@media (min-width: 1024px) {
  p {
    font-size: 16px;
  }
}

li {
  color: #555555;
}

/*
Theme Name: wellink-theme
*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fcf4dc;
  z-index: 1000;
  transition: all 0.4s ease;
}

.header__container {
  position: relative;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 10px;
  padding-right: 20px;
}
@media (min-width: 1024px) {
  .header__container {
    padding: 0 20px;
  }
}

.header__branding {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header__logo {
  width: 50px;
  height: 50px;
}

.header__logo-link {
  width: 100%;
  height: 100%;
  display: block;
}

.header__logo-image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0;
}

.header__title-text {
  font-size: 14px;
  color: #333333;
  margin: 0;
  line-height: 1;
}
@media (min-width: 1024px) {
  .header__title-text {
    font-size: 20px;
  }
}

.header__title-link {
  text-decoration: none;
  color: inherit;
}

.header__navigation {
  display: flex;
  align-items: center;
  gap: 0;
}
@media (min-width: 1024px) {
  .header__navigation {
    gap: 40px;
    height: 100%;
  }
}

.nav-menu {
  list-style: none;
  display: flex;
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  background-color: #fcf4dc;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  z-index: 9999;
  transition: all 0.4s ease;
}
.nav-menu.active {
  right: 0;
}
@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
    position: static;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    flex-direction: row;
    gap: 40px;
    min-width: auto;
    height: 100%;
    justify-content: flex-start;
    align-items: center;
  }
}
.nav-menu a {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: #333333;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
  display: block;
  text-align: center;
}
@media (min-width: 1024px) {
  .nav-menu a {
    font-size: 1rem;
  }
}
.nav-menu a:hover {
  color: #13993f;
}
.nav-menu a.current-menu-item, .nav-menu a.current_page_item {
  color: #13993f;
}
.nav-menu li.current-menu-item a {
  color: #13993f;
}

body.single-post li.menu-item:nth-child(5) a {
  color: #13993f;
}

.header__menu-toggle {
  position: relative;
  z-index: 10000;
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 20px;
}
@media (min-width: 1024px) {
  .header__menu-toggle {
    display: none;
  }
}

.header__hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.header__hamburger-line {
  width: 100%;
  height: 2px;
  background-color: #333333;
  transition: all 0.3s ease;
  border-radius: 1px;
}
.header__hamburger-line:nth-child(1) {
  transform-origin: top left;
}
.header__hamburger-line:nth-child(2) {
  transform-origin: center;
}
.header__hamburger-line:nth-child(3) {
  transform-origin: bottom left;
}

.header__menu-toggle.active .header__hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(4px, -5px);
}
.header__menu-toggle.active .header__hamburger-line:nth-child(2) {
  opacity: 0;
}
.header__menu-toggle.active .header__hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(4px, 5px);
}

.header--scrolled {
  background-color: rgba(252, 244, 220, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

/*
Theme Name: wellink-theme
*/
.footer {
  width: 100%;
  padding: 60px 0;
  margin: 0 auto;
  background-color: #13993f;
  border-radius: 40px 40px 0 0;
}
@media (min-width: 768px) {
  .footer {
    width: 90%;
    border-radius: 80px 80px 0 0;
    padding: 80px 0;
  }
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 90%;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .footer__inner {
    align-items: flex-start;
    gap: 80px;
  }
}
.footer__site-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__site-title__image {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 50%;
}
@media (min-width: 1024px) {
  .footer__site-title__image {
    width: 60px;
    height: 60px;
  }
}
.footer__site-title__text {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .footer__site-title__text {
    font-size: 1.25rem;
  }
}
.footer__copyright {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  color: #ffffff;
  text-align: center;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .footer__copyright {
    font-size: 0.875rem;
  }
}

.sitemap-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.sitemap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 1024px) {
  .sitemap {
    flex-direction: row;
    gap: 40px;
  }
}
.sitemap a {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  color: #ffffff;
  white-space: nowrap;
  transition: all 0.4s ease;
}
@media (min-width: 1024px) {
  .sitemap a {
    font-size: 1rem;
  }
}

/*
Theme Name: wellink-theme
*/
.page-fv {
  width: 80%;
  max-width: 1280px;
  padding: 60px 0;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .page-fv {
    padding: 80px 0;
  }
}
.page-fv--philosophy .page-fv__inner {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), url("assets/images/philosophy/philosophy-fv.jpg") lightgray 50%/cover no-repeat;
}
.page-fv--company .page-fv__inner {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), url("assets/images/company/office-building.jpg") lightgray 50%/cover no-repeat;
}
.page-fv--business .page-fv__inner {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), url("assets/images/business/business-fv.jpg") lightgray 50%/cover no-repeat;
}
.page-fv--news .page-fv__inner {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), url("assets/images/news/news-fv.jpg") lightgray 50%/cover no-repeat;
}
.page-fv--contact .page-fv__inner {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), url("assets/images/contact/contact-fv.jpg") lightgray 50%/cover no-repeat;
}
.page-fv--privacy .page-fv__inner {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), url("assets/images/privacy-policy/privacy-policy-fv.jpg") lightgray 50%/cover no-repeat;
}
.page-fv__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  align-items: flex-start;
  width: 100%;
  height: 300px;
  border-radius: 40px;
}
@media (min-width: 1024px) {
  .page-fv__inner {
    height: 400px;
  }
}
.page-fv__title {
  min-width: 260px;
  padding: 30px 20px;
  background-color: rgba(255, 255, 255, 0.9);
}
@media (min-width: 1024px) {
  .page-fv__title {
    min-width: 500px;
    padding: 40px;
  }
}
.page-fv__title__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  align-items: flex-start;
  padding-left: 20px;
  border-left: 2px solid #13993f;
}
.page-fv__title__main {
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 400;
  font-size: 1.75rem;
}
@media (min-width: 1024px) {
  .page-fv__title__main {
    font-size: 3rem;
  }
}
.page-fv__title__sub {
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 400;
  font-size: 0.875rem;
}
@media (min-width: 1024px) {
  .page-fv__title__sub {
    font-size: 1rem;
  }
}

/*
Theme Name: wellink-theme
*/
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 400px;
  padding: 15px 32px;
  margin: 0 auto;
  background-color: #13993f;
  border-radius: 9999px;
  transition: all 0.4s ease;
}
.button:hover {
  opacity: 0.7;
}
@media (min-width: 1024px) {
  .button {
    padding: 18px 64px;
  }
}
.button__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
}
.button__text {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  color: #ffffff;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .button__text {
    font-size: 1rem;
  }
}

.pagination-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #13993f;
  border: 1px solid #13993f;
  transition: all 0.4s ease;
}
@media (min-width: 1024px) {
  .pagination-button {
    width: 150px;
    height: 60px;
    border-radius: 9999px;
  }
}
.pagination-button:hover {
  opacity: 0.7;
}
.pagination-button__text--sp {
  display: block;
}
@media (min-width: 1024px) {
  .pagination-button__text--sp {
    display: none;
  }
}
.pagination-button__text--pc {
  display: none;
}
@media (min-width: 1024px) {
  .pagination-button__text--pc {
    display: block;
  }
}

/*
Theme Name: wellink-theme
*/
.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .section-heading {
    margin-bottom: 60px;
  }
}
.section-heading h2 {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: #333333;
}
@media (min-width: 1024px) {
  .section-heading h2 {
    font-size: 2rem;
  }
}
.section-heading p {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  color: #13993f;
}
@media (min-width: 1024px) {
  .section-heading p {
    font-size: 1rem;
  }
}

/*
Theme Name: wellink-theme
*/
.news-item {
  display: block;
  padding-bottom: 20px;
  border-bottom: 0.5px solid #555555;
  transition: all 0.4s ease;
}
@media (min-width: 1024px) {
  .news-item {
    padding-bottom: 30px;
  }
}
.news-item:hover {
  opacity: 0.7;
}
.news-item__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  width: 100%;
}
.news-item__meta {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
}
.news-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
}
.news-item__date-category {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  color: #aaaaaa;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .news-item__date-category {
    font-size: 0.75rem;
  }
}
.news-item__title {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: #555555;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .news-item__title {
    font-size: 1rem;
  }
}

/*
Theme Name: wellink-theme
*/
/*
Theme Name: wellink-theme
*/
.fv {
  width: 100%;
  max-width: 1280px;
  padding: 60px 30px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .fv {
    padding: 80px 128px 60px;
    gap: 60px;
  }
}

.fv__title {
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 400;
  font-size: 24px;
  color: #333333;
  line-height: 1.2;
  width: 100%;
  margin: 0;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .fv__title {
    font-size: 48px;
  }
}
@media (min-width: 1024px) {
  .fv__title {
    min-width: 100%;
    width: -moz-min-content;
    width: min-content;
  }
}

.fv__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  max-height: 500px;
}
@media (min-width: 1024px) {
  .fv__image-wrapper {
    aspect-ratio: 16/9;
  }
}

.fv__main-image {
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
}

.fv__main-image-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.fv__logo-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  grid-template-columns: max-content;
  grid-template-rows: max-content;
  place-items: start;
  z-index: 2;
}

.fv__logo-background {
  grid-area: 1/1;
  width: 150px;
  height: 150px;
  background-color: rgba(255, 255, 255, 0.9);
  position: relative;
}
@media (min-width: 1024px) {
  .fv__logo-background {
    width: 300px;
    height: 300px;
  }
}

.fv__logo-content {
  grid-area: 1/1;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (min-width: 1024px) {
  .fv__logo-content {
    width: 300px;
    height: 300px;
  }
}

.fv__logo-image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.swiper-slide {
  width: 100%;
  aspect-ratio: 1/1;
  max-height: 500px;
}
@media (min-width: 1024px) {
  .swiper-slide {
    aspect-ratio: 16/9;
  }
}

/*
Theme Name: wellink-theme
*/
.news__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .news__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
  }
}

/*
Theme Name: wellink-theme
*/
.about-us {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100% !important;
  max-width: inherit !important;
  background-image: url("assets/images/aboutus-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about-us__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  box-shadow: 2px 2px 16px 0px rgba(0, 0, 0, 0.25);
  width: 90%;
  max-width: 800px;
  padding: 60px 20px;
  background-color: rgba(252, 244, 220, 0.8);
  border-radius: 40px;
}
@media (min-width: 768px) {
  .about-us__inner {
    padding: 60px 40px;
  }
}
@media (min-width: 1024px) {
  .about-us__inner {
    padding: 80px;
    border-radius: 80px;
  }
}
.about-us__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-us__content p {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
}
@media (min-width: 1024px) {
  .about-us__content p {
    font-size: 1.125rem;
  }
}

/*
Theme Name: wellink-theme
*/
.gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 90% !important;
}
.gallery__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  padding: 60px 20px;
  background-color: #ffe7a0;
  border-radius: 40px;
}
@media (min-width: 768px) {
  .gallery__inner {
    padding: 60px 40px;
  }
}
@media (min-width: 1024px) {
  .gallery__inner {
    padding: 80px;
    border-radius: 80px;
  }
}
.gallery__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1024px) {
  .gallery__content {
    gap: 60px;
  }
}
.gallery__content__description {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .gallery__content__description {
    font-size: 1.125rem;
  }
}
.gallery__content__images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 1024px) {
  .gallery__content__images {
    grid-template-columns: repeat(4, 1fr);
  }
}
.gallery__content__images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.section {
  width: 80%;
  max-width: 1280px;
  padding: 60px 0;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .section {
    padding: 80px 0;
  }
}

/*
Theme Name: wellink-theme
*/
.philosophy__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 80px;
  width: 80%;
  max-width: 1280px;
  padding: 60px 0;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .philosophy__content {
    gap: 120px;
  }
}
.philosophy__content__item {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 2px 2px 16px 0px rgba(0, 0, 0, 0.25);
}
@media (min-width: 1024px) {
  .philosophy__content__item {
    flex-direction: row;
  }
}
.philosophy__content__item--vision {
  background-color: #13993f;
  color: #ffffff;
}
@media (min-width: 1024px) {
  .philosophy__content__item--vision {
    flex-direction: row-reverse;
  }
}
.philosophy__content__item__image {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1024px) {
  .philosophy__content__item__image {
    width: 50%;
  }
}
.philosophy__content__item__content {
  padding: 40px 20px;
}
@media (min-width: 1024px) {
  .philosophy__content__item__content {
    padding: 80px 40px;
  }
}
.philosophy__content__item__content__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .philosophy__content__item__content__title {
    margin-bottom: 40px;
  }
}
.philosophy__content__item__content__title__icon {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 1024px) {
  .philosophy__content__item__content__title__icon {
    width: 80px;
    height: 80px;
  }
}
.philosophy__content__item__content__title__text {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  padding-bottom: 5px;
  border-bottom: 4px solid #13993f;
}
@media (min-width: 1024px) {
  .philosophy__content__item__content__title__text {
    font-size: 2.5rem;
  }
}
.philosophy__content__item__content__title__text--vision {
  border-bottom: 4px solid rgba(255, 255, 255, 0.8);
}
.philosophy__content__item__content__description {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.philosophy__content__item__content__description p {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
}
@media (min-width: 1024px) {
  .philosophy__content__item__content__description p {
    font-size: 1rem;
  }
}
.philosophy__content__item__content__description__title {
  font-weight: 500 !important;
  color: #333333;
}
.philosophy__content__item__content__description__text {
  padding-left: 10px;
}
.philosophy__content__item__content__description--vision p {
  color: #ffffff;
}

/*
Theme Name: wellink-theme
*/
.company__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding-bottom: 40px;
}
@media (min-width: 1024px) {
  .company__content {
    gap: 120px;
    padding-bottom: 60px;
  }
}
.company__table {
  width: 80%;
  max-width: 1280px;
  padding: 30px 20px;
  margin: 0 auto;
  border-radius: 40px;
  background-color: #ffffff;
  box-shadow: 2px 2px 16px 0px rgba(0, 0, 0, 0.25);
}
@media (min-width: 1024px) {
  .company__table {
    gap: 0;
    padding: 40px;
  }
}
.company__table__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  .company__table__inner {
    border-radius: 40px;
    border: 0.5px solid #aaaaaa;
    overflow: hidden;
    gap: 0;
  }
}
.company__table__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  align-items: flex-start;
  background-color: #eeeeee;
  border-radius: 20px;
  border: 0.5px solid #aaaaaa;
  padding: 20px;
}
@media (min-width: 1024px) {
  .company__table__item {
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 0;
    border-radius: 0;
    border: none;
  }
  .company__table__item:nth-child(even) {
    background-color: #ffffff;
  }
}
.company__table__item__title p {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: #333333;
}
@media (min-width: 1024px) {
  .company__table__item__title p {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .company__table__item__title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    justify-content: flex-start;
    flex-grow: 1;
    width: 200px;
    padding: 28px 30px;
    border-right: 0.5px solid #aaaaaa;
  }
}
.company__table__item__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  align-items: flex-start;
}
@media (min-width: 1024px) {
  .company__table__item__content {
    gap: 20px;
    width: calc(100% - 200px);
    padding: 28px 30px;
  }
}
.company__table__item__content__title {
  font-weight: 500;
  margin-bottom: 5px;
}
.company__table__item__content__images {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1024px) {
  .company__table__item__content__images {
    flex-direction: row;
    gap: 20px;
  }
}
.company__table__item__content__image, .company__table__item__content__map {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 20px;
}
@media (min-width: 1024px) {
  .company__table__item__content__image, .company__table__item__content__map {
    width: calc((100% - 20px) / 2);
    border-radius: 40px;
  }
}
.company__table__item__content__map {
  border: 0.5px solid #aaaaaa;
}
.company__message {
  width: 80%;
  max-width: 1280px;
  margin: 0 auto;
}
.company__message__inner {
  width: 100%;
  padding: 60px 20px;
  background-color: #ffe7a0;
  border-radius: 40px;
}
@media (min-width: 768px) {
  .company__message__inner {
    padding: 60px 40px;
  }
}
@media (min-width: 1024px) {
  .company__message__inner {
    padding: 80px 40px;
    border-radius: 80px;
  }
}
.company__message__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  .company__message__content {
    flex-direction: row;
    gap: 40px;
  }
}
.company__message__content__message {
  width: 100%;
}
@media (min-width: 1024px) {
  .company__message__content__message {
    width: calc(100% - 40px - 300px);
  }
}
@media (min-width: 1280px) {
  .company__message__content__message {
    width: calc(100% - 40px - 400px);
  }
}
.company__message__content__message__title {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 20px;
  color: #333333;
}
@media (min-width: 1024px) {
  .company__message__content__message__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .company__message__content__message__title {
    margin-bottom: 40px;
  }
}
.company__message__content__message__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.company__message__content__image {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 3/4;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 20px;
}
@media (min-width: 1024px) {
  .company__message__content__image {
    width: 300px;
    border-radius: 40px;
  }
}
@media (min-width: 1280px) {
  .company__message__content__image {
    width: 400px;
  }
}
.company__message__ceo {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  text-align: right;
}
@media (min-width: 1024px) {
  .company__message__ceo {
    flex-direction: row;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 40px;
  }
}
.company__message__ceo span {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
}
@media (min-width: 1024px) {
  .company__message__ceo span {
    font-size: 1.25rem;
  }
}

/*
Theme Name: wellink-theme
*/
/*
Theme Name: wellink-theme
*/
.support__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1024px) {
  .support__inner {
    gap: 60px;
  }
}
.support__content--difference {
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 40px;
  box-shadow: 2px 2px 16px 0px rgba(0, 0, 0, 0.25);
}
@media (min-width: 1024px) {
  .support__content--difference {
    padding: 40px;
  }
}
.support__content__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.support__content__title {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #333333;
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .support__content__title {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .support__content__title {
    margin-bottom: 40px;
  }
}
.support__content__table {
  border-radius: 20px;
  border: 0.5px solid #aaaaaa;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .support__content__table--sp {
    display: none;
  }
}
.support__content__table--pc {
  display: none;
}
@media (min-width: 1024px) {
  .support__content__table--pc {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.support__content__table__heading {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
}
@media (min-width: 1024px) {
  .support__content__table__heading {
    font-size: 1.25rem;
  }
}
.support__content__table__heading--a {
  background-color: #1eb0b6;
}
.support__content__table__heading--b {
  background-color: #b0cd46;
}
.support__content__table__heading p {
  color: #ffffff;
  text-align: center;
}
.support__content__table__rowheading {
  background-color: #eeeeee;
}
.support__content__table__rowheading--heading {
  background-color: #ffffff;
}
.support__content__table__cell {
  padding: 20px;
  border-bottom: 0.5px solid #aaaaaa;
}
@media (min-width: 1024px) {
  .support__content__table__cell {
    padding: 28px 30px;
  }
}
.support__content__table__cell:nth-last-child(1) {
  border-bottom: none;
}
.support__content__table__cell--bottom {
  border-bottom: none;
}
.support__content__table__cell--b {
  background-color: #c7e1db;
  border-bottom: 0.5px solid #ffffff;
}
.support__content__table__cell__title {
  font-weight: 500;
}
.support__content__table__cell__content--description {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
}
@media (min-width: 1024px) {
  .support__content__table__cell__content--description {
    font-size: 0.875rem;
  }
}
.support__content__table__body .support__content__table__cell {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/*
Theme Name: wellink-theme
*/
.overview__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1024px) {
  .overview__content {
    gap: 60px;
  }
}
.overview__content__description {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.overview__content__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  .overview__content__inner {
    flex-direction: row;
    gap: 40px;
  }
}
.overview__content__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 40px;
  box-shadow: 2px 2px 16px 0px rgba(0, 0, 0, 0.25);
}
@media (min-width: 1024px) {
  .overview__content__item {
    width: calc((100% - 40px) / 2);
  }
}
.overview__content__item__image {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.overview__content__item__title {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #333333;
  text-align: center;
}
@media (min-width: 1024px) {
  .overview__content__item__title {
    font-size: 1.25rem;
  }
}

.b-type-support__content,
.reward__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (min-width: 1024px) {
  .b-type-support__content,
  .reward__content {
    flex-direction: row;
    gap: 40px;
  }
}
.b-type-support__content__image,
.reward__content__image {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 2px 2px 16px 0px rgba(0, 0, 0, 0.25);
}
@media (min-width: 1024px) {
  .b-type-support__content__image,
  .reward__content__image {
    width: calc((100% - 40px) / 2);
    border-radius: 40px;
  }
}
.b-type-support__content__text,
.reward__content__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
@media (min-width: 1024px) {
  .b-type-support__content__text,
  .reward__content__text {
    width: calc((100% - 40px) / 2);
  }
}
.b-type-support__content__text__title,
.reward__content__text__title {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #333333;
}
@media (min-width: 1024px) {
  .b-type-support__content__text__title,
  .reward__content__text__title {
    font-size: 1.25rem;
  }
}
.b-type-support__content__text__inner,
.reward__content__text__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 1024px) {
  .reward__content {
    flex-direction: row-reverse;
  }
}

/*
Theme Name: wellink-theme
*/
/*
Theme Name: wellink-theme
*/
.sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  align-items: flex-start;
  width: 100%;
}
@media (min-width: 1024px) {
  .sidebar {
    width: 200px;
  }
}
.sidebar--sp {
  display: flex;
  margin-top: 40px;
}
@media (min-width: 1024px) {
  .sidebar--sp {
    display: none;
  }
}
.sidebar--pc {
  display: none;
}
@media (min-width: 1024px) {
  .sidebar--pc {
    display: flex;
  }
}
.sidebar__category__title, .sidebar__tag__title {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: #333333;
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  .sidebar__category__title, .sidebar__tag__title {
    font-size: 1.5rem;
  }
}
.sidebar__category__list, .sidebar__tag__list {
  list-style: disc;
}
.sidebar__category__link, .sidebar__tag__link {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: #555555;
  text-decoration: none;
  transition: all 0.4s ease;
}
@media (min-width: 1024px) {
  .sidebar__category__link, .sidebar__tag__link {
    font-size: 1rem;
  }
}
.sidebar__category__link:hover, .sidebar__tag__link:hover {
  color: #13993f;
}

/*
Theme Name: wellink-theme
*/
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.pagination .page-numbers {
  position: relative;
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 10px;
  color: #555555;
}
@media (min-width: 1024px) {
  .pagination .page-numbers {
    font-size: 1rem;
  }
}
.pagination .page-numbers.current::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #13993f;
}
.pagination a.page-numbers {
  transition: all 0.4s ease;
}
.pagination a.page-numbers:hover {
  color: #13993f;
}

.newslist__content {
  width: 80%;
  max-width: 1280px;
  padding: 60px 0;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .newslist__content {
    padding: 80px 0;
  }
}
.newslist__content__archive-title, .newslist__content__archive-title > span {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: #333333;
}
@media (min-width: 1024px) {
  .newslist__content__archive-title, .newslist__content__archive-title > span {
    font-size: 2rem;
  }
}
.newslist__content__archive-title {
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .newslist__content__archive-title {
    margin-bottom: 60px;
  }
}
.newslist__content__inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.newslist__content__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .newslist__content__list {
    gap: 40px;
    margin-bottom: 60px;
  }
}
.newslist__content__list a {
  width: 100%;
}

.singlepage__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 80%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 0 40px;
}
@media (min-width: 1024px) {
  .singlepage__heading {
    gap: 60px;
    padding: 80px 0 60px;
  }
}
.singlepage__heading__thumbnail {
  width: 100%;
  aspect-ratio: 16/9;
  max-height: 250px;
}
@media (min-width: 1024px) {
  .singlepage__heading__thumbnail {
    max-height: 500px;
  }
}
.singlepage__heading__thumbnail__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
@media (min-width: 1024px) {
  .singlepage__heading__thumbnail__image {
    border-radius: 40px;
  }
}
.singlepage__heading__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 2px 2px 16px 0px rgba(0, 0, 0, 0.25);
}
@media (min-width: 1024px) {
  .singlepage__heading__info {
    padding: 40px;
    border-radius: 40px;
  }
}
.singlepage__heading__info__meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.singlepage__heading__info__meta a,
.singlepage__heading__info__meta span {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  color: #555555;
}
@media (min-width: 1024px) {
  .singlepage__heading__info__meta a,
  .singlepage__heading__info__meta span {
    font-size: 1rem;
  }
}
.singlepage__heading__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
}
.singlepage__heading__title {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #333333;
}
@media (min-width: 1024px) {
  .singlepage__heading__title {
    font-size: 2rem;
  }
}
.singlepage__heading__categories {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.singlepage__heading__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.singlepage__heading__tags__item {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  padding: 5px 10px;
  background-color: #ffe7a0;
  border-radius: 9999px;
  color: #555555;
}
@media (min-width: 1024px) {
  .singlepage__heading__tags__item {
    font-size: 0.875rem;
  }
}
.singlepage__inner {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  width: 80%;
  max-width: 1280px;
  margin: 0 auto;
}
.singlepage__content {
  width: 100%;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 40px;
  box-shadow: 2px 2px 16px 0px rgba(0, 0, 0, 0.25);
}
@media (min-width: 1024px) {
  .singlepage__content {
    padding: 40px;
  }
}
.singlepage__footer {
  width: 80%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 0;
}
@media (min-width: 1024px) {
  .singlepage__footer {
    padding: 60px 0;
  }
}
.singlepage__footer__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  justify-content: center;
}
@media (min-width: 1024px) {
  .singlepage__footer__pagination {
    gap: 60px;
  }
}
.singlepage__footer__pagination .button {
  margin: 0 !important;
}
.singlepage__footer__pagination .pagination-button-wrapper {
  width: 50px;
}
@media (min-width: 1024px) {
  .singlepage__footer__pagination .pagination-button-wrapper {
    width: 150px;
  }
}
.singlepage h1.wp-block-heading {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  padding: 10px 20px;
  margin-bottom: 20px;
  background-color: rgba(19, 153, 63, 0.1);
  border-left: 4px solid #13993f;
  color: #333333;
}
@media (min-width: 1024px) {
  .singlepage h1.wp-block-heading {
    font-size: 1.5rem;
  }
}
.singlepage h2.wp-block-heading {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  padding: 10px 20px;
  margin-bottom: 20px;
  border-left: 4px solid #13993f;
  color: #333333;
}
@media (min-width: 1024px) {
  .singlepage h2.wp-block-heading {
    font-size: 1.25rem;
  }
}
.singlepage h3.wp-block-heading {
  display: flex;
  align-items: center;
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 20px;
  color: #333333;
}
@media (min-width: 1024px) {
  .singlepage h3.wp-block-heading {
    font-size: 1.125rem;
  }
}
.singlepage h3.wp-block-heading::before {
  content: "";
  background-image: url("assets/images/green-disc.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-right: 10px;
}
.singlepage h4.wp-block-heading {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: #333333;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .singlepage h4.wp-block-heading {
    font-size: 1rem;
  }
}
.singlepage h5.wp-block-heading {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  color: #333333;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .singlepage h5.wp-block-heading {
    font-size: 0.875rem;
  }
}
.singlepage h6.wp-block-heading {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  color: #333333;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .singlepage h6.wp-block-heading {
    font-size: 0.875rem;
  }
}
.singlepage p,
.singlepage hr {
  margin: 20px 0;
}
.singlepage figure.wp-block-image img,
.singlepage div.wp-block-image img {
  border-radius: 20px;
}
@media (min-width: 1024px) {
  .singlepage figure.wp-block-image img,
  .singlepage div.wp-block-image img {
    border-radius: 40px;
  }
}
.singlepage figure.wp-block-gallery {
  flex-direction: column;
}
@media (min-width: 1024px) {
  .singlepage figure.wp-block-gallery {
    flex-direction: row;
  }
}
@media (max-width: 1023px) {
  .singlepage figure.wp-block-gallery figure.wp-block-image {
    width: 100% !important;
  }
}

/*
Theme Name: wellink-theme
*/
.contact__message {
  width: 80%;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 40px;
}
@media (min-width: 1024px) {
  .contact__message {
    padding-bottom: 60px;
  }
}
.contact__message__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  align-items: flex-start;
  width: 100%;
  background-color: #ffffff;
  border-radius: 40px;
  padding: 60px 20px;
  box-shadow: 2px 2px 16px 0px rgba(0, 0, 0, 0.25);
}
@media (min-width: 1024px) {
  .contact__message__inner {
    padding: 80px;
  }
}
.contact__message__title {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  width: 100%;
  margin-bottom: 20px;
  color: #333333;
  text-align: center;
}
@media (min-width: 1024px) {
  .contact__message__title {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  .contact__message__title {
    margin-bottom: 40px;
  }
}
.contact__message__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 0.5px solid #eeeeee;
}
.contact__message__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding-top: 20px;
}
.contact__message__contact__image {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.contact__message__contact p {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .contact__message__contact p {
    font-size: 1.125rem;
  }
}
.contact__form {
  width: 80%;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 40px;
}
@media (min-width: 1024px) {
  .contact__form {
    padding-bottom: 60px;
  }
}
.contact__form__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  align-items: flex-start;
  width: 100%;
  background-color: #ffffff;
  border-radius: 40px;
  padding: 60px 20px;
  box-shadow: 2px 2px 16px 0px rgba(0, 0, 0, 0.25);
}
@media (min-width: 1024px) {
  .contact__form__inner {
    padding: 80px;
  }
}
.contact__form div.wp-block-contact-form-7-contact-form-selector {
  width: 100%;
}
.contact__form div.wpcf7 {
  width: 100%;
}
.contact__form form.wpcf7-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}
.contact__form div.form-row {
  width: 100%;
}
.contact__form div.form-row p:nth-child(1) {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  margin-bottom: 8px;
}
.contact__form div.form-row p:nth-child(1) label {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: #333333;
}
@media (min-width: 1024px) {
  .contact__form div.form-row p:nth-child(1) label {
    font-size: 1rem;
  }
}
.contact__form div.form-row p:nth-child(1) span.required-label {
  color: #ff0000;
}
.contact__form div.form-row span.wpcf7-spinner {
  display: none;
}
.contact__form div.form-row input.wpcf7-submit {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 16px 0;
  background-color: #13993f;
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.4s ease;
}
@media (min-width: 1024px) {
  .contact__form div.form-row input.wpcf7-submit {
    font-size: 1rem;
  }
}
.contact__form div.form-row input.wpcf7-submit:hover {
  opacity: 0.7;
}
.contact__form select.wpcf7-form-control,
.contact__form input.wpcf7-form-control,
.contact__form textarea.wpcf7-form-control {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  width: 100%;
  background-color: #eeeeee;
  border: 1px solid #aaaaaa;
  border-radius: 10px;
  padding: 10px;
}
@media (min-width: 1024px) {
  .contact__form select.wpcf7-form-control,
  .contact__form input.wpcf7-form-control,
  .contact__form textarea.wpcf7-form-control {
    font-size: 1rem;
  }
}
.contact__form select.wpcf7-form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  padding-right: 40px;
}
.contact__form label.privacy-label span.wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact__form label.privacy-label input[type=checkbox] {
  width: 16px;
  height: 16px;
}
.contact__form label.privacy-label a {
  display: inline-block;
  color: #13993f;
  text-decoration: underline;
  padding-left: 10px;
}

.thanks__content {
  width: 80%;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 40px;
}
@media (min-width: 1024px) {
  .thanks__content {
    padding-bottom: 60px;
  }
}
.thanks__content__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: #ffffff;
  border-radius: 40px;
  padding: 60px 20px;
  box-shadow: 2px 2px 16px 0px rgba(0, 0, 0, 0.25);
}
@media (min-width: 1024px) {
  .thanks__content__inner {
    gap: 40px;
    padding: 80px;
  }
}
.thanks__content__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.thanks__content__heading__icon {
  width: 64px;
  height: 64px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 1024px) {
  .thanks__content__heading__icon {
    width: 80px;
    height: 80px;
  }
}
.thanks__content__heading__title {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #333333;
  text-align: center;
}
@media (min-width: 1024px) {
  .thanks__content__heading__title {
    font-size: 2rem;
  }
}
.thanks__content__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/*
Theme Name: wellink-theme
*/
.privacy-policy__content {
  width: 80%;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 60px;
}
@media (min-width: 1024px) {
  .privacy-policy__content {
    padding-bottom: 80px;
  }
}
.privacy-policy__content__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  background-color: #ffffff;
  border-radius: 40px;
  padding: 60px 20px;
  box-shadow: 2px 2px 16px 0px rgba(0, 0, 0, 0.25);
}
@media (min-width: 1024px) {
  .privacy-policy__content__inner {
    padding: 80px;
  }
}
.privacy-policy__content__policy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 0.5px solid #eeeeee;
}
.privacy-policy__content__policy h2.wp-block-heading {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  width: 100%;
  color: #333333;
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .privacy-policy__content__policy h2.wp-block-heading {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  .privacy-policy__content__policy h2.wp-block-heading {
    margin-bottom: 40px;
  }
}
.privacy-policy__content__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  align-items: flex-start;
  width: 100%;
  padding-top: 20px;
}
.privacy-policy__content__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  align-items: flex-end;
  width: 100%;
}
.privacy-policy__content__info p {
  text-align: right;
}
.privacy-policy__content__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  align-items: flex-start;
  width: 100%;
}
.privacy-policy__content__contact__title {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: #333333;
}
@media (min-width: 1024px) {
  .privacy-policy__content__contact__title {
    font-size: 1.25rem;
  }
}
.privacy-policy__content__contact__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  align-items: flex-start;
  width: 100%;
  background-color: #fcf4dc;
  border-radius: 20px;
  padding: 20px;
}
.privacy-policy__item div.wp-block-group__inner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  align-items: flex-start;
}
.privacy-policy__item div.wp-block-group__inner-container h3.wp-block-heading {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: #333333;
}
@media (min-width: 1024px) {
  .privacy-policy__item div.wp-block-group__inner-container h3.wp-block-heading {
    font-size: 1.25rem;
  }
}

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

body {
  margin: 0;
  padding: 0;
  background-color: #fcf4dc;
  overflow-x: hidden;
}

.site-main {
  margin-top: 60px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
}

ul {
  margin: 0;
}

@media (min-width: 1024px) {
  br.sp {
    display: none;
  }
}

span.bold {
  font-weight: 700;
}

span.red {
  color: #ff0000;
}/*# sourceMappingURL=style.css.map */