@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

html {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 10px;
  color: #000;
  scroll-behavior: smooth;
}

.container {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 100%;
    padding-inline: 24px;
  }
}

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

.heading__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.heading__container--ta-center {
  text-align: center;
}
.heading__section-en {
  font: 400 5.6rem/1em "ABeeZee", sans-serif;
  letter-spacing: 0.64rem;
  color: #218c8f;
}
@media screen and (max-width: 767px) {
  .heading__section-en {
    font-size: 40px;
    line-height: 1em;
  }
}
.heading__section-en--large {
  font-size: 8rem;
}
@media screen and (max-width: 767px) {
  .heading__section-en--large {
    font-size: 48px;
  }
}
.heading__section-en--medium {
  font-size: 6.4rem;
}
@media screen and (max-width: 767px) {
  .heading__section-en--medium {
    font-size: 48px;
  }
}
.heading__section-en--white {
  color: #fff;
}
.heading__section-jp {
  font: 700 1.6rem/2em "Zen Kaku Gothic New", sans-serif;
  color: #55b8c2;
}
@media screen and (max-width: 767px) {
  .heading__section-jp {
    font-size: 16px;
  }
}
.heading__section-jp--white {
  color: #fff;
}
.heading--medium {
  font: 400 4rem/2em "Kiwi Maru", serif;
}
@media screen and (max-width: 767px) {
  .heading--medium {
    font-size: 24px;
    line-height: 1.5em;
  }
}
.heading--small {
  font: 400 3.2rem/2em "Kiwi Maru", serif;
}
@media screen and (max-width: 767px) {
  .heading--small {
    font-size: 21px;
    line-height: 1.75em;
  }
}
.heading--regular {
  font: 700 2.4rem/1.5em "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 767px) {
  .heading--regular {
    font-size: 18px;
    line-height: 1.5em;
  }
}
.heading--gradient {
  background: -webkit-gradient(linear, left top, right top, from(#057b9c), to(#00b994));
  background: linear-gradient(90deg, #057b9c 0%, #00b994 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.heading--accent {
  color: #218c8f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .heading--accent {
    gap: 12px;
  }
}
.heading--accent::before {
  content: "";
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 8px;
  margin-block: 0.1em;
  background: #218c8f;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .heading--accent::before {
    width: 4px;
  }
}
.heading--white {
  color: #fff;
}
.heading--ta-center {
  text-align: center;
}

.button {
  padding-block: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}
.button--center {
  display: block;
  margin: 0 auto;
}
.button:hover {
  cursor: pointer;
}
.button:hover .button__text::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.button:hover .button__text::before {
  -webkit-transform: translateX(-5px) scaleX(-1);
          transform: translateX(-5px) scaleX(-1);
}
.button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.button__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .button__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.button__text {
  font: 400 1.8rem/1em "Kiwi Maru", serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .button__text {
    font-size: 18px;
  }
}
.button__text::after, .button__text::before {
  display: inline-block;
  content: "";
  position: relative;
  width: 12px;
  height: 12px;
  background: url("../public/img/button-arrow-white.svg") no-repeat center/contain;
  vertical-align: middle;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .button__text::after, .button__text::before {
    width: 5px;
    height: 8px;
    padding-inline: 8px;
  }
}
.button__text::before {
  display: none;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.button__text--prev::before {
  display: block;
  background: url("../public/img/button-arrow-teal.svg") no-repeat center/contain;
}
.button__text--prev::after {
  display: none;
}
.button--gradient, .button--simple, .button--gradient-left-arrow {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 280px;
  min-height: 60px;
  border-radius: 16px;
  overflow: hidden;
  z-index: 0;
}
.button--gradient {
  background: -webkit-gradient(linear, left top, right top, from(#057b9c), to(#00b994));
  background: linear-gradient(90deg, #057b9c 0%, #00b994 100%);
  color: #fff;
}
.button--gradient::before, .button--gradient::after {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #00b994), to(#057b9c));
  background: linear-gradient(90deg, #00b994 0, #057b9c 100%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: -1;
}
.button--gradient::after {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.button--gradient:hover::after {
  opacity: 0;
}
.button--simple {
  background-color: #fff;
  border: 1px solid #55b8c2;
  color: #218c8f;
}
.button--simple > .button__text::after {
  background: url("../public/img/icons/right-arrow.svg") no-repeat center/contain;
}
.button--external {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  min-width: 280px;
  min-height: 75px;
  padding-inline: 32px 80px;
}
@media screen and (max-width: 1024px) {
  .button--external {
    min-width: 320px;
  }
}
@media screen and (max-width: 767px) {
  .button--external {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    max-width: 360px;
    min-width: unset;
    min-height: 60px;
    padding: 8px 32px 8px 20px;
  }
}
.button--external .button__text {
  gap: unset;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .button--external .button__text {
    font-size: 16px;
    line-height: 1.5;
  }
}
.button--external .button__text::after {
  position: absolute;
  top: 50%;
  right: 32px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background-image: url("../public/img/icons/external.svg");
}
@media screen and (max-width: 767px) {
  .button--external .button__text::after {
    right: 16px;
    width: 20px;
    height: 20px;
  }
}
.button--external:hover .button__text::after {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .button--external .button__note {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.75;
  }
}
.button__note {
  color: #fff;
  font-size: 1.1rem;
  opacity: 0.85;
}
.button--gradient-left-arrow .button__text::after {
  display: none;
}
.button--gradient-left-arrow .button__text::before {
  display: inline-block;
}
.button--line {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 109px;
  min-height: 28px;
  padding-block: 0 4px;
  border-bottom: 1px solid #218c8f;
  color: #218c8f;
}
@media screen and (max-width: 767px) {
  .button--line {
    min-width: 109px;
  }
}
.button--line .button__text {
  font-size: 1.6rem;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .button--line .button__text {
    font-size: 16px;
  }
}
.button--line .button__text::after {
  background: url("../public/img/button-arrow-teal.svg") no-repeat center/contain;
}

.header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  -webkit-animation: fade-in 0.3s ease;
          animation: fade-in 0.3s ease;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .header.is-active {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
  }
}
@media screen and (max-width: 767px) {
  .header.is-active .header__logo-top {
    width: 50px;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .header.is-active .header__nav {
    width: 100%;
    background-color: #313f3e;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    padding: 100px 24px 80px;
    z-index: -1;
    overflow-y: auto;
  }
}
@media screen and (max-width: 767px) {
  .header.is-active .header__nav-link {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .header.is-active .header__nav-ja {
    color: #fff;
  }
}
.header--lower {
  background-color: #fff;
  position: relative;
}
.header--lower .header__container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 24px;
}
@media screen and (max-width: 767px) {
  .header--lower .header__container {
    padding: 12px;
  }
}
.header--lower .header__logo-top {
  display: none;
}
.header--lower .header__logo-lower {
  display: block;
}
.header--lower .header__sub-link {
  padding-block: 16px 32px;
}
.header--lower.is-active .header__nav-ja {
  color: #313f3e;
}
@media screen and (max-width: 767px) {
  .header--lower.is-active .header__nav-ja {
    color: #fff;
  }
}
.header--lower.is-active .header__nav-btn {
  color: #fff;
}
.header--lower .header__sub-list {
  top: 100%;
}
.header--is-gray {
  background-color: #313f3e;
}
@media screen and (max-width: 767px) {
  .header--is-gray .header__nav-ja {
    color: #fff;
  }
}
.header--is-gray .header__nav-ja--dropdown::after {
  width: 5px;
  height: 8px;
  background: url("../public/img/icons/white-arrow.svg") center/cover no-repeat;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.header--is-gray .header__sub-list {
  z-index: 1;
}
.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 30px 40px 0;
  z-index: 999;
}
@media screen and (max-width: 1024px) {
  .header__container {
    padding: 24px;
  }
}
.header__logo-top {
  width: 120px;
  height: 147px;
  display: inline-block;
  -webkit-transition: width 0.3s ease, height 0.3s ease;
  transition: width 0.3s ease, height 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .header__logo-top {
    width: 80px;
    height: 98px;
  }
}
.header__logo-top--sm {
  width: 50px;
  height: auto;
}
.header__logo-lower {
  width: 274px;
  height: 48px;
  display: none;
}
@media screen and (max-width: 767px) {
  .header__logo-lower {
    width: 180px;
    height: auto;
  }
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px 40px;
  position: static;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__nav-link {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__nav-link:hover {
  opacity: 0.8;
}
.header__nav-en, .header__nav-ja {
  display: block;
  line-height: 1.5em;
  text-align: center;
}
.header__nav-en {
  font: 400 1.4rem "ABeeZee", sans-serif;
  color: #218c8f;
  opacity: 0.3;
}
.header__nav-ja {
  font: 500 1.6rem "Kiwi Maru", serif;
  color: #313f3e;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__nav-ja--white {
  color: #fff;
}
.header--lower .header__nav-ja--white {
  color: #313f3e;
}
@media screen and (max-width: 767px) {
  .header__nav-ja--dropdown {
    margin-bottom: 16px;
  }
}
.header__nav-ja--dropdown::after {
  content: "";
  width: 8px;
  height: 5px;
  background: url("../public/img/icons/black-arrow.svg") center/cover no-repeat;
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .header__nav-ja--dropdown::after {
    width: 5px;
    height: 8px;
    background: url("../public/img/icons/white-arrow.svg") center/cover no-repeat;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
.header__nav-dropdown {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: static;
}
@media screen and (max-width: 767px) {
  .header__nav-dropdown {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.header__nav-btn {
  width: 180px;
  height: 56px;
  background: -webkit-gradient(linear, left top, right top, from(#057b9c), to(#00b994));
  background: linear-gradient(90deg, #057b9c 0%, #00b994 100%);
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 8px 5px 5px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__nav-btn:hover {
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #00b994), to(#057b9c));
  background: linear-gradient(90deg, #00b994 0, #057b9c 100%);
}
.header__nav-btn > .header__nav-en, .header__nav-btn > .header__nav-ja {
  color: #fff;
}
.header__nav-btn > .header__nav-en {
  opacity: 0.3;
}
.header__sub-list {
  width: 100%;
  background-color: #313f3e;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 27px;
  padding: 64px;
  position: absolute;
  top: 94px;
  left: 0;
  z-index: 10;
  -webkit-animation: fade-in 0.3s ease;
          animation: fade-in 0.3s ease;
}
@media screen and (max-width: 767px) {
  .header__sub-list {
    background-color: transparent;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
    padding: 0;
    top: 0;
  }
}
.header__sub-list::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 0;
  width: 100%;
  height: 26px;
}
@media screen and (max-width: 767px) {
  .header__sub-list::before {
    display: none;
  }
}
.header__sub-list.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__sub-link {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5em;
  text-align: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .header__sub-link {
    font-size: 14px;
    padding-block: 0 !important;
  }
}
.header__sub-link:hover {
  opacity: 0.8;
}
.header__sub-img {
  width: 380px;
  height: 240px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .header__sub-img {
    display: none;
  }
}
.header__menu {
  width: 40px;
  height: 40px;
  background: -webkit-gradient(linear, left top, right top, from(#057b9c), to(#00b994));
  background: linear-gradient(90deg, #057b9c 0%, #00b994 100%);
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.header__menu.is-close .header__menu-line:nth-child(1) {
  -webkit-transform: translate(0, 5px) rotate(45deg);
          transform: translate(0, 5px) rotate(45deg);
}
.header__menu.is-close .header__menu-line:nth-child(2) {
  display: none;
}
.header__menu.is-close .header__menu-line:nth-child(3) {
  -webkit-transform: translate(0, -4px) rotate(-45deg);
          transform: translate(0, -4px) rotate(-45deg);
}
.header__menu-line {
  width: 20px;
  height: 1px;
  display: block;
  background-color: #fff;
  border-radius: 0.5px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__menu-line:not(:last-child) {
  margin-bottom: 8px;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.footer__contact, .footer__contact-wrap, .footer__contact-btn, .footer__contact-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__contact, .footer__contact-wrap, .footer__contact-btn {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__contact {
  width: 100%;
  height: 620px;
  background: url("../public/img/footer-bg.jpg") center/cover no-repeat;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 32px 24px 80px;
}
@media screen and (max-width: 767px) {
  .footer__contact {
    height: auto;
  }
}
.footer__contact-en, .footer__contact-ja, .footer__contact-desc {
  display: block;
  text-align: center;
  color: #fff;
}
.footer__contact-en {
  font: 400 12rem "ABeeZee", sans-serif;
  letter-spacing: 1.2rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer__contact-en {
    font-size: 70px;
  }
}
@media screen and (max-width: 767px) {
  .footer__contact-en {
    font-size: 4.8rem;
    letter-spacing: 0.08em;
  }
}
.footer__contact-ja {
  font: 700 1.6rem "Zen Kaku Gothic New", sans-serif;
}
.footer__contact-desc {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2em;
  margin-block: 40px;
}
.footer__contact-wrap {
  gap: 32px 120px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .footer__contact-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}
.footer__contact-btn {
  width: 540px;
  height: 96px;
  background-color: #fff;
  border-radius: 24px;
  font: 400 2.4rem "Kiwi Maru", serif;
  color: #218c8f;
}
@media screen and (max-width: 767px) {
  .footer__contact-btn {
    width: 352px;
    height: 56px;
    border-radius: 16px;
    font-size: 18px;
  }
}
.footer__contact-btn::after {
  content: "";
  width: 10px;
  height: 16px;
  background: url("../public/img/icons/right-arrow.svg") center/cover no-repeat;
  display: inline-block;
  margin-left: 24px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .footer__contact-btn::after {
    width: 7.5px;
    height: 12px;
  }
}
.footer__contact-btn:hover::after {
  margin-left: 29px;
}
.footer__contact-sched {
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
}
.footer__contact-icon {
  width: 46px;
  height: 46px;
}
.footer__contact-phone {
  font: 400 6.6rem "ABeeZee", sans-serif;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1em;
  gap: 16px;
  margin-top: 16px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .footer__contact-phone {
    font-size: 42px;
    gap: 10px;
  }
}
.footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-gradient(linear, left top, right top, from(#057b9c), to(#00b994));
  background: linear-gradient(90deg, #057b9c 0%, #00b994 100%);
  padding: 56px 40px;
  -webkit-column-gap: 80px;
     -moz-column-gap: 80px;
          column-gap: 80px;
}
@media screen and (max-width: 1024px) {
  .footer__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 1600px) {
  .footer__wrap {
    padding-inline: 24px;
  }
}
.footer__logo {
  width: 365px;
  height: 64px;
  display: inline-block;
}
@media screen and (max-width: 1600px) {
  .footer__logo {
    width: 280px;
    height: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer__logo {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 327px;
  }
}
.footer__info-wrap {
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .footer__info-wrap {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-top: 1px solid #55b8c2;
    margin-top: 56px;
    padding-inline: 25px;
  }
}
@media screen and (max-width: 767px) {
  .footer__info-wrap {
    display: none;
  }
}
.footer__info {
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  margin-block: 32px;
}
.footer__banner {
  width: 220px;
  height: auto;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .footer__banner {
    width: 100%;
    height: auto;
    margin-left: 0;
  }
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px 40px;
}
@media screen and (max-width: 1600px) {
  .footer__nav {
    padding-inline: 16px;
  }
}
@media screen and (max-width: 767px) {
  .footer__nav {
    margin-top: 56px;
  }
}
@media screen and (max-width: 767px) {
  .footer__nav-item {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .footer__nav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.footer__nav-en, .footer__nav-ja, .footer__sublink {
  display: block;
  color: #fff;
}
.footer__nav-en {
  font: 400 1.4rem "ABeeZee", sans-serif;
  opacity: 0.32;
  display: inline-block;
  border-bottom: 1px solid #fff;
  padding-bottom: 4px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .footer__nav-en {
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .footer__nav-en {
    border-right: 1px solid #fff;
    border-bottom: 0;
    padding: 2px 8px 1px 0;
    margin-right: 16px;
    margin-bottom: 0;
  }
}
.footer__nav-ja {
  font-weight: 700;
}
.footer__nav-ja, .footer__sublink {
  font-size: 1.6rem;
}
.footer__sublist {
  margin-top: 16px;
}
.footer__sublink {
  font-weight: 500;
  position: relative;
  padding-left: 15px;
}
@media screen and (max-width: 1024px) {
  .footer__sublink {
    font-size: 14px;
  }
}
.footer__sublink::before {
  content: "";
  width: 5px;
  height: 8px;
  background: url("../public/img/icons/white-arrow.svg") center/cover no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0.32;
}
.footer__sublink:not(:last-child) {
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .footer__sublink:not(:last-child) {
    margin-bottom: 8px;
  }
}
.footer__copyright {
  background-color: #313f3e;
  padding: 12px;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    padding-block: 10px 9px;
  }
}
.footer__copyright-text {
  font-size: 1.6rem;
  color: #fff;
  display: block;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer__copyright-text {
    font-size: 15px;
  }
}

@media screen and (max-width: 767px) {
  .breadcrumbs {
    display: none;
  }
}
.breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px 0;
}
.breadcrumbs__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.breadcrumbs__item:not(:last-child)::after {
  content: "";
  display: block;
  width: 16px;
  height: 20px;
  margin: 0 8px;
  background: url("../public/img/icons/bread-arrow.svg") center/contain no-repeat;
}
.breadcrumbs__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  color: #313f3e;
  font-size: 1.4rem;
  font-weight: 400;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .breadcrumbs__link {
    font-size: 11px;
  }
}
.breadcrumbs__link:hover {
  opacity: 0.7;
}
.breadcrumbs__icon {
  width: 12px;
  height: 12px;
}
.breadcrumbs__current {
  color: #313f3e;
  font-size: 1.4rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .breadcrumbs__current {
    font-size: 11px;
  }
}

.pagebanner {
  position: relative;
  padding-bottom: 200px;
  background-color: #fff;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .pagebanner {
    padding-bottom: 0;
  }
}
.pagebanner__deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  background: url("../public/img/pagebanner/deco.png") left center/contain no-repeat;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .pagebanner__deco {
    top: -50px;
    width: 100%;
    background-image: url("../public/img/pagebanner/deco-sp.png");
  }
}
.pagebanner__inner {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 4%;
}
@media screen and (max-width: 767px) {
  .pagebanner__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.pagebanner__left {
  position: relative;
  z-index: 1;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-block: 40px;
}
@media screen and (max-width: 767px) {
  .pagebanner__left {
    padding-bottom: 0;
  }
}
.pagebanner__en {
  margin-top: 64px;
  background: linear-gradient(110deg, #057b9c 0%, #00b994 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "ABeeZee", sans-serif;
  font-size: 9.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1200px) {
  .pagebanner__en {
    font-size: 7.2rem;
  }
}
@media screen and (max-width: 767px) {
  .pagebanner__en {
    margin-top: 16px;
    font-size: 48px;
  }
}
.pagebanner__jp {
  margin-top: 12px;
  font-family: "Kiwi Maru", serif;
  color: #55b8c2;
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .pagebanner__jp {
    margin-top: 8px;
    font-size: 18px;
  }
}
.pagebanner__right {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 44%;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .pagebanner__right {
    display: block;
    width: 100%;
    height: 180px;
    margin-top: 0;
  }
}
.pagebanner__circle {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
}
.pagebanner__circle img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pagebanner__circle--lg {
  top: -20px;
  right: -160px;
  width: 380px;
  height: 380px;
}
@media screen and (max-width: 1200px) {
  .pagebanner__circle--lg {
    top: 0;
    right: -100px;
    width: 240px;
    height: 240px;
  }
}
@media screen and (max-width: 767px) {
  .pagebanner__circle--lg {
    top: -10px;
    right: -30px;
    width: 100px;
    height: 100px;
  }
}
.pagebanner__circle--sm {
  top: -80px;
  right: 240px;
  width: 240px;
  height: 240px;
}
@media screen and (max-width: 1200px) {
  .pagebanner__circle--sm {
    top: -60px;
    right: 120px;
    width: 140px;
    height: 140px;
  }
}
@media screen and (max-width: 767px) {
  .pagebanner__circle--sm {
    top: -20px;
    right: 80px;
    width: 64px;
    height: 64px;
  }
}

.pagetop {
  -ms-flex-item-align: center;
      align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
}
.pagetop:hover .pagetop__icon {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.pagetop__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 48px;
  height: 48px;
  background: #313f3e url("../public/img/icons/pagetop.svg") center/20px 20px no-repeat;
  border-radius: 16px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
@media screen and (max-width: 767px) {
  .pagetop__icon {
    width: 40px;
    height: 40px;
    background-size: 16px 16px;
  }
}
.pagetop__text {
  font-family: "ABeeZee", sans-serif;
  color: #313f3e;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1em;
  white-space: nowrap;
}

.article__list {
  margin-top: 39px;
}
@media screen and (max-width: 767px) {
  .article__list {
    margin-bottom: 56px;
  }
}
.article__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px 32px;
  border-bottom: 1px solid #55b8c2;
  padding-block: 17px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .article__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
  }
}
.article__item:hover {
  opacity: 0.7;
}
.article__date, .article__title {
  font-size: 1.6rem;
  color: #313f3e;
}
.article__title {
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .article__title {
    width: 100%;
  }
}
.article__date {
  font-family: "ABeeZee", sans-serif;
}
.article__cat {
  min-width: 144px;
  background-color: #55b8c2;
  border-radius: 30px;
  font-family: "Kiwi Maru", serif;
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
  padding: 5px 10px 4px;
}
@media screen and (max-width: 767px) {
  .article__cat {
    min-width: 136px;
    font-size: 14px;
    padding: 4px 5px;
  }
}
.article__empty {
  font-size: 1.6rem;
  line-height: 2em;
  color: #313f3e;
}

.pagination {
  display: block;
  margin: 80px auto 0;
}
.pagination > .wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
.pagination .previouspostslink,
.pagination .nextpostslink {
  width: 48px;
  height: 48px;
  background-color: #218c8f;
  border: 0 !important;
  border-radius: 16px;
  display: inline-block !important;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .pagination .previouspostslink,
  .pagination .nextpostslink {
    width: 40px;
    height: 40px;
  }
}
.pagination .previouspostslink::after,
.pagination .nextpostslink::after {
  content: "";
  width: 22px;
  height: 15px;
  background: url("../public/img/icons/pagination-arrow.svg") center/cover no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .pagination .previouspostslink::after,
  .pagination .nextpostslink::after {
    background-size: 16px auto;
  }
}
.pagination .previouspostslink:hover,
.pagination .nextpostslink:hover {
  background-color: #d5ecee;
}
.pagination .previouspostslink {
  margin-right: 32px;
}
@media screen and (max-width: 767px) {
  .pagination .previouspostslink {
    margin-right: 24px;
  }
}
.pagination .nextpostslink {
  margin-left: 32px;
}
@media screen and (max-width: 767px) {
  .pagination .nextpostslink {
    margin-left: 24px;
  }
}
.pagination .nextpostslink::after {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
}
.pagination .current,
.pagination .page {
  font: 400 1.6rem "ABeeZee", sans-serif;
  color: #006c80;
  padding: 10px;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  border: 0 !important;
}
.pagination .current::after,
.pagination .page::after {
  content: "";
  width: 100%;
  height: 4px;
  background-color: #d5ecee;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.pagination .current,
.pagination .page:hover {
  opacity: 0.6;
}
.pagination .current::after,
.pagination .page:hover::after {
  opacity: 1;
}

.company__container {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .company__container {
    max-width: 100%;
    padding-inline: 24px;
  }
}
.company__intro {
  margin-bottom: 140px;
  font-family: "Kiwi Maru", serif;
  font-size: 4rem;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .company__intro {
    margin-bottom: 80px;
    font-size: 21px;
  }
}
.company__banner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1600px;
  height: 400px;
  margin: 40px auto 0;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .company__banner {
    max-width: 100%;
    height: unset;
    padding: 64px 4% 100px;
  }
}
.company__banner-container {
  position: relative;
  z-index: 1;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .company__banner-container {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .company__banner-container {
    padding-bottom: 40px;
  }
}
.company__banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  .company__banner-bg {
    padding-inline: 4%;
  }
}
.company__banner-bg img {
  border-radius: 8px;
  overflow: hidden;
}
.company__banner-text {
  color: #fff;
  font-size: 2rem;
  line-height: 2.5;
}
@media screen and (max-width: 767px) {
  .company__banner-text {
    font-size: 18px;
  }
}
.company__business {
  overflow: hidden;
}
.company__business-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 65px;
  padding-block: 48px 130px;
}
@media screen and (max-width: 1024px) {
  .company__business-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 40px;
    padding-block: 0 80px;
  }
}
.company__business-descr {
  width: calc(100% - 490px);
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .company__business-descr {
    width: 100%;
  }
}
.company__business-list {
  position: absolute;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 490px;
}
@media screen and (max-width: 1024px) {
  .company__business-list {
    position: relative;
    right: unset;
    margin: -100px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .company__business-list {
    width: 298px;
  }
}
.company__business-list::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -40px;
  right: -60px;
  width: 600px;
  height: 270px;
  background: url("../public/img/company/business-list-bg.png") bottom/contain no-repeat;
}
.company__business-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  width: 224px;
  height: 224px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #d5ecee;
  -webkit-box-shadow: 0 17px 23px rgba(33, 140, 143, 0.2);
          box-shadow: 0 17px 23px rgba(33, 140, 143, 0.2);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .company__business-item {
    width: 136px;
    height: 136px;
  }
}
.company__business-item::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid #55b8c2;
  border-radius: 50%;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .company__business-item::before {
    inset: 4px;
  }
}
.company__business-item--top {
  margin-left: 60px;
}
@media screen and (max-width: 767px) {
  .company__business-item--top {
    margin-left: 36px;
  }
}
.company__business-item--right {
  margin-top: 140px;
  margin-left: -35px;
}
@media screen and (max-width: 767px) {
  .company__business-item--right {
    margin-top: 85px;
    margin-left: -21px;
  }
}
.company__business-item--bot {
  margin-top: -135px;
}
@media screen and (max-width: 767px) {
  .company__business-item--bot {
    margin-top: -82px;
  }
}
.company__business-icon {
  width: 80px;
  height: 80px;
}
@media screen and (max-width: 767px) {
  .company__business-icon {
    width: 48px;
    height: 48px;
  }
}
.company__business-label {
  color: #006c80;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .company__business-label {
    font-size: 14px;
  }
}
.company__profile {
  padding-block: 120px;
  background-color: #fafafa;
}
@media screen and (max-width: 767px) {
  .company__profile {
    padding-block: 80px;
  }
}
.company__profile-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 56px;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .company__profile-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
}
.company__table {
  width: 100%;
  padding: 20px 40px;
  background-color: #fff;
  border: 1px solid #d5ecee;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .company__table {
    padding: 12px;
  }
}
.company__table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 16px;
  border-bottom: 1px solid #d5ecee;
}
@media screen and (max-width: 767px) {
  .company__table-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.company__table-row:last-child {
  border-bottom: none;
}
.company__table-term {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 180px;
  color: #218c8f;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .company__table-term {
    width: 100%;
  }
}
.company__table-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.6rem;
  line-height: 1.75;
}
.company__access {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40%;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .company__access {
    width: 100%;
    height: 380px;
  }
}
.company__access iframe {
  width: 100%;
  height: 100%;
}

.product-archive__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 104px;
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .product-archive__container {
    max-width: 100%;
    padding-inline: 24px;
  }
}
@media screen and (max-width: 767px) {
  .product-archive__container {
    gap: 80px;
  }
}
.product-archive__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 55px;
  scroll-margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .product-archive__section {
    gap: 40px;
    scroll-margin-top: 35px;
  }
}
.product-archive__content-p {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2;
  color: #000;
}
.product-archive__anchors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .product-archive__anchors {
    gap: 12px;
  }
}
.product-archive__anchor {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  width: calc((100% - 48px) / 3);
  min-height: 85.75px;
  padding: 8px;
  background: #fff;
  border: 1px solid #218c8f;
  border-radius: 16px;
}
@media screen and (max-width: 1200px) {
  .product-archive__anchor {
    width: calc((100% - 24px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .product-archive__anchor {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
    min-height: 56px;
    border-radius: 12px;
  }
}
.product-archive__anchor::after {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: auto;
  background: url("../public/img/icons/anchor-arrow.svg") center/contain no-repeat;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.product-archive__anchor:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) padding-box, -webkit-gradient(linear, left top, left bottom, from(var(--gradient-angle)), color-stop(#057b9c), to(#00b994)) border-box;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(var(--gradient-angle), #057b9c, #00b994) border-box;
  border-color: transparent;
  -webkit-animation: rotate-gradient 1.5s linear infinite;
          animation: rotate-gradient 1.5s linear infinite;
}
.product-archive__anchor:hover::after {
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}
.product-archive__anchor-text {
  margin: auto 0;
  font-family: "Kiwi Maru", serif;
  color: #218c8f;
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .product-archive__anchor-text {
    font-size: 14px;
  }
}
.product-archive__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 37px;
}
@media screen and (max-width: 767px) {
  .product-archive__list {
    gap: 48px;
  }
}
.product-archive__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px 40px;
}
@media screen and (max-width: 1024px) {
  .product-archive__list-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.product-archive__list-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.product-archive__list-col--image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 47%;
}
@media screen and (max-width: 1024px) {
  .product-archive__list-col--image {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .product-archive__list-col--text {
    width: 100%;
  }
}
.product-archive__list-image {
  width: 100%;
  aspect-ratio: 560/358;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: url("products_01.png") center/cover no-repeat;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}
.product-archive__list-btn {
  margin-top: 16px;
}
@media screen and (max-width: 1024px) {
  .product-archive__list-btn {
    margin-inline: auto;
  }
}

.main {
  overflow: hidden;
}

.top__wrapper {
  position: relative;
}
.top__wrapper::before {
  content: "";
  width: 1832px;
  height: 1214px;
  background: url("../public/img/top/mv-bg.png") center/cover no-repeat;
  position: absolute;
  top: -45px;
  right: -45px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top__wrapper::before {
    background: none;
  }
}
.top__mv {
  width: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top__mv {
    background: url("../public/img/top/mv-bg-sp.png") center/cover no-repeat;
  }
}
.top__mv-container {
  width: 100%;
  height: 100vh;
  max-height: 930px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: clamp(100px, 10vw, 180px);
}
@media screen and (max-width: 1024px) {
  .top__mv-container {
    height: auto;
    max-height: unset;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-block: 268px 115px;
  }
}
.top__mv-container::before {
  content: "";
  width: clamp(200px, 26vw, 516px);
  height: clamp(130px, 17vw, 336px);
  background: url("../public/img/top/mv-deco01.png") center/cover no-repeat;
  position: absolute;
  top: 0;
  left: 17%;
}
@media screen and (max-width: 1024px) {
  .top__mv-container::before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-container::before {
    width: 171px;
    height: 204px;
    background: url("../public/img/top/mv-deco01-sp.png") center/cover no-repeat;
    left: unset;
    right: 45px;
  }
}
.top__mv-container::after {
  content: "";
  width: clamp(200px, 19vw, 320px);
  height: clamp(200px, 19vw, 320px);
  background: url("../public/img/top/mv-deco02.png") center/cover no-repeat;
  position: absolute;
  left: 50%;
  bottom: -150px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .top__mv-container::after {
    width: 144px;
    height: 144px;
    left: unset;
    right: 50px;
    bottom: -60px;
    -webkit-transform: unset;
            transform: unset;
  }
}
.top__mv-content {
  width: 100%;
}
.top__mv-heading {
  width: 100%;
  aspect-ratio: 840/56;
  margin-bottom: clamp(70px, 2vw, 120px);
}
@media screen and (max-width: 1024px) {
  .top__mv-heading {
    width: 80%;
    height: auto;
    aspect-ratio: unset;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-heading {
    aspect-ratio: 327/102;
    margin-bottom: 50px;
  }
}
.top__mv-desc {
  font-size: 2rem;
  line-height: 2em;
  color: #313f3e;
}
@media screen and (max-width: 1024px) {
  .top__mv-desc {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-desc {
    font-size: 16px;
  }
}
.top__mv-img-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding: 16px;
  -webkit-transform: translate(50px, 100px);
          transform: translate(50px, 100px);
}
@media screen and (max-width: 1024px) {
  .top__mv-img-wrap {
    -webkit-transform: translate(64px, 0);
            transform: translate(64px, 0);
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-img-wrap {
    padding: 8px;
  }
}
.top__mv-img-wrap::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url("../public/img/top/mv-border.svg") center/cover no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .top__mv-img-wrap::before {
    background: url("../public/img/top/mv-border-sp.svg") center/cover no-repeat;
  }
}
.top__mv-img {
  width: clamp(350px, 35vw, 622px);
  aspect-ratio: 1/1;
  display: block;
}
@media screen and (max-width: 1024px) {
  .top__mv-img {
    width: 550px;
    height: 550px;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-img {
    width: 266px;
    height: 266px;
  }
}
.top__mv-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  -webkit-transform: rotate(var(--start));
          transform: rotate(var(--start));
  -webkit-animation: orbit 25s linear infinite;
          animation: orbit 25s linear infinite;
}
.top__mv-orbit--1 {
  --start: 0deg;
}
.top__mv-orbit--2 {
  --start: 90deg;
}
.top__mv-orbit--3 {
  --start: 180deg;
}
.top__mv-orbit--4 {
  --start: 270deg;
}
.top__mv-orbit--1 > .top__mv-dot, .top__mv-orbit--3 > .top__mv-dot {
  width: 22px;
  height: 22px;
}
@media screen and (max-width: 767px) {
  .top__mv-orbit--1 > .top__mv-dot, .top__mv-orbit--3 > .top__mv-dot {
    width: 9px;
    height: 9px;
  }
}
.top__mv-orbit--2 > .top__mv-dot, .top__mv-orbit--4 > .top__mv-dot {
  width: 14px;
  height: 14px;
}
@media screen and (max-width: 767px) {
  .top__mv-orbit--2 > .top__mv-dot, .top__mv-orbit--4 > .top__mv-dot {
    width: 6px;
    height: 6px;
  }
}
.top__mv-dot {
  background: #55b8c2;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.top__about {
  position: relative;
  padding-block: 120px;
}
@media screen and (max-width: 767px) {
  .top__about {
    padding-block: 104px 80px;
  }
}
.top__about-heading {
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .top__about-heading {
    margin-bottom: 48px;
  }
}
.top__about-content {
  position: relative;
}
.top__about-desc {
  font-size: 1.6rem;
  color: #313f3e;
  line-height: 2em;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .top__about-desc {
    margin-top: 32px;
  }
}
.top__about-img {
  max-width: 1280px;
  position: absolute;
}
@media screen and (max-width: 1024px) {
  .top__about-img {
    display: none;
  }
}
.top__about-img--01 {
  width: 200px;
  height: 200px;
  top: -170px;
  right: 0;
}
.top__about-img--02 {
  width: clamp(350px, 35vw, 460px);
  height: clamp(396px, 35vw, 520px);
  right: 0;
  bottom: -320px;
  z-index: 1;
}
.top__products {
  padding-bottom: 80px;
}
.top__products-container {
  position: relative;
}
.top__products-heading {
  position: absolute;
  left: 50%;
  bottom: 60px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .top__products-heading {
    bottom: 0;
  }
}
.top__products-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .top__products-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-inline: 24px;
    gap: 30px 4%;
  }
}
@media screen and (max-width: 767px) {
  .top__products-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 32px;
    padding-inline: 24px;
    margin-top: 64px;
  }
}
.top__products-item {
  width: 33.3333333333%;
}
@media screen and (max-width: 1024px) {
  .top__products-item {
    width: 48%;
  }
}
@media screen and (max-width: 767px) {
  .top__products-item {
    width: 100%;
  }
}
.top__products-item:hover .top__products-img > img {
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
}
.top__products-img {
  width: 100%;
  height: auto;
  aspect-ratio: 640/438;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top__products-img {
    aspect-ratio: 343/235;
  }
}
.top__products-img > img {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.top__products-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #313f3e;
  line-height: 1.5em;
  text-align: center;
  margin-block: 24px;
}
@media screen and (max-width: 767px) {
  .top__products-title {
    font-size: 20px;
    margin-block: 16px;
  }
}
.top__products-btn {
  margin: 64px auto 0;
}
.top__company {
  width: 100%;
  background: url("../public/img/top/company-bg.png") center/cover no-repeat;
  border-radius: 24px 24px 0 0;
  min-height: 1154px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 64px 0 0 64px;
}
@media screen and (max-width: 767px) {
  .top__company {
    padding: 40px 0 0 24px;
    background: url("../public/img/top/company-bg-sp.png") center/cover no-repeat;
  }
}
.top__company-container {
  width: 100%;
  max-width: 1560px;
  margin-left: auto;
}
.top__company-heading {
  margin-bottom: 30px;
}
.top__company-wrapper {
  width: 100%;
  background-color: #fff;
  border-top-left-radius: 24px;
  padding: 55px;
}
@media screen and (max-width: 767px) {
  .top__company-wrapper {
    padding: 40px 0 56px;
  }
}
.top__company-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 72px;
}
@media screen and (max-width: 1024px) {
  .top__company-row {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 1024px) {
  .top__company-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 40px;
    margin-bottom: 56px;
  }
}
.top__company-subhead {
  font: 400 4rem "Kiwi Maru", serif;
  color: #313f3e;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .top__company-subhead {
    font-size: 24px;
  }
}
.top__company-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 48px 80px;
}
@media screen and (max-width: 1024px) {
  .top__company-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.top__company-item {
  width: 100%;
  max-width: 560px;
}
.top__company-img {
  margin-bottom: 16px;
}
.top__company-title-wrap {
  margin-top: 16px;
}
.top__company-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #218c8f;
}
.top__company-title-en {
  font-family: "ABeeZee", sans-serif;
  font-size: 1.6rem;
  color: #55b8c2;
  display: inline-block;
  margin-left: 10px;
}
.top__company-desc {
  font-size: 1.6rem;
  line-height: 2em;
  color: #313f3e;
  margin-block: 10px 40px;
}
@media screen and (max-width: 767px) {
  .top__company-desc {
    margin-bottom: 32px;
  }
}
.top__news {
  display: block;
  padding-block: 144px 80px;
}
@media screen and (max-width: 767px) {
  .top__news {
    padding-top: 120px;
  }
}
@media screen and (max-width: 767px) {
  .top__news-container {
    padding-inline: 24px;
  }
}
.top__news-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@-webkit-keyframes orbit {
  0% {
    -webkit-transform: rotate(var(--start));
            transform: rotate(var(--start));
  }
  100% {
    -webkit-transform: rotate(calc(var(--start) + 360deg));
            transform: rotate(calc(var(--start) + 360deg));
  }
}

@keyframes orbit {
  0% {
    -webkit-transform: rotate(var(--start));
            transform: rotate(var(--start));
  }
  100% {
    -webkit-transform: rotate(calc(var(--start) + 360deg));
            transform: rotate(calc(var(--start) + 360deg));
  }
}
.product-single__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .product-single__container {
    max-width: 100%;
    padding-inline: 24px;
  }
}
@media screen and (max-width: 767px) {
  .product-single__container {
    gap: 32px;
  }
}
.product-single__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 32px;
  border-bottom: 1px solid #55b8c2;
}
@media screen and (max-width: 767px) {
  .product-single__header {
    gap: 12px;
    padding-bottom: 24px;
  }
}
.product-single__category {
  color: #218c8f;
  font-size: 1.6rem;
}
.product-single__title {
  color: #006c80;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .product-single__title {
    font-size: 36px;
  }
}
.product-single__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
  padding-block: 16px 40px;
}
@media screen and (max-width: 1024px) {
  .product-single__card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    padding-block: 24px;
  }
}
@media screen and (max-width: 767px) {
  .product-single__card {
    padding-block: 20px;
  }
}
.product-single__card-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 45%;
  aspect-ratio: 5/3;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .product-single__card-image {
    width: 100%;
  }
}
.product-single__card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .product-single__card-body {
    gap: 16px;
  }
}
.product-single__card-descr {
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .product-single__card-btn {
    margin: 0 auto;
  }
}
.product-single__p {
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
}
.product-single__yt-playlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .product-single__yt-playlist {
    gap: 16px;
  }
}
.product-single__yt-item {
  width: calc((100% - 48px) / 3);
  aspect-ratio: 16/9;
}
@media screen and (max-width: 767px) {
  .product-single__yt-item {
    width: 100%;
  }
}
.product-single__yt-item iframe {
  width: 100%;
  height: 100%;
}
.product-single__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .product-single__content {
    gap: 32px;
  }
}
.product-single__content-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}
@media screen and (max-width: 767px) {
  .product-single__content-block {
    gap: 24px;
    padding-bottom: 56px;
  }
}
.product-single__content-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .product-single__content-body {
    gap: 24px;
  }
}
.product-single__content-body p {
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
}
.product-single__content-body ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding: 0;
  list-style: none;
}
.product-single__content-body ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  color: #000;
}
.product-single__content-body ul li::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 12px;
  width: 8px;
  height: 8px;
  background: #55b8c2;
  border-radius: 50%;
}
.product-single__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #55b8c2;
  border-radius: 4px;
  overflow: hidden;
}
.product-single__table th,
.product-single__table td {
  padding: 16px 24px;
  border-bottom: 1px dashed #55b8c2;
  font-size: 1.6rem;
  line-height: 2;
  color: #000;
  text-align: left;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .product-single__table th,
  .product-single__table td {
    display: block;
    width: 100%;
    padding: 12px 20px;
  }
}
.product-single__table th {
  width: 200px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .product-single__table th {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.product-single__table td {
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .product-single__table td {
    padding-top: 0;
  }
}
.product-single__table tr:last-child th,
.product-single__table tr:last-child td {
  border-bottom: none;
}
.product-single__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 767px) {
  .product-single__media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}
.product-single__media-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.product-single__media-img {
  width: 100%;
}
.product-single__media-img--side {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 45%;
  aspect-ratio: 5/3;
  background: #dfdfdf;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .product-single__media-img--side {
    width: 100%;
  }
}
.product-single__zoom-wrap {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.product-single__zoom-btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-top: 16px;
  background: none;
  border: none;
  font-family: "Kiwi Maru", serif;
  color: #218c8f;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .product-single__zoom-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.product-single__zoom-icon {
  width: 20px;
  height: 20px;
  background: url("../public/img/icons/zoom.svg") center/contain no-repeat;
}
.product-single__modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: none;
}
.product-single__modal[aria-hidden=false] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.product-single__modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  cursor: pointer;
}
.product-single__modal-inner {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  padding-bottom: 20px;
}
.product-single__modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}
.product-single__modal-img {
  max-width: 90vw;
}
.product-single__back-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .product-single__back-btn {
    gap: 12px;
  }
}
.product-single__back-btn:hover .product-single__back-icon {
  -webkit-transform: translateX(-3px);
          transform: translateX(-3px);
}
.product-single__back-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 48px;
  height: 48px;
  background: #313f3e url("../public/img/icons/return-arrow.svg") center/20px 20px no-repeat;
  border-radius: 16px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
