@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #121212;
  padding-left: 50px;
  padding-right: 50px;
}
body a {
  color: #115ffb;
  text-decoration: none;
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Century Gothic", "Noto Sans JP", sans-serif;
  font-size: 72px;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: 48px;
  }
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 20px 0;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 100px;
  padding: 10px 20px;
  margin: 0 auto;
}
.header__logo {
  line-height: 1;
}
.header__logo a {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}
.header__toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.header__toggle .material-icons {
  font-size: 32px;
  color: #00c8c8;
}
.header__toggle.is-active {
  position: absolute;
  z-index: 1000;
  right: 21px;
  top: 31px;
}
.header__nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.header__nav.is-active {
  display: block;
}
.header__nav.is-active .header__nav-list {
  padding: 122px 119px 121px 120px;
}
.header__nav-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .header__nav-item--has-submenu {
    display: flex;
    gap: 8px;
    position: relative;
  }
  .header__nav-item--has-submenu .header__submenu {
    position: absolute;
    top: 55px;
    width: 149px;
    border-radius: 16px;
    padding: 16px;
    background-color: #00c8c8;
    display: none;
  }
  .header__nav-item--has-submenu .header__submenu.is-active {
    display: flex;
  }
}
@media (min-width: 768px) {
  .header__nav-item--has-icon {
    display: flex;
    gap: 12px;
  }
  .header__nav-item--has-icon .header__nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 31.5px;
    background: #00c8c8;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    border-radius: 100px;
    overflow: hidden;
  }
  .header__nav-item--has-icon .header__nav-link:hover {
    color: #ffffff;
  }
  .header__nav-item--has-icon .header__nav-link--mail::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 100px;
    background: linear-gradient(90deg, #00c8c8 0%, #006262 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
  }
  .header__nav-item--has-icon .header__nav-link--mail:hover::before {
    opacity: 1;
  }
  .header__nav-item--has-icon .header__nav-link--mail > * {
    position: relative;
    z-index: 1;
  }
  .header__nav-item--has-icon .header__nav-link--phone {
    color: #006f6f;
    background-color: transparent;
    border: 1px solid #006f6f;
    padding: 16px 20px;
    transition: 0.3s ease;
    cursor: inherit;
  }
  .header__nav-item--has-icon .header__nav-link--phone:hover {
    background-color: #e6fafa;
    color: #006f6f;
  }
}
.header__nav-item--has-icon .header__nav-link--phone {
  display: none;
}
@media (min-width: 768px) {
  .header__nav-item--has-icon .header__nav-link--phone {
    display: flex;
  }
}
.header__nav-item--has-icon .material-icons {
  display: none;
}
@media (min-width: 768px) {
  .header__nav-item--has-icon .material-icons {
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
  }
}
.header__nav-link {
  font-weight: 700;
  font-size: 18px;
  line-height: 32px;
  color: #595959;
  cursor: pointer;
  display: inline-block;
}
.header__nav-link:hover {
  color: #00c8c8;
}
.header__toggle-pc {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
@media (min-width: 768px) {
  .header__toggle-pc {
    display: flex;
    align-items: center;
  }
}
.header__submenu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 8px;
}
@media (min-width: 768px) {
  .header__submenu {
    gap: 16px;
  }
}
.header__submenu-link {
  color: #121212;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
}
@media (min-width: 768px) {
  .header__submenu-link {
    color: #ffffff;
    font-size: 18px;
    line-height: 32px;
  }
}
@media (min-width: 768px) {
  .header__submenu-link:hover {
    color: #ffffff;
  }
}
.header__submenu-link::before {
  content: "・";
}
@media (min-width: 768px) {
  .header__submenu-link::before {
    display: none;
  }
}
@media (min-width: 906px) {
  .header {
    padding: 24px 50px 0;
  }
  .header__toggle {
    display: none;
  }
  .header__nav {
    display: block;
    position: static;
    width: auto;
    height: auto;
    background: transparent;
  }
  .header__nav.is-active {
    display: block;
  }
  .header__nav .header__nav-list {
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding: 0;
  }
  .header__container {
    max-width: 1200px;
  }
}

main {
  padding-top: 80px;
}
@media (min-width: 906px) {
  main {
    padding-top: 102px;
  }
}