@media screen and (max-width: 767px) {
  .product-single__back-icon {
    width: 40px;
    height: 40px;
    background: #313f3e url("../public/img/icons/return-arrow.svg") center/16px 16px no-repeat;
  }
}
.product-single__back-text {
  color: #313f3e;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .product-single__back-text {
    font-size: 14px;
  }
}

.contact {
  padding-block: 40px 120px;
}
@media screen and (max-width: 767px) {
  .contact {
    padding-block: 20px 80px;
  }
}
.contact__container {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: calc(1000px + 8%);
}
@media screen and (max-width: 767px) {
  .contact__container {
    max-width: 100%;
    padding-inline: 24px;
  }
}
.contact__heading {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .contact__heading {
    font-size: 18px;
  }
}
.contact__heading--red {
  color: #df542a;
}
.contact__text {
  font: 400 1.6rem/2em "Zen Kaku Gothic New", sans-serif;
}
.contact__description {
  margin-bottom: 72px;
}
.contact__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 64px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .contact__content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contact__content-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 296px;
}
@media screen and (max-width: 767px) {
  .contact__content-left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin: 0 auto;
  }
}
.contact__content-right {
  width: 640px;
}
@media screen and (max-width: 767px) {
  .contact__content-right {
    max-width: 100%;
  }
}
.contact__steps {
  position: relative;
  margin: 0 auto;
  width: 296px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 64px;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .contact__steps {
    margin-top: 56px;
  }
}
.contact__steps::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background: #218c8f;
  z-index: -1;
}
.contact__step-item {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  background: #d5ecee;
  font: 400 2.4rem/2em "ABeeZee", sans-serif;
  color: #218c8f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .contact__step-item {
    font-size: 20px;
    width: 48px;
    height: 48px;
  }
}
.contact__step-item.active {
  background: #218c8f;
  color: #fff;
}
.contact__step-label {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  width: 100%;
  text-align: center;
  font: 700 1.6rem/2em "Inter", sans-serif;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #218c8f;
}
.contact__banner {
  margin-top: 96.4px;
  height: 142px;
  border: 1px solid #55b8c2;
  border-radius: 8px;
  padding: 16px 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__banner {
    margin-top: 0;
  }
}
.contact__banner-heading {
  margin-bottom: 5px;
  font: 700 1.6rem "Zen Kaku Gothic New", sans-serif;
  letter-spacing: -0.01em;
  color: #313f3e;
}
.contact__banner-subheading {
  font: 700 1.4rem "Zen Kaku Gothic New", sans-serif;
  color: #218c8f;
}
.contact__banner-tel {
  margin-top: 16px;
  font: 400 3.2rem "ABeeZee", sans-serif;
  letter-spacing: -0.096rem;
  color: #218c8f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.contact__banner-tel::before {
  display: inline-block;
  content: "";
  width: 32px;
  height: 32px;
  background: url("../public/img/tel.svg") no-repeat center/contain;
}
.contact__form-content {
  margin-bottom: 40px;
  background: #fafafa;
  border-radius: 8px;
  padding: 16px 40px 56px;
  display: grid;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .contact__form-content {
    padding: 16px 8px 56px;
  }
}
.contact__form-item--checkbox {
  margin-top: 40px;
}
.contact__form-label {
  font: 700 1.6rem "Zen Kaku Gothic New", sans-serif;
  color: #313f3e;
  margin-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.contact__form-label::after {
  display: inline-block;
  content: "必須";
  width: 48px;
  height: 24px;
  border-radius: 33px;
  background: #df542a;
  font: 700 1.2rem/2em "Zen Kaku Gothic New", sans-serif;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact__form-label--optional::after {
  content: "任意";
  background: #d5ecee;
  color: #006c80;
}
.contact__form-input-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.contact__form-input, .contact__form-select {
  padding: 8px 20px;
  width: 100%;
  min-height: 64px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #c2c2c2;
  font: 700 1.6rem/2em "Zen Kaku Gothic New", sans-serif;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (max-width: 767px) {
  .contact__form-input, .contact__form-select {
    min-height: 48px;
    padding: 8px;
  }
}
.contact__form-input::-webkit-input-placeholder, .contact__form-select::-webkit-input-placeholder {
  color: #a2a2a2;
}
.contact__form-input::-moz-placeholder, .contact__form-select::-moz-placeholder {
  color: #a2a2a2;
}
.contact__form-input:-ms-input-placeholder, .contact__form-select:-ms-input-placeholder {
  color: #a2a2a2;
}
.contact__form-input::-ms-input-placeholder, .contact__form-select::-ms-input-placeholder {
  color: #a2a2a2;
}
.contact__form-input::placeholder, .contact__form-select::placeholder {
  color: #a2a2a2;
}
.contact__form-input::-webkit-inner-spin-button, .contact__form-input::-webkit-outer-spin-button, .contact__form-select::-webkit-inner-spin-button, .contact__form-select::-webkit-outer-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}
.contact__form-select {
  position: relative;
  -webkit-appearance: base-select;
     -moz-appearance: base-select;
          appearance: base-select;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* stylelint-disable-next-line selector-pseudo-element-no-unknown */
}
.contact__form-select:invalid,
.contact__form-select option:disabled {
  color: #a2a2a2;
}
.contact__form-select option {
  color: #000;
}
.contact__form-select::picker-icon {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 10px;
  background: url("../public/img/icons/select-arrow.svg") no-repeat center/contain;
}
.contact__form-textarea {
  width: 100%;
  min-height: 120px;
  background: #fff;
  padding: 8px 20px;
  border-radius: 4px;
  border: 1px solid #c2c2c2;
  font: 700 1.6rem/2em "Zen Kaku Gothic New", sans-serif;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  resize: none;
}
@media screen and (max-width: 767px) {
  .contact__form-textarea {
    padding: 8px;
  }
}
.contact__form-textarea::-webkit-input-placeholder {
  color: #a2a2a2;
}
.contact__form-textarea::-moz-placeholder {
  color: #a2a2a2;
}
.contact__form-textarea:-ms-input-placeholder {
  color: #a2a2a2;
}
.contact__form-textarea::-ms-input-placeholder {
  color: #a2a2a2;
}
.contact__form-textarea::placeholder {
  color: #a2a2a2;
}
.contact__form-file-native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.contact__form-file-button {
  min-width: 136px;
  min-height: 36px;
  border-radius: 8px;
  background: #218c8f;
  font: 700 1.6rem/2em "Zen Kaku Gothic New", sans-serif;
  color: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact__form-file-name {
  font: 500 1.2rem/2em "Zen Kaku Gothic New", sans-serif;
  color: #006c80;
}
.contact__form-checkbox-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.contact__form-checkbox-wrapper > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.contact__checkbox {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  border: 2px solid #313f3e;
  background: #fff;
  vertical-align: middle;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (max-width: 767px) {
  .contact__checkbox {
    width: 25px;
    height: 25px;
  }
}
.contact__checkbox:checked {
  background-color: #218c8f;
  border-color: #218c8f;
}
.contact__checkbox:checked::before {
  content: "";
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.contact__checkbox-text {
  font: 500 1.6rem "Zen Kaku Gothic New", sans-serif;
}
.contact__link {
  color: #2c6fff;
  text-decoration: underline;
}
.contact__form-value {
  font: 700 1.6rem/2em "Zen Kaku Gothic New", sans-serif;
  width: 100%;
  max-width: 320px;
}
@media screen and (max-width: 767px) {
  .contact__form-value {
    max-width: none;
  }
}
.contact__button {
  margin-top: 72px;
}
@media screen and (max-width: 767px) {
  .contact__button {
    margin: 40px auto 0;
  }
}
.contact__error:is(label) {
  display: block;
  margin-top: 4px;
  font: 500 1.2rem/1.5 "Zen Kaku Gothic New", sans-serif;
  color: #df542a;
  pointer-events: none;
}

.news__archive, .news__detail {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .news__archive, .news__detail {
    max-width: 100%;
    padding-inline: 24px;
  }
}
.news__cat-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .news__cat-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 63px;
    gap: 16px;
  }
}
.news__cat-list--g7 {
  gap: 7px;
}
@media screen and (max-width: 767px) {
  .news__cat-list--g7 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.news__cat-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-left: 2px solid #d5ecee;
  border-right: 2px solid #d5ecee;
}
.news__cat-wrap.no-border-right {
  border-right: 0;
}
@media screen and (max-width: 767px) {
  .news__cat-wrap.no-border-right {
    border-right: 2px solid #d5ecee;
  }
}
.news__cat-item {
  padding: 4px 24px;
}
@media screen and (max-width: 767px) {
  .news__cat-item {
    padding-inline: 16px;
  }
}
.news__cat-item:not(:last-child) {
  border-right: 2px solid #d5ecee;
}
.news__cat-item:hover .news__cat-link, .news__cat-item.active .news__cat-link {
  color: #55b8c2;
  border-bottom: 3px solid #55b8c2;
}
.news__cat-link {
  font: 400 1.6rem "Kiwi Maru", serif;
  line-height: 2em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.news__desc, .news__body {
  font-size: 1.6rem;
  line-height: 2em;
  color: #313f3e;
}
.news__title--fs24 {
  font-size: 2.4rem;
  line-height: 2em;
  margin-block: 16px;
}
@media screen and (max-width: 767px) {
  .news__title--fs24 {
    font-size: 20px;
  }
}
.news__title--fs13 {
  width: calc(100% - 88px);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .news__title--fs13 {
    font-size: 14px;
  }
}
.news__date--mr32 {
  margin-right: 32px;
}
@media screen and (max-width: 767px) {
  .news__date--mr32 {
    margin-right: 12px;
  }
}
.news__date--fs12 {
  font-size: 1.2rem;
  color: #218c8f;
}
.news__cat {
  min-width: 144px;
  background-color: #55b8c2;
  border-radius: 30px;
  font-family: "Kiwi Maru", serif;
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
  padding: 5px 10px 4px;
}
@media screen and (max-width: 767px) {
  .news__cat {
    min-width: 136px;
    font-size: 14px;
    padding: 4px 10px;
  }
}
.news__cat--half {
  min-width: calc(50% - 3.5px);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .news__cat--half {
    width: 136px;
    min-width: 0;
  }
}
.news__cat--half:hover {
  opacity: 0.6;
}
.news__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
}
@media screen and (max-width: 1024px) {
  .news__detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.news__main {
  width: calc(100% - 380px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 48px;
}
@media screen and (max-width: 1024px) {
  .news__main {
    width: 100%;
    row-gap: 40px;
  }
}
.news__img {
  width: 100%;
  aspect-ratio: 820/461;
}
.news__img--sm {
  width: 80px;
  height: 45px;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
}
.news__anchor {
  width: 100%;
  min-height: 164px;
  background-color: #f5fafa;
  border: 1px solid #d5ecee;
  border-radius: 4px;
  padding: 12px 24px 16px;
  margin-block: 24px;
}
@media screen and (max-width: 767px) {
  .news__anchor {
    padding: 8px 8px 12px;
    margin-block: 0;
  }
}
.news__anchor-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #55b8c2;
}
@media screen and (max-width: 767px) {
  .news__anchor-title {
    font-size: 14px;
  }
}
.news__anchor-list {
  list-style-position: inside;
  margin-top: 8px;
}
.news__anchor-item::marker, .news__anchor-link {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2em;
  color: #313f3e;
}
@media screen and (max-width: 767px) {
  .news__anchor-item::marker, .news__anchor-link {
    font-size: 14px;
  }
}
.news__anchor-link {
  text-decoration: underline;
  text-underline-position: under;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.news__anchor-link:hover {
  opacity: 0.6;
}
.news__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 24px;
}
.news___body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 24px;
}
.news__block-item {
  font-size: 1.6rem;
  font-weight: 500;
  position: relative;
  padding-left: 16px;
}
.news__block-item::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #55b8c2;
  border-radius: 50%;
  position: absolute;
  top: 12px;
  left: 0;
}
.news__table, .news__body table {
  border: 1px solid #55b8c2;
  border-radius: 4px;
  border-collapse: unset !important;
}
.news__table-item, .news__body table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  padding: 12px 20px;
  color: #313f3e;
}
@media screen and (max-width: 767px) {
  .news__table-item, .news__body table tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-block: 8px;
  }
}
.news__table-item:not(:last-child), .news__body table tr:not(:last-child) {
  border-bottom: 1px dashed #55b8c2;
}
.news__table-info, .news__table-detail {
  font-size: 1.6rem;
}
.news__table-info {
  width: 160px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .news__table-info {
    width: 100%;
  }
}
.news__table-detail {
  width: calc(100% - 180px);
}
@media screen and (max-width: 767px) {
  .news__table-detail {
    width: 100%;
  }
}
.news__side {
  width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 24px;
}
@media screen and (max-width: 1024px) {
  .news__side {
    width: 100%;
  }
}
.news__contact {
  width: 100%;
  min-height: 120px;
  background: url("../public/img/news/news-contact.jpg") center/cover no-repeat;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}
.news__contact-text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5em;
  color: #fff;
  text-align: center;
}
.news__contact-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #313f3e;
  border-radius: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  display: block;
  padding: 4px 20px;
  margin-top: 8px;
}
.news__side-head {
  font-size: 2.4rem;
  font-weight: 700;
  color: #313f3e;
  display: block;
  margin-bottom: 8px;
}
.news__related-item {
  display: block;
  border-bottom: 1px solid #313f3e;
  padding-block: 16px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.news__related-item:hover {
  opacity: 0.6;
}
.news__related-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.news__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #55b8c2;
  padding-top: 40px;
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .news__pagination {
    padding-top: 24px;
  }
}
.news__pagination-wrap {
  width: 33.3333333333%;
}
@media screen and (max-width: 767px) {
  .news__pagination-wrap {
    width: unset;
  }
}
.news__pagination-wrap--top a {
  margin-inline: auto;
}
.news__pagination-wrap--next a {
  margin-left: auto;
}
.news__btn-top {
  margin: 0 auto;
}

.contact__form[data-state=input] span.confirm-data {
  display: none;
}

.contact__form[data-state=confirm] .wpcf7-form-control-wrap {
  display: none;
}

.contact__form[data-state=input] .js-step-confirm {
  display: none;
}

.contact__form[data-state=confirm] .js-step-input {
  display: none;
}