.footer {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .footer {
    margin-bottom: 0;
  }
}
.footer__contact {
  padding: 0 20px;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .footer__contact {
    display: flex;
    margin: auto;
    flex-direction: column;
    align-items: center;
    gap: 17px;
    margin-bottom: 100px;
  }
  .footer__contact .footer__contact-list {
    justify-content: center;
  }
}
@media (min-width: 1097px) {
  .footer__contact {
    width: 100%;
    max-width: 1172px;
    margin-left: auto;
    margin-right: auto;
    gap: 36px;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
  }
  .footer__contact .footer__contact-list {
    justify-content: flex-start;
  }
}
.footer__contact__header {
  display: inline-block;
}
.footer__contact__title {
  font-weight: 400;
  font-size: 48px;
  line-height: 100%;
  background: linear-gradient(90deg, #00c8c8 0%, #006262 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  padding-bottom: 8px;
}
@media (min-width: 768px) {
  .footer__contact__title {
    font-size: 72px;
  }
}
.footer__contact__subtitle {
  color: #000000;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
}
@media (min-width: 768px) {
  .footer__contact__subtitle {
    font-size: 18px;
    line-height: 32px;
  }
}
.footer__contact-text {
  padding-block: 16px;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #121212;
}
.footer__contact-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 768px) {
  .footer__contact-list {
    flex-direction: row;
    gap: 12px;
    width: 100%;
    flex: 1;
  }
}
.footer__contact-item {
  width: 100%;
  max-width: 368px;
}
.footer__contact-link, .footer__contact-group {
  position: relative;
  padding: 32px 25px;
  background: #00c8c8;
  color: #fff;
  display: block;
  border-radius: 24px;
  overflow: hidden;
}
.footer__contact-link-text, .footer__contact-group-text {
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  padding-bottom: 4px;
  text-align: center;
}
.footer__contact-link-icon, .footer__contact-group-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.footer__contact-link-icon .material-icons, .footer__contact-group-icon .material-icons {
  font-size: 32px;
  height: 26px;
}
.footer__contact-link-icon .footer__icon-label, .footer__contact-group-icon .footer__icon-label {
  font-weight: 400;
  font-size: 32px;
  line-height: 56px;
}
.footer__contact-link:hover {
  color: #ffffff;
}
.footer__contact-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #00c8c8 0%, #006262 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}
.footer__contact-link:hover::before {
  opacity: 1;
}
.footer__contact-link > * {
  position: relative;
  z-index: 1;
}
.footer__other {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .footer__other {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 100px;
  }
}
.footer__other .other__header-wrapper {
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .footer__other .other__header-wrapper {
    width: 100%;
    max-width: 1176px;
    margin-left: auto;
    margin-right: auto;
  }
}
.footer__other .other__header {
  padding-top: 32px;
  display: inline-block;
}
@media (min-width: 768px) {
  .footer__other .other__header {
    padding-top: 40px;
  }
}
.footer__other .other__header-title {
  font-weight: 400;
  font-size: 48px;
  line-height: 100%;
  background: linear-gradient(90deg, #00c8c8 0%, #006262 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  padding-bottom: 8px;
}
@media (min-width: 768px) {
  .footer__other .other__header-title {
    font-size: 72px;
  }
}
.footer__other .other__header-subtitle {
  color: #000000;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
}
@media (min-width: 768px) {
  .footer__other .other__header-subtitle {
    font-size: 18px;
    line-height: 32px;
  }
}
.footer__other .other__header {
  padding-top: 0;
}
.footer__other-list {
  width: 100%;
  max-width: 1176px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .footer__other-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex-direction: row;
  }
}
.footer__other-item {
  position: relative;
  overflow: hidden;
  padding: 32px 46px;
}
.footer__other-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: linear-gradient(90deg, #00c8c8 0%, #006262 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}
.footer__other-item:hover::before {
  opacity: 1;
}
.footer__other-item > * {
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .footer__other-item {
    width: 50%;
  }
}
.footer__other-item::before {
  opacity: 1;
  border-radius: 24px;
}
.footer__other-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  color: #ffffff;
}
@media (min-width: 1142px) {
  .footer__other-group {
    flex-direction: row;
    gap: 32px;
    justify-content: center;
  }
}
.footer__other-group-text {
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
}
.footer__other-group-icon {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer__other-group-icon i {
  font-weight: 900;
  font-size: 40px;
  line-height: 34px;
}
.footer__other-group-icon .footer__icon-label {
  font-weight: 700;
  font-size: 28px;
  line-height: 48px;
}
.footer__sitemap {
  padding-top: 32px;
  padding-bottom: 26px;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  color: #ffffff;
  background-color: #00c8c8;
}
@media (min-width: 768px) {
  .footer__sitemap {
    padding-inline: 20px;
    padding-top: 50px;
    padding-bottom: 77px;
  }
}
@media (min-width: 768px) {
  .footer__top {
    display: flex;
    gap: 62.5px;
    width: 100%;
    max-width: 1137px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .footer__sitemap-header {
    width: 100%;
    max-width: 334px;
  }
}
.footer__title-sitemap {
  font-weight: 400;
  font-size: 48px;
  line-height: 100%;
  padding-bottom: 8px;
  padding-left: 20px;
}
@media (min-width: 768px) {
  .footer__title-sitemap {
    font-size: 72px;
    padding-left: 0;
  }
}
.footer__subtitle-sitemap {
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  padding-left: 20px;
}
@media (min-width: 768px) {
  .footer__subtitle-sitemap {
    padding-left: 0;
  }
}
.footer__sitemap-columns {
  padding: 20px 19px 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
@media (min-width: 768px) {
  .footer__sitemap-columns {
    padding: 0;
    flex-direction: column;
    width: 100%;
    max-width: 557px;
  }
}
.footer__sitemap-column {
  width: 100%;
  max-width: 160px;
}
@media (min-width: 768px) {
  .footer__sitemap-column {
    max-width: none;
  }
}
@media (min-width: 768px) {
  .footer__sitemap-column ul {
    display: flex;
    width: 100%;
  }
}
.footer__sitemap-column ul li:not(:last-of-type) {
  padding-bottom: 4px;
}
@media (min-width: 768px) {
  .footer__sitemap-column ul li:not(:last-of-type) {
    padding-right: 16px;
  }
  .footer__sitemap-column ul li:first-of-type {
    width: 100%;
    max-width: 160px;
    padding-right: 14px;
  }
}
.footer__sitemap-link {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #ffffff;
}
@media (min-width: 768px) {
  .footer__sitemap-link {
    font-size: 16px;
    line-height: 28px;
  }
}
.footer__sitemap-link:hover {
  color: #006f6f;
}
.footer__sitemap-link--title {
  font-weight: 700;
  font-size: 18px;
  line-height: 32px;
  padding-bottom: 8px;
}
.footer__divider {
  margin-top: 32px;
  border: 0;
  height: 1px;
  background: #fff;
  margin-inline: 20px;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .footer__divider {
    width: 100%;
    max-width: 1137px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 616px) {
  .footer__bottom {
    display: flex;
    gap: 72px;
    width: 100%;
    max-width: 1137px;
    margin-left: auto;
    margin-right: auto;
  }
}
.footer__logo {
  margin-inline: 20px;
  padding-top: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__logo {
    margin-left: 0;
  }
}
.footer__info {
  padding: 24.14px 22px 0 18px;
}
.footer__info-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 32px;
}
.footer__info-address, .footer__info-tel {
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .footer__info-address, .footer__info-tel {
    font-size: 16px;
    line-height: 28px;
  }
}
.footer__copyright {
  font-weight: 400;
  font-size: 12px;
  line-height: 21px;
  padding: 4px 0 7px;
  text-align: center;
  color: #595959;
}
@media (min-width: 768px) {
  .footer__copyright {
    font-size: 14px;
    line-height: 24px;
  }
}

#back-to-top {
  position: fixed;
  bottom: 92px;
  right: 20px;
  z-index: 999;
  background: #333;
  color: #fff;
  border: none;
  padding: 13px 14px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  border-radius: 8px;
  background-color: #00c8c8;
}
@media (min-width: 768px) {
  #back-to-top {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
  }
}
#back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.mobile-fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 9999;
}
.mobile-fixed-footer__contact-link, .mobile-fixed-footer__phone {
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  width: 100%;
  height: 100%;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}