.wpcf7-form-control-wrap {
  width: 100%;
}

.contact__form-checkbox-wrapper .wpcf7-form-control-wrap {
  width: auto;
}

.wpcf7-form-control-wrap > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.wpcf7-form-control-wrap:has(input[type=file]) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-not-valid-tip {
  font-size: 1.2rem;
}

.wpcf7-select:has(option[value=""]:checked) {
  color: #a2a2a2;
}

.button input[type=submit] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  color: transparent;
  opacity: 0;
  font-size: 0;
  z-index: 1;
}

.contact__form[data-state=confirm] .contact__form-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-block: 16px;
  border-bottom: 1px solid #c2c2c2;
}
@media screen and (max-width: 767px) {
  .contact__form[data-state=confirm] .contact__form-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.contact__form[data-state=confirm] .contact__form-item:last-child {
  border-bottom: none;
}
.contact__form[data-state=confirm] .contact__form-label {
  margin-bottom: 0;
}
.contact__form[data-state=confirm] .contact__form-input-wrapper {
  display: block;
  font: 700 1.6rem/2em "Zen Kaku Gothic New", sans-serif;
  width: 100%;
  max-width: 320px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .contact__form[data-state=confirm] .contact__form-input-wrapper {
    max-width: none;
  }
}
.contact__form[data-state=confirm] .contact__form-item--checkbox.acceptance {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 56px;
}
@media screen and (max-width: 767px) {
  .contact__form[data-state=confirm] .contact__form-item--checkbox.acceptance {
    gap: 10px;
    margin-top: 0;
  }
}
.contact__form[data-state=confirm] .contact__form-item--checkbox.acceptance > .contact__form-input-wrapper {
  width: 248px;
}
.contact__form[data-state=confirm] .contact__form-file-button,
.contact__form[data-state=confirm] .contact__form-file-name,
.contact__form[data-state=confirm] .contact__checkbox-text {
  display: none;
}
.contact__form[data-state=confirm] input[type=submit] {
  cursor: pointer;
}

.wpcf7-not-valid-tip,
.wpcf7-response-output {
  display: none;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-list-item > input[type=checkbox] {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  border: 2px solid #313f3e;
  background: #fff;
  vertical-align: middle;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (max-width: 767px) {
  .wpcf7-list-item > input[type=checkbox] {
    width: 25px;
    height: 25px;
  }
}
.wpcf7-list-item > input[type=checkbox]:checked {
  background-color: #218c8f;
  border-color: #218c8f;
}
.wpcf7-list-item > input[type=checkbox]:checked::before {
  content: "";
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.overflow {
  overflow: hidden;
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.mxw-sp {
  display: none;
}
@media screen and (max-width: 1200px) {
  .mxw-sp {
    display: block;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.main-content {
  position: relative;
  z-index: 1;
  margin-top: -160px;
}
@media screen and (max-width: 767px) {
  .main-content {
    margin-top: -70px;
  }
}
.main-content.pb {
  padding-bottom: 100px;
}

.lh-150 {
  line-height: 1.5em;
}

.lh-175 {
  line-height: 1.75em;
}

.lh-200 {
  line-height: 2em;
}

.ff-zen {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.fw-bold {
  font-weight: 700;
}

.fw-semibold {
  font-weight: 600;
}

.fw-medium {
  font-weight: 500;
}

.fw-regular {
  font-weight: 400;
}

.fw-light {
  font-weight: 300;
}

.text-teal-gradient {
  background: -webkit-gradient(linear, left top, right top, from(#057b9c), to(#00b994));
  background: linear-gradient(90deg, #057b9c 0%, #00b994 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.pc-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .pc-flex {
    display: none;
  }
}

.sp-flex {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.pc-tablet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .pc-tablet {
    display: none;
  }
}

.sp-tablet {
  display: none;
}
@media screen and (max-width: 1024px) {
  .sp-tablet {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.text-trim {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@property --gradient-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
@-webkit-keyframes rotate-gradient {
  to {
    --gradient-angle: 360deg;
  }
}
@keyframes rotate-gradient {
  to {
    --gradient-angle: 360deg;
  }
}
h3.wp-block-heading {
  position: relative;
  padding-left: 16px;
}
@media screen and (max-width: 767px) {
  h3.wp-block-heading {
    padding-left: 12px;
  }
}
h3.wp-block-heading::before {
  content: "";
  width: 8px;
  height: 100%;
  background: #218c8f;
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  h3.wp-block-heading::before {
    width: 4px;
  }
}

ul.wp-block-list li {
  position: relative;
  padding-left: 16px;
}
ul.wp-block-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #55b8c2;
  border-radius: 50%;
  position: absolute;
  top: 12px;
  left: 0;
}

.wp-block-table {
  border-collapse: unset !important;
}
.wp-block-table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  padding: 12px 20px;
  color: #313f3e;
}
@media screen and (max-width: 767px) {
  .wp-block-table tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-block: 8px;
  }
}
.wp-block-table tr:not(:last-child) {
  border-bottom: 1px dashed #55b8c2;
}
.wp-block-table td,
.wp-block-table th {
  border: 0 !important;
  padding: 0 !important;
}
.wp-block-table td:first-child {
  width: 160px;
}
@media screen and (max-width: 767px) {
  .wp-block-table td:first-child {
    width: 100%;
  }
}
.wp-block-table td:last-child {
  width: calc(100% - 180px);
}
@media screen and (max-width: 767px) {
  .wp-block-table td:last-child {
    width: 100%;
  }
}