.mobile-fixed-footer__contact-link {
  color: #ffffff;
  background-color: #00c8c8;
}
.mobile-fixed-footer__phone {
  color: #006f6f;
  background-color: #e6fafa;
}
@media (min-width: 768px) {
  .mobile-fixed-footer {
    display: none;
  }
}

.breadcrumb {
  padding-top: 12px;
  padding-inline: 20px;
}
.breadcrumb__wrapper {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #121212;
}
@media (min-width: 768px) {
  .breadcrumb__wrapper {
    width: 100%;
    max-width: 1136px;
    margin-left: auto;
    margin-right: auto;
  }
}
.breadcrumb__wrapper > span:not(:last-of-type) {
  padding-right: 4px;
}
.breadcrumb__wrapper > span a {
  color: #115ffb;
}

.page-title-wrapper {
  padding-inline: 20px;
}
.page-title-wrapper .page-title-block {
  margin-top: 16px;
  padding: 32px 20px;
  background-color: #e6fafa;
  border-radius: 56px;
  text-align: center;
}
@media (min-width: 768px) {
  .page-title-wrapper .page-title-block {
    border-radius: 100px;
    padding-block: 24px;
    width: 100%;
    max-width: 1136px;
    margin-left: auto;
    margin-right: auto;
  }
}
.page-title-wrapper .page-title-block__english {
  font-weight: 400;
  font-size: 48px;
  line-height: 100%;
  background: linear-gradient(90deg, #00c8c8 0%, #006262 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  padding-bottom: 8px;
  font-weight: 700;
  font-size: 56px;
  line-height: 56px;
  padding-bottom: 12px;
  display: inline-block;
}
@media (min-width: 768px) {
  .page-title-wrapper .page-title-block__english {
    font-size: 72px;
  }
}
@media (min-width: 768px) {
  .page-title-wrapper .page-title-block__english {
    font-size: 72px;
    line-height: 72px;
    padding-bottom: 18px;
  }
}
.page-title-wrapper .page-title-block__japanese {
  font-weight: 700;
  font-size: 18px;
  line-height: 32px;
  color: #595959;
  padding: 8px;
  padding-bottom: 0;
  border-top: 1px solid #00c8c8;
  display: inline-block;
}
@media (min-width: 768px) {
  .page-title-wrapper .page-title-block__japanese {
    font-size: 20px;
    line-height: 34px;
  }
}

.section-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 34px;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 11px;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 28px;
    line-height: 48px;
  }
}
.section-title__mark-group {
  display: flex;
  gap: 1.65px;
}
@media (min-width: 768px) {
  .section-title__mark-group {
    gap: 2px;
  }
}
.section-title__mark {
  width: 13.18px;
  height: 13.18px;
}
@media (min-width: 768px) {
  .section-title__mark {
    width: 16px;
    height: 16px;
  }
}
.section-title__mark--green-light {
  background-color: #00c8c8;
}
.section-title__mark--green {
  background-color: #006f6f;
}

.product-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 368px;
}
@media (min-width: 768px) {
  .product-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
}
.product-item__image {
  border-radius: 14.57px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .product-item__image {
    border-radius: 16px;
    overflow: hidden;
  }
}
.product-item__image img {
  width: 368px;
  height: 368px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.product-item__body {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.product-item__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 32px;
  padding: 8px;
  border-bottom: 1px solid #00c8c8;
}
@media (min-width: 768px) {
  .product-item__title {
    font-size: 20px;
    line-height: 34px;
  }
}
.product-item__descriptions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-item__description {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-item__description-label {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  width: 80px;
  border-radius: 8px;
  background-color: #006f6f;
  color: #ffffff;
}
.product-item__description-content {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}

.feature-list {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
@media (min-width: 768px) {
  .feature-list {
    padding-top: 24px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
  }
}

.feature-item {
  background-color: #e6fafa;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 16px;
  padding: 16px;
  max-width: 368px;
  width: 100%;
}
@media (min-width: 768px) {
  .feature-item {
    padding: 20px;
  }
}
.feature-item__title {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.feature-item__title span {
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  color: #00c8c8;
}
@media (min-width: 768px) {
  .feature-item__title span {
    font-size: 18px;
    line-height: 32px;
  }
}
.feature-item__title span.feature-item__number {
  font-size: 40px;
  line-height: 100%;
}
@media (min-width: 768px) {
  .feature-item__title span.feature-item__number {
    font-size: 48px;
  }
}
.feature-item__divider {
  border: 0;
  height: 1px;
  width: 100%;
  margin: 0;
  background-color: #00c8c8;
}
.feature-item__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.feature-item__subtitle {
  font-weight: 700;
  font-size: 18px;
  line-height: 32px;
  color: #000000;
}
@media (min-width: 768px) {
  .feature-item__subtitle {
    font-size: 20px;
    line-height: 34px;
  }
}
.feature-item__description {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #000000;
}
@media (min-width: 768px) {
  .feature-item__description {
    font-size: 16px;
    line-height: 28px;
  }
}

.main-visual {
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .main-visual {
    width: 100%;
    max-width: 1512px;
    margin-left: auto;
    margin-right: auto;
    padding-inline: 50px;
  }
}
.main-visual__title {
  font-weight: 400;
  font-size: 48px;
  line-height: 100%;
  background: linear-gradient(90deg, #00c8c8 0%, #006262 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  padding-bottom: 8px;
  padding: 0;
  padding-top: 16px;
  font-weight: 700;
  font-size: 32px;
  line-height: 150%;
}
@media (min-width: 768px) {
  .main-visual__title {
    font-size: 72px;
  }
}
@media (min-width: 768px) {
  .main-visual__title {
    padding-top: 40px;
    font-size: 56px;
    line-height: 100px;
  }
}
@media (min-width: 544px) {
  .main-visual__title br {
    display: none;
  }
}
.main-visual__lead {
  padding-top: 16px;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #121212;
}
@media (min-width: 768px) {
  .main-visual__lead {
    font-size: 16px;
    line-height: 28px;
  }
}
.main-visual__image {
  margin-top: 20px;
  border-radius: 24px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .main-visual__image {
    margin-top: 47px;
    border-radius: 100px;
    overflow: hidden;
  }
}
.main-visual__image img {
  width: 100%;
}

.services {
  padding-top: 32px;
}
@media (min-width: 768px) {
  .services {
    padding-top: 91px;
  }
}
.services__group {
  display: flex;
  flex-direction: column;
  padding-inline: 20px;
  align-items: center;
}
@media (min-width: 1001px) {
  .services__group {
    flex-direction: row;
    gap: 16px;
    width: 100%;
    max-width: 1176px;
    margin-left: auto;
    margin-right: auto;
    align-items: flex-start;
  }
}
.services__block {
  width: 100%;
}
@media (min-width: 1001px) {
  .services__block {
    max-width: 464px;
    width: 100%;
  }
}
.services__header {
  display: inline-block;
}
.services__title {
  font-weight: 400;
  font-size: 48px;
  line-height: 100%;
  background: linear-gradient(90deg, #00c8c8 0%, #006262 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  padding-bottom: 8px;
}
@media (min-width: 768px) {
  .services__title {
    font-size: 72px;
  }
}
.services__subtitle {
  color: #000000;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
}
@media (min-width: 768px) {
  .services__subtitle {
    font-size: 18px;
    line-height: 32px;
  }
}
.services__text-wrapper {
  padding-top: 16px;
}
.services__text-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
}
@media (min-width: 768px) {
  .services__text-title {
    font-size: 18px;
    line-height: 32px;
  }
}
.services__text {
  padding-top: 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .services__text {
    font-size: 16px;
    line-height: 28px;
  }
}
.services__image {
  margin-top: 24px;
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 1001px) {
  .services__image {
    margin-top: 0;
  }
}
.services__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 20px 0 19.5px;
}
@media (min-width: 768px) {
  .services__list {
    width: 100%;
    max-width: 1135.5px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: row;
    gap: 68px;
    padding-top: 64px;
  }
}
.services__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
@media (min-width: 768px) {
  .services__item {
    gap: 24px;
  }
}
.services__features {
  list-style: disc;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  padding-left: 13.45px;
}
@media (min-width: 768px) {
  .services__features {
    font-size: 16px;
    line-height: 28px;
  }
}

.brand {
  padding-top: 64px;
}
.brand__header-wrapper {
  display: flex;
  gap: 16px;
  flex-direction: column;
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .brand__header-wrapper {
    width: 100%;
    max-width: 1176px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: row;
    gap: 48px;
  }
}
.brand__header {
  display: inline-block;
}
.brand__title {
  font-weight: 400;
  font-size: 48px;
  line-height: 100%;
  background: linear-gradient(90deg, #00c8c8 0%, #006262 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  padding-bottom: 8px;
}
@media (min-width: 768px) {
  .brand__title {
    font-size: 72px;
  }
}
.brand__subtitle {
  color: #000000;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
}
@media (min-width: 768px) {
  .brand__subtitle {
    font-size: 18px;
    line-height: 32px;
  }
}
.brand__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #121212;
}
@media (min-width: 768px) {
  .brand__text {
    font-size: 16px;
    line-height: 28px;
    padding-top: 22px;
  }
}
.brand__list {
  padding-top: 16px;
}
.brand__item {
  padding-inline: 16px;
  width: 100%;
  max-width: 375px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .brand__item {
    max-width: 1168px;
  }
}
.brand__item:not(:last-of-type) {
  padding-bottom: 20px;
}
.brand__card {
  display: block;
  color: #ffffff;
  border-radius: 16px;
  background: linear-gradient(180deg, #1cf3f3 0%, #08a19c 100%);
}
@media (min-width: 768px) {
  .brand__card {
    background-color: transparent;
    background: none;
  }
}
.brand__image {
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.brand__info {
  padding: 20px;
}
.brand__logo-wrapper {
  display: flex;
  gap: 24px;
  align-items: center;
  padding-bottom: 16px;
}
.brand__name {
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  padding-bottom: 8px;
}
.brand__description {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .brand .brand__card {
    display: flex;
    position: relative;
    overflow: hidden;
  }
  .brand .brand__card .brand__image img {
    transition: transform 0.3s ease;
  }
  .brand .brand__card .brand__logo-wrapper {
    transition: gap 0.3s ease;
  }
  .brand .brand__card:hover .brand__image img {
    transform: scale(1.1);
  }
  .brand .brand__card:hover .brand__logo-wrapper {
    gap: 32px;
  }
  .brand .brand__info {
    position: relative;
    flex: 1;
    background: linear-gradient(180deg, #1cf3f3 0%, #08a19c 100%);
    color: #fff;
    padding: 63px 48px 64px;
    clip-path: polygon(0 0, 85% 0, 70% 100%, 0% 100%);
    z-index: 1;
    width: 100%;
    max-width: 650px;
  }
  .brand .brand__image {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 60%;
    z-index: 0;
  }
  .brand .brand__image picture,
  .brand .brand__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .brand .brand__logo-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-bottom: 24px;
  }
  .brand .brand__description {
    font-size: 16px;
    line-height: 28px;
    width: 100%;
    max-width: 288px;
  }
  .brand .brand__arrow img {
    width: 40px;
    height: 40px;
  }
  .brand .brand__card--right {
    flex-direction: row-reverse;
  }
  .brand .brand__card--right .brand__image {
    right: unset;
    left: 0;
  }
  .brand .brand__card--right .brand__info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    clip-path: polygon(100% 0, 15% 0, 30% 100%, 100% 100%);
  }
  .brand .brand__card--right .brand__logo-wrapper,
  .brand .brand__card--right .brand__name {
    width: 100%;
    max-width: 288px;
  }
  .brand .brand__item:nth-of-type(2) .brand__info {
    padding-top: 91px;
    padding-bottom: 77px;
  }
  .brand .brand__item:nth-of-type(3) .brand__info {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .brand .brand__item:last-of-type .brand__info {
    padding-top: 45px;
    padding-bottom: 51px;
  }
}

.company {
  padding-top: 64px;
  padding-inline: 16px;
}
.company__link {
  display: block;
  border: 1px solid #b8b8b8;
  border-radius: 16px;
  transition: box-shadow 0.3s ease;
}
@media (min-width: 768px) {
  .company__link {
    width: 100%;
    max-width: 1138px;
    margin-left: auto;
    margin-right: auto;
  }
}
.company__link:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
.company__header-wrapper {
  position: relative;
  display: flex;
  gap: 18px;
  flex-direction: column;
  margin: 20px;
}
@media (min-width: 768px) {
  .company__header-wrapper {
    flex-direction: row;
    gap: 40px;
    align-items: center;
    margin: 48px;
  }
}
.company__header {
  display: inline-block;
}
.company__title {
  font-weight: 400;
  font-size: 48px;
  line-height: 100%;
  background: linear-gradient(90deg, #00c8c8 0%, #006262 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  padding-bottom: 8px;
}
@media (min-width: 768px) {
  .company__title {
    font-size: 72px;
  }
}
.company__subtitle {
  color: #000000;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
}
@media (min-width: 768px) {
  .company__subtitle {
    font-size: 18px;
    line-height: 32px;
  }
}
.company__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #121212;
}
@media (min-width: 768px) {
  .company__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
  }
}
@media (min-width: 816px) {
  .company__text br {
    display: none;
  }
}
.company__arrow-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (min-width: 768px) {
  .company__arrow-wrapper {
    bottom: unset;
  }
}
.company__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #00c8c8;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}
.company__arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: linear-gradient(90deg, #00c8c8 0%, #006262 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}
.company__arrow:hover::before {
  opacity: 1;
}
.company__arrow > * {
  position: relative;
  z-index: 1;
}
.company img {
  -o-object-fit: contain;
     object-fit: contain;
}

.news {
  margin-block: 64px;
  padding-block: 40px;
  background-color: #e6fafa;
}
@media (min-width: 768px) {
  .news {
    margin-block: 100px;
    padding-block: 72px;
  }
}
.news__group {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .news__group {
    flex-direction: column;
    gap: 23px;
    padding-inline: 20px;
  }
}
@media (min-width: 884px) {
  .news__group {
    flex-direction: row;
    gap: 89px;
    width: 100%;
    max-width: 1176px;
    margin-left: auto;
    margin-right: auto;
  }
}
.news__block {
  display: flex;
  flex-direction: row;
  padding-left: 20px;
  padding-right: 25px;
  justify-content: space-between;
  align-items: flex-end;
}
@media (min-width: 884px) {
  .news__block {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 80px;
    padding: 0;
  }
}
.news__header {
  display: inline-block;
}
.news__title {
  font-weight: 400;
  font-size: 48px;
  line-height: 100%;
  background: linear-gradient(90deg, #00c8c8 0%, #006262 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  padding-bottom: 8px;
}
@media (min-width: 768px) {
  .news__title {
    font-size: 72px;
  }
}
.news__subtitle {
  color: #000000;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
}
@media (min-width: 768px) {
  .news__subtitle {
    font-size: 18px;
    line-height: 32px;
  }
}
.news__link {
  display: flex;
  gap: 16px;
  align-items: center;
  color: #000000;
}
.news__link span {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  padding: 4px 8px;
  text-wrap: nowrap;
  border-bottom: 1px solid #00c8c8;
}
.news__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #00c8c8;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}
.news__arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: linear-gradient(90deg, #00c8c8 0%, #006262 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}
.news__arrow:hover::before {
  opacity: 1;
}
.news__arrow > * {
  position: relative;
  z-index: 1;
}
.news__list {
  padding-top: 23px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 20px;
  padding-right: 22px;
}
@media (min-width: 768px) {
  .news__list {
    padding: 0;
  }
}
.news__content-link {
  padding: 12px 28px;
  border-radius: 32px;
  background-color: #ffffff;
  display: flex;
  gap: 8px;
  align-items: center;
  color: #000000;
  transition: box-shadow 0.3s ease;
}
@media (min-width: 768px) {
  .news__content-link {
    padding: 24px 48px;
    gap: 16px;
    border-radius: 100px;
  }
}
.news__content-link:hover {
  color: inherit;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
}
.news__content-link:hover .news__arrow::before {
  opacity: 1;
}
.news__content {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  flex: 1;
}
@media (min-width: 768px) {
  .news__content {
    display: flex;
    gap: 26px;
  }
}
.news__content-date {
  display: block;
  padding-bottom: 4px;
}
@media (min-width: 768px) {
  .news__content-mobile {
    display: none;
  }
}
.news__content-pc {
  display: none;
}
@media (min-width: 768px) {
  .news__content-pc {
    display: block;
  }
}

.archive-news__header-wrapper {
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .archive-news__header-wrapper {
    width: 100%;
    max-width: 1176px;
    margin-left: auto;
    margin-right: auto;
  }
}
.archive-news__header {
  padding-top: 32px;
  display: inline-block;
}
@media (min-width: 768px) {
  .archive-news__header {
    padding-top: 40px;
  }
}
.archive-news__header-title {
  font-weight: 400;
  font-size: 48px;
  line-height: 100%;
  background: linear-gradient(90deg, #00c8c8 0%, #006262 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  padding-bottom: 8px;
}
@media (min-width: 768px) {
  .archive-news__header-title {
    font-size: 72px;
  }
}
.archive-news__header-subtitle {
  color: #000000;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
}
@media (min-width: 768px) {
  .archive-news__header-subtitle {
    font-size: 18px;
    line-height: 32px;
  }
}
.archive-news__list-wrapper {
  padding-inline: 20px;
}
.archive-news__list {
  width: 100%;
  max-width: 845px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.archive-news__list__content-link {
  padding: 12px 28px;
  border-radius: 32px;
  background-color: #ffffff;
  display: flex;
  gap: 8px;
  align-items: center;
  color: #000000;
  transition: box-shadow 0.3s ease;
}
@media (min-width: 768px) {
  .archive-news__list__content-link {
    padding: 24px 48px;
    gap: 16px;
    border-radius: 100px;
  }
}
.archive-news__list__content-link:hover {
  color: inherit;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
}
.archive-news__list__content-link:hover .news__arrow::before {
  opacity: 1;
}
.archive-news__list__content {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  flex: 1;
}
@media (min-width: 768px) {
  .archive-news__list__content {
    display: flex;
    gap: 26px;
  }
}
.archive-news__list__content-date {
  display: block;
  padding-bottom: 4px;
}
@media (min-width: 768px) {
  .archive-news__list__content-mobile {
    display: none;
  }
}
.archive-news__list__content-pc {
  display: none;
}
@media (min-width: 768px) {
  .archive-news__list__content-pc {
    display: block;
  }
}
.archive-news .page-numbers-wrapper {
  width: 100%;
  max-width: 270px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 48px;
  padding-bottom: 64px;
}
@media (min-width: 768px) {
  .archive-news .page-numbers-wrapper {
    padding-top: 48px;
    padding-bottom: 64px;
  }
}
.archive-news .page-numbers-wrapper ul {
  display: flex;
  gap: 10px;
  height: 40px;
}
.archive-news .page-numbers-wrapper ul li {
  width: 30px;
}
.archive-news .page-numbers-wrapper ul li > * {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #121212;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
}
.archive-news .page-numbers-wrapper ul li:not(:first-child):not(:last-child) > * {
  background-color: #e6fafa;
}
.archive-news .page-numbers-wrapper ul li .current {
  background-color: #00c8c8;
  color: #ffffff;
}

.single-news {
  padding-inline: 20px;
  padding-bottom: 64px;
}
@media (min-width: 768px) {
  .single-news {
    padding-bottom: 100px;
  }
}
@media (min-width: 768px) {
  .single-news__wrapper {
    width: 100%;
    max-width: 1136px;
    margin-left: auto;
    margin-right: auto;
  }
}
.single-news__title {
  margin-top: 8px;
  padding: 8px;
  color: #121212;
  font-weight: 700;
  font-size: 20px;
  line-height: 34px;
  border-bottom: 1px solid #00c8c8;
}
@media (min-width: 768px) {
  .single-news__title {
    font-size: 24px;
    line-height: 42px;
  }
}
.single-news__date {
  margin-top: 16px;
  text-align: right;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .single-news__date {
    font-size: 16px;
    line-height: 28px;
  }
}
.single-news__body {
  margin-top: 24px;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .single-news__body {
    margin-top: 32px;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
  }
}
.single-news__link {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .single-news__link {
    margin-top: 32px;
  }
}
.single-news__link a {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .single-news__link a {
    font-size: 16px;
    line-height: 28px;
  }
}
.single-news__image {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .single-news__image {
    margin-top: 32px;
  }
}
.single-news__nav {
  padding-top: 12px;
  margin-top: 32px;
  border-top: 1px solid #000000;
}
@media (min-width: 768px) {
  .single-news__nav {
    padding-top: 16px;
    margin-top: 48px;
  }
}
.single-news__nav-inner {
  display: flex;
}
.single-news__nav-next a, .single-news__nav-prev a {
  color: #000000;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .single-news__nav-next a, .single-news__nav-prev a {
    font-size: 16px;
    line-height: 28px;
  }
}
.single-news__nav-next {
  margin-left: auto;
}
.single-news__link-archive {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .single-news__link-archive {
    margin-top: 24px;
  }
}

.go-to-news-page {
  display: flex;
  justify-content: center;
}
.go-to-news-page__link {
  display: flex;
  gap: 16px;
  align-items: center;
  color: #000000;
}
.go-to-news-page__link span {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  padding: 4px 8px;
  text-wrap: nowrap;
  border-bottom: 1px solid #00c8c8;
}
.go-to-news-page__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #00c8c8;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}
.go-to-news-page__arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: linear-gradient(90deg, #00c8c8 0%, #006262 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}
.go-to-news-page__arrow:hover::before {
  opacity: 1;
}
.go-to-news-page__arrow > * {
  position: relative;
  z-index: 1;
}

.brand-page {
  padding-inline: 20px;
  padding-top: 16px;
}
.brand-page .brand-intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
@media (min-width: 1001px) {
  .brand-page .brand-intro {
    width: 100%;
    max-width: 1136px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: row;
    gap: 17px;
    align-items: flex-end;
  }
}
.brand-page .brand-intro__header-group {
  width: 100%;
}
@media (min-width: 1001px) {
  .brand-page .brand-intro__header-group {
    max-width: 366px;
    width: 100%;
  }
}
.brand-page .brand-intro__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .brand-page .brand-intro__header {
    width: 100%;
    max-width: 248px;
    margin-left: auto;
    margin-right: auto;
  }
}
.brand-page .brand-intro__name {
  width: 100%;
  max-width: 148px;
  margin-left: auto;
  margin-right: auto;
  color: #00c8c8;
  text-align: center;
}
@media (min-width: 768px) {
  .brand-page .brand-intro__name {
    width: 100%;
    max-width: 164px;
    margin-left: auto;
    margin-right: auto;
  }
}
.brand-page .brand-intro__name-en {
  font-weight: 700;
  font-size: 28px;
  line-height: 48px;
  padding-bottom: 4px;
}
@media (min-width: 768px) {
  .brand-page .brand-intro__name-en {
    font-size: 32px;
    line-height: 56px;
  }
}
.brand-page .brand-intro__name-ja {
  font-weight: 700;
  font-size: 18px;
  line-height: 32px;
}
@media (min-width: 768px) {
  .brand-page .brand-intro__name-ja {
    font-size: 20px;
    line-height: 34px;
  }
}
.brand-page .brand-intro__slogan {
  padding-top: 24px;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  color: #121212;
}
@media (min-width: 768px) {
  .brand-page .brand-intro__slogan {
    font-size: 18px;
    line-height: 32px;
  }
}
.brand-page .brand-intro__text {
  padding-top: 12px;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #000000;
}
@media (min-width: 768px) {
  .brand-page .brand-intro__text {
    font-size: 16px;
    line-height: 28px;
  }
}
.brand-page .brand-visual {
  border-radius: 24px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .brand-page .brand-visual {
    border-radius: 48px;
    overflow: hidden;
  }
}
.brand-page .brand-details {
  padding-top: 32px;
}
.brand-page .brand-details__header {
  display: inline-block;
}
.brand-page .brand-details__title {
  font-weight: 400;
  font-size: 48px;
  line-height: 100%;
  background: linear-gradient(90deg, #00c8c8 0%, #006262 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  padding-bottom: 8px;
}
@media (min-width: 768px) {
  .brand-page .brand-details__title {
    font-size: 72px;
  }
}
.brand-page .brand-details__subtitle {
  color: #000000;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
}
@media (min-width: 768px) {
  .brand-page .brand-details__subtitle {
    font-size: 18px;
    line-height: 32px;
  }
}
@media (min-width: 768px) {
  .brand-page .brand-details {
    padding-top: 64px;
    width: 100%;
    max-width: 1136px;
    margin-left: auto;
    margin-right: auto;
  }
}
.brand-page .brand-features {
  padding-top: 16px;
}
@media (min-width: 768px) {
  .brand-page .brand-features {
    padding-top: 32px;
  }
}
.brand-page .brand-product {
  padding-top: 48px;
  padding-bottom: 64px;
}
@media (min-width: 768px) {
  .brand-page .brand-product {
    padding-top: 64px;
    padding-bottom: 100px;
  }
}
.brand-page .brand-product-list {
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
@media (min-width: 768px) {
  .brand-page .brand-product-list {
    padding-top: 24px;
    gap: 32px 16px;
    justify-content: flex-start;
  }
}
.brand-page--bright-wave .brand-intro__name, .brand-page--quick-dental .brand-intro__name {
  width: 100%;
  max-width: 191px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .brand-page--bright-wave .brand-intro__name, .brand-page--quick-dental .brand-intro__name {
    width: 100%;
    max-width: 219px;
    margin-left: auto;
    margin-right: auto;
  }
}

.philosophy__header-wrapper {
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .philosophy__header-wrapper {
    width: 100%;
    max-width: 1176px;
    margin-left: auto;
    margin-right: auto;
  }
}
.philosophy__header {
  padding-top: 32px;
  display: inline-block;
}
@media (min-width: 768px) {
  .philosophy__header {
    padding-top: 40px;
  }
}
.philosophy__header-title {
  font-weight: 400;
  font-size: 48px;
  line-height: 100%;
  background: linear-gradient(90deg, #00c8c8 0%, #006262 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  padding-bottom: 8px;
}
@media (min-width: 768px) {
  .philosophy__header-title {
    font-size: 72px;
  }
}
.philosophy__header-subtitle {
  color: #000000;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
}
@media (min-width: 768px) {
  .philosophy__header-subtitle {
    font-size: 18px;
    line-height: 32px;
  }
}
.philosophy__title {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #595959;
  font-weight: 700;
  padding-inline: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .philosophy__title {
    padding-top: 32px;
    gap: 32px;
  }
}
.philosophy__title-en {
  font-size: 24px;
  line-height: 42px;
}
@media (min-width: 768px) {
  .philosophy__title-en {
    font-size: 28px;
    line-height: 48px;
  }
}
.philosophy__title-ja {
  font-size: 20px;
  line-height: 34px;
}
@media (min-width: 768px) {
  .philosophy__title-ja {
    font-size: 24px;
    line-height: 42px;
  }
  .philosophy__title-ja br {
    display: none;
  }
}
.philosophy__text {
  padding-top: 13px;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-align: left;
  color: #121212;
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .philosophy__text {
    padding-top: 32px;
    font-size: 18px;
    line-height: 32px;
    text-align: center;
  }
}

.profile {
  margin-top: 48px;
  padding: 40px 20px;
  background-color: #e6fafa;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.profile__header {
  display: inline-block;
}
.profile__title {
  font-weight: 400;
  font-size: 48px;
  line-height: 100%;
  background: linear-gradient(90deg, #00c8c8 0%, #006262 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  padding-bottom: 8px;
}
@media (min-width: 768px) {
  .profile__title {
    font-size: 72px;
  }
}
.profile__subtitle {
  color: #000000;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
}
@media (min-width: 768px) {
  .profile__subtitle {
    font-size: 18px;
    line-height: 32px;
  }
}
@media (min-width: 768px) {
  .profile {
    margin-top: 72px;
    padding-block: 72px;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
}
@media (min-width: 768px) {
  .profile__header-wrapper {
    width: 100%;
    max-width: 1136px;
    margin-left: auto;
    margin-right: auto;
  }
}
.profile__list {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
}
@media (min-width: 768px) {
  .profile__list {
    width: 100%;
    max-width: 944px;
    margin-left: auto;
    margin-right: auto;
  }
}
.profile__list tbody tr th,
.profile__list tbody tr td {
  font-size: 16px;
  line-height: 28px;
  padding: 16px 8px;
  color: #121212;
}
@media (min-width: 768px) {
  .profile__list tbody tr th,
  .profile__list tbody tr td {
    font-size: 18px;
    line-height: 32px;
    padding: 16px;
  }
}
.profile__list tbody tr th {
  font-weight: 700;
  text-align: center;
  border-bottom: 2px solid #00c8c8;
  width: 116px;
}
@media (min-width: 768px) {
  .profile__list tbody tr th {
    width: 176px;
  }
}
.profile__list tbody tr td {
  font-weight: 400;
  border-bottom: 1px solid #a0a0a0;
}
@media (min-width: 768px) {
  .profile__list tbody tr td br {
    display: none;
  }
}

.access {
  margin-top: 40px;
  padding-inline: 20px;
  padding-bottom: 64px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.access__header {
  display: inline-block;
}
.access__title {
  font-weight: 400;
  font-size: 48px;
  line-height: 100%;
  background: linear-gradient(90deg, #00c8c8 0%, #006262 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  padding-bottom: 8px;
}
@media (min-width: 768px) {
  .access__title {
    font-size: 72px;
  }
}
.access__subtitle {
  color: #000000;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
}
@media (min-width: 768px) {
  .access__subtitle {
    font-size: 18px;
    line-height: 32px;
  }
}
@media (min-width: 768px) {
  .access {
    margin-top: 72px;
    padding-bottom: 171px;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
}
@media (min-width: 768px) {
  .access__header {
    width: 100%;
    max-width: 1136px;
    margin-left: auto;
    margin-right: auto;
  }
}
.access__map-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .access__map-block {
    width: 100%;
    max-width: 1136px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .access__image-wrapper, .access__map-wrapper {
    flex: 1 1 50%;
    max-width: 50%;
  }
}
@media (min-width: 768px) {
  .access .access__image-wrapper {
    aspect-ratio: 4/3;
    width: 100%;
    position: relative;
  }
  .access .access__image-wrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
}
.access__image-wrapper img {
  width: 100%;
}
@media (min-width: 768px) {
  .access__image-wrapper img {
    width: auto;
  }
}
.access__map-wrapper {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
}
.access__map {
  width: 100%;
  height: 100%;
  border: 0;
}
.access__info-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .access__info-block {
    width: 100%;
    max-width: 1136px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 6px;
    flex-direction: row;
  }
}
.access__address {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #000000;
}
.access__station {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}
.access__station-label {
  font-weight: 700;
}
@media (min-width: 768px) {
  .access .access__address,
  .access .access__station {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.contact-form {
  padding-bottom: 64px;
}
.contact-form__header-wrapper {
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .contact-form__header-wrapper {
    width: 100%;
    max-width: 1176px;
    margin-left: auto;
    margin-right: auto;
  }
}
.contact-form__header {
  padding-top: 32px;
  display: inline-block;
}
@media (min-width: 768px) {
  .contact-form__header {
    padding-top: 40px;
  }
}
.contact-form__header-title {
  font-weight: 400;
  font-size: 48px;
  line-height: 100%;
  background: linear-gradient(90deg, #00c8c8 0%, #006262 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  padding-bottom: 8px;
}
@media (min-width: 768px) {
  .contact-form__header-title {
    font-size: 72px;
  }
}
.contact-form__header-subtitle {
  color: #000000;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
}
@media (min-width: 768px) {
  .contact-form__header-subtitle {
    font-size: 18px;
    line-height: 32px;
  }
}
.contact-form__text {
  width: 100%;
  max-width: 1176px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  padding-top: 16px;
  color: #000000;
  padding-inline: 20px;
}
.contact-form .snow-monkey-form {
  width: 100%;
  max-width: 792px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 24px;
  padding-inline: 20px;
}
.contact-form .snow-monkey-form[data-screen=confirm] .smf-form .required .smf-item__label__text::after {
  content: "";
  background: transparent;
}
.contact-form .snow-monkey-form[data-screen=confirm] .smf-form .privacy-policy-field {
  display: none;
}
.contact-form .snow-monkey-form .smf-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-form .snow-monkey-form .smf-form .smf-item {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-form .snow-monkey-form .smf-form .smf-item--divider {
  padding: 0;
}
.contact-form .snow-monkey-form .smf-form .smf-item__col {
  padding: 0;
}
.contact-form .snow-monkey-form .smf-form .smf-item__label__text {
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  color: #000000;
}
.contact-form .snow-monkey-form .smf-form .required .smf-item__label__text {
  display: flex;
  gap: 24px;
  align-items: center;
}
.contact-form .snow-monkey-form .smf-form .required .smf-item__label__text::after {
  content: "必須";
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #000000;
  background-color: #e6fafa;
  padding: 2px 8px;
}
.contact-form .snow-monkey-form .smf-form .privacy-policy-field {
  gap: 4px;
}
.contact-form .snow-monkey-form .smf-form .privacy-policy-field .smf-item__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-form .snow-monkey-form .smf-form .privacy-policy-field .smf-item__description {
  margin: 0;
}
.contact-form .snow-monkey-form .smf-form .privacy-policy-field .smf-item__description a {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
}
.contact-form .snow-monkey-form .smf-form .privacy-policy-field .smf-item .smf-checkbox-control__label {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #121212;
}
.contact-form .snow-monkey-form .smf-action {
  margin: 0;
  margin-top: 48px;
}
.contact-form .snow-monkey-form .smf-action .smf-button-control__control {
  border-radius: 8px;
  padding: 16px 24px;
  background: #00c8c8;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  color: #ffffff;
  border: 0;
}
.contact-form .snow-monkey-form .smf-complete-content h2 {
  font-size: 24px;
}
.contact-form .snow-monkey-form .smf-complete-content .p-form__lead {
  font-size: 14px;
  margin-bottom: 32px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .contact-form .snow-monkey-form .smf-complete-content .p-form__lead {
    font-size: 16px;
    margin-bottom: 40px;
  }
}

.privacy-policy-page__content {
  padding: 32px 20px 64px;
}
@media (min-width: 768px) {
  .privacy-policy-page__content {
    padding-top: 40px;
    padding-bottom: 88px;
  }
}
.privacy-policy-page__lead, .privacy-policy-page__list, .privacy-policy-page__contact {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #121212;
}
@media (min-width: 768px) {
  .privacy-policy-page__lead, .privacy-policy-page__list, .privacy-policy-page__contact {
    width: 100%;
    max-width: 1136px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    line-height: 28px;
  }
}
.privacy-policy-page__lead {
  padding-bottom: 24px;
}
@media (min-width: 768px) {
  .privacy-policy-page__lead {
    padding-bottom: 40px;
  }
}
.privacy-policy-page__list {
  padding-bottom: 56px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .privacy-policy-page__list {
    padding-bottom: 80px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 64px 56px;
  }
}
.privacy-policy-page__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 1176px) {
  .privacy-policy-page__item {
    max-width: 540px;
    width: 100%;
  }
}
.privacy-policy-page__item > ul {
  list-style: disc;
  padding-left: 13.45px;
}
@media (min-width: 768px) {
  .privacy-policy-page__item > ul {
    padding-left: 15.36px;
  }
}
.privacy-policy-page__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
}
@media (min-width: 768px) {
  .privacy-policy-page__title {
    font-size: 18px;
    line-height: 32px;
  }
}
.privacy-policy-page__contact-box {
  border: 1px solid #675d50;
  padding: 24px;
  padding-top: 12px;
  max-width: 540px;
  width: 100%;
}
@media (min-width: 768px) {
  .privacy-policy-page__contact-box {
    padding-top: 24px;
  }
}
.privacy-policy-page__contact-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  padding-bottom: 8px;
}
.privacy-policy-page__contact-text, .privacy-policy-page__contact-link {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}
.privacy-policy-page__contact-text {
  padding-bottom: 12px;
}
.privacy-policy-page__contact-link {
  color: #115ffb;
}/*# sourceMappingURL=style.css.map */