.foam__anchor__list {
  position: sticky;
  top: 8rem;
  z-index: 10;
  background-color: #F0F4F8;
}
@media screen and (max-width: 1109px) {
  .foam__anchor__list {
    top: 5rem;
  }
}
.foam__anchor__list__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.8rem 0;
  padding: 1rem;
}
@media screen and (max-width: 1100px) {
  .foam__anchor__list__block {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 724px) {
  .foam__anchor__list__block {
    padding: 1rem 2rem;
  }
}
@media screen and (max-width: 724px) {
  .foam__anchor__list {
    position: static;
  }
}
.foam__anchor__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 3.2rem;
  margin-right: 2.5rem;
  padding-right: 2.5rem;
  padding-bottom: 1.2rem;
  border-right: 0.1rem solid #DADCE0;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.2;
}
.foam__anchor__item:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  translate: calc(-50% - 1.25rem) 0;
  display: block;
  width: 0%;
  height: 0;
  border-width: 0.6rem 0.5rem 0;
  border-style: solid;
  border-color: #054A97 transparent transparent;
}
@media screen and (max-width: 900px) {
  .foam__anchor__item:after {
    translate: calc(-50% - 0.5rem) 0;
  }
}
.foam__anchor__item:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}
.foam__anchor__item a {
  color: #054A97;
  text-decoration: none;
}
.foam__anchor__item br {
  display: none;
}
@media screen and (max-width: 1100px) {
  .foam__anchor__item br {
    display: block;
  }
}
@media screen and (max-width: 900px) {
  .foam__anchor__item {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 810px) {
  .foam__anchor__item {
    padding-right: 1rem;
    margin-right: 1rem;
  }
}
@media screen and (max-width: 724px) {
  .foam__anchor__item:nth-child(3) {
    margin-right: 0;
    padding-right: 0;
    border: none;
  }
}

.foam__section {
  margin-bottom: 10rem;
}
.foam__section:last-child {
  margin-bottom: 0;
}
.foam__section .section__sub__title {
  margin-bottom: 3rem;
  font-size: 2.6rem;
  font-weight: 700;
  color: #054A97;
}
.foam__section .section__content {
  margin-bottom: 8rem;
}
.foam__section .section__content:last-child {
  margin-bottom: 0;
}
.foam__section .section__block {
  margin-bottom: 4rem;
}
.foam__section .section__block.-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 6rem;
}
@media screen and (max-width: 900px) {
  .foam__section .section__block.-flex:not(.-img) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .foam__section .section__block.-flex:not(.-img) .flex__content {
    max-width: 100%;
  }
}
.foam__section .section__block.-grid {
  display: grid;
}
.foam__section .section__block.-grid.-column3 {
  grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
  gap: 4.5rem;
}
.foam__section .section__block.-grid.-bg_image .grid__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
}
.foam__section .section__block.-grid.-bg_image .grid__item dl {
  position: relative;
  min-height: 31rem;
  padding: 3rem 2rem 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  color: #fff;
  padding-bottom: 3rem;
}
.foam__section .section__block.-grid.-bg_image .grid__item dl::before {
  content: "";
  position: absolute;
  bottom: -1.2rem;
  left: 50%;
  translate: -50% 0;
  display: block;
  width: 0;
  height: 0;
  border-width: 1.2rem 2.8rem 0;
}
.foam__section .section__block.-grid.-bg_image .grid__item dl dt {
  margin-bottom: 2rem;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 724px) {
  .foam__section .section__block.-grid.-bg_image .grid__item dl {
    min-height: auto;
    padding-bottom: 3rem;
  }
}
.foam__section .section__block.-grid.-bg_image .grid__item:first-child dl {
  background-image: url(/files/foam/common/img_about_grid01.png);
}
.foam__section .section__block.-grid.-bg_image .grid__item:first-child dl::before {
  border-color: #03215B transparent transparent;
}
.foam__section .section__block.-grid.-bg_image .grid__item:nth-child(2) dl {
  background-image: url(/files/foam/common/img_about_grid02.png);
}
.foam__section .section__block.-grid.-bg_image .grid__item:nth-child(2) dl::before {
  border-color: #051D6D transparent transparent;
}
.foam__section .section__block.-grid.-bg_image .grid__item:last-child dl {
  background-image: url(/files/foam/common/img_about_grid03.png);
}
.foam__section .section__block.-grid.-bg_image .grid__item:last-child dl::before {
  border-color: #003B65 transparent transparent;
}
.foam__section .section__block.-grid.-bg_image .grid__item ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 0;
  padding: 2.5rem 2rem 3rem;
  background-color: #F5F5F5;
}
.foam__section .section__block.-grid.-bg_image .grid__item ul li {
  width: 50%;
}
body:lang(en) .foam__section .section__block.-grid.-bg_image .grid__item ul li {
  width: 100%;
}
.foam__section .section__block.-grid.-bg_image .grid__item ul li::before {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  margin-right: 0.8rem;
  margin-bottom: 0.2rem;
  border-radius: 50%;
  background-color: #38485F;
}
.foam__section .section__block.-grid.-border .grid__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;
}
.foam__section .section__block.-grid.-border .grid__item h4 {
  padding: 0.9rem 2rem;
  background-color: #EAF1F8;
  font-size: 2.2rem;
  font-weight: 700;
  color: #054A97;
}
.foam__section .section__block.-grid.-border .grid__item .grid__item__body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border: 0.3rem solid #EAF1F8;
  padding: 2rem 2.2rem 3rem;
}
.foam__section .section__block.-grid.-border .grid__item .grid__item__body dl {
  margin-top: 2.5rem;
}
.foam__section .section__block.-grid.-border .grid__item .grid__item__body dl dt {
  margin-bottom: 1.3rem;
  color: #000;
}
.foam__section .section__block.-grid.-border .grid__item::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -3.5rem;
  translate: 0 -50%;
  rotate: -90deg;
  display: block;
  width: 0;
  height: 0;
  border-width: 1.6rem 1.1rem 0;
  border-style: solid;
  border-color: #38485F transparent transparent;
}
@media screen and (max-width: 724px) {
  .foam__section .section__block.-grid.-border .grid__item::before {
    top: auto;
    bottom: -3rem;
    left: 50%;
    translate: -50% 0;
    rotate: 0deg;
  }
}
.foam__section .section__block.-grid.-border .grid__item:last-child::before {
  content: none;
}
@media screen and (max-width: 1109px) {
  .foam__section .section__block.-grid.-border {
    padding-right: 2rem;
  }
}
@media screen and (max-width: 724px) {
  .foam__section .section__block.-grid.-border {
    padding-right: 0;
  }
}
.foam__section .section__block.-img img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 3.7rem;
  width: 20.8rem;
}
@media screen and (max-width: 724px) {
  .foam__section .section__block.-img {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .foam__section .section__block.-img img {
    width: 100%;
  }
}
.foam__section .section__block:last-child {
  margin-bottom: 0;
}
.foam__section .flex__content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 57rem;
}
.foam__section .img__border {
  padding: 1.7rem 2rem;
  border: 0.1rem solid #BABABA;
}
.foam__section .functions__foam__anchor {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
}
body:lang(en) .foam__section .functions__foam__anchor {
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
}
.foam__section .functions__foam__anchor {
  gap: 1.2rem;
  margin-bottom: 4rem;
  counter-reset: number 0;
}
.foam__section .functions__foam__anchor__item a {
  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: 100%;
  height: 6rem;
  padding: 0 1.2rem;
  background-color: #064A97;
  border-radius: 0.4rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.foam__section .functions__foam__anchor__item a::before {
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero);
  margin-right: 0.8rem;
  font-weight: 700;
}
.foam__section .functions__foam__anchor__item a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 724px) {
  .foam__section .functions__foam__anchor {
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  }
  .foam__section .functions__foam__anchor__item a {
    font-size: 1.4rem;
  }
}
.foam__section .functions__foam__block {
  counter-reset: number 0;
}
.foam__section .functions__foam__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.5rem;
  padding: 4rem 5rem;
}
.foam__section .functions__foam__box:nth-child(even) {
  background-color: #F7F7F7;
}
.foam__section .functions__foam__box:nth-child(2) {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.foam__section .functions__foam__box h3 {
  position: relative;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 500;
  color: #054A97;
}
.foam__section .functions__foam__box h3::before {
  position: relative;
  z-index: 5;
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 6rem;
  height: 6rem;
  margin-right: 1.5rem;
  background-image: linear-gradient(135deg, #98BCD6, #1658A3);
  font-size: 2.7rem;
  font-weight: 700;
  color: #fff;
  vertical-align: middle;
}
.foam__section .functions__foam__box h3::after {
  content: "";
  position: absolute;
  bottom: 1rem;
  left: 6rem;
  display: block;
  width: calc(100% - 6rem);
  height: 0.1rem;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#1658A3), to(#98BCD6));
  background-image: linear-gradient(#1658A3, #98BCD6);
}
.foam__section .functions__foam__box__text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 61.5rem;
}
.foam__section .functions__foam__box__text dl dt {
  margin-bottom: 2rem;
  font-size: 2.2rem;
  font-weight: 700;
  color: #054A97;
  line-height: 3.8rem;
}
.foam__section .functions__foam__box__text dl dd p {
  margin-bottom: 1rem;
}
.foam__section .functions__foam__box__text dl dd p:last-child {
  margin-bottom: 0;
}
.foam__section .functions__foam__box__img {
  width: 45rem;
}
.foam__section .functions__foam__box__img img {
  margin-bottom: 4rem;
}
.foam__section .functions__foam__box__img img:last-child {
  margin-bottom: 0;
}
.foam__section .functions__foam__box__img .-btn {
  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: 23rem;
  height: 5rem;
  margin: 0 auto;
  background-color: #064A97;
  border-radius: 0.4rem;
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.foam__section .functions__foam__box__img .-btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 850px) {
  .foam__section .functions__foam__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 3rem 2rem;
  }
  .foam__section .functions__foam__box__text {
    width: 100%;
  }
  .foam__section .functions__foam__box__img {
    width: 100%;
  }
}
@media screen and (max-width: 724px) {
  .foam__section .functions__foam__box h3 {
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
  }
  body:lang(en) .foam__section .functions__foam__box h3 {
    font-size: 1.4rem;
  }
  .foam__section .functions__foam__box h3::before {
    width: 4rem;
    height: 4rem;
    margin-right: 0.8rem;
    font-size: 2rem;
  }
  .foam__section .functions__foam__box h3::after {
    bottom: 0.6rem;
    left: 4rem;
    width: calc(100% - 4rem);
  }
  .foam__section .functions__foam__box__text dl dt {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
  .foam__section .functions__foam__box__img img {
    margin-bottom: 2rem;
  }
}
.foam__section .faq__foam__box {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 0.1rem solid #D9DCE0;
}
.foam__section .faq__foam__box dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.4rem;
  font-size: 1.8rem;
  color: #000;
}
.foam__section .faq__foam__box dt::before {
  content: "Q";
  -ms-flex-negative: 0;
      flex-shrink: 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: 3.5rem;
  height: 3.5rem;
  margin-right: 1rem;
  padding-bottom: 0.3rem;
  border-radius: 50%;
  background-color: #D84C41;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}
.foam__section .faq__foam__box dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.foam__section .faq__foam__box dd::before {
  content: "A";
  -ms-flex-negative: 0;
      flex-shrink: 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: 3.5rem;
  height: 3.5rem;
  margin-right: 1rem;
  border-radius: 50%;
  background-color: #8A9CB4;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}
.foam__section h2 + p {
  margin-bottom: 2rem;
}
.foam__section .overseas__item {
  margin-bottom: 8rem;
}
.foam__section .overseas__item .section__sub__title {
  margin-bottom: 2rem;
}
.foam__section .overseas__item:first-of-type .overseas__item__body img {
  width: 25rem;
}
.foam__section .overseas__item:nth-of-type(2) .overseas__item__body img {
  width: 18.1rem;
}
.foam__section .overseas__item:last-of-type {
  margin-bottom: 0;
}
.foam__section .overseas__item:last-of-type .overseas__item__box:first-of-type img {
  width: 24rem;
}
.foam__section .overseas__item:last-of-type .overseas__item__box:nth-of-type(2) img {
  width: 22.1rem;
}
.foam__section .overseas__item:last-of-type .overseas__item__box:last-of-type img {
  width: 24.4rem;
}
.foam__section .overseas__item__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem 5rem;
  margin-bottom: 5rem;
}
.foam__section .overseas__item__box:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 850px) {
  .foam__section .overseas__item__box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.foam__section .overseas__item__img {
  width: 24.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 724px) {
  .foam__section .overseas__item__img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
  }
}
.foam__section .overseas__item__body img {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 724px) {
  .foam__section .overseas__item__body {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
}
.foam__section .overseas__item__text dt {
  font-weight: 700;
}
.foam__section .overseas__item__btn {
  -ms-flex-negative: 0;
      flex-shrink: 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: 24rem;
  height: 4rem;
  margin: auto 0 auto auto;
  background-color: #064A97;
  border-radius: 0.4rem;
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.foam__section .overseas__item__btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 850px) {
  .foam__section .overseas__item__btn {
    width: 100%;
    margin: auto;
  }
}
@media screen and (max-width: 724px) {
  .foam__section .overseas__item__btn {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.foam__section .products__anchor {
  margin-bottom: 5rem;
  padding: 5rem;
  overflow: auto;
  background-color: #F7F7F7;
}
.foam__section .products__anchor__body {
  position: relative;
  width: 95.7rem;
  height: 53.4rem;
  margin: 0 auto;
}
body:lang(ja) .foam__section .products__anchor__body {
  background: url(/files/foam/ja/bg_products.png) no-repeat center center/contain;
}
body:lang(en) .foam__section .products__anchor__body {
  background: url(/files/foam/en/bg_products.png) no-repeat center center/contain;
}
body:lang(ko) .foam__section .products__anchor__body {
  background: url(/files/foam/ko/bg_products.png) no-repeat center center/contain;
}
body:lang(zh) .foam__section .products__anchor__body {
  background: url(/files/foam/tw/bg_products.png) no-repeat center center/contain;
}
.foam__section .products__anchor__body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 6.7rem;
  display: block;
  width: 44rem;
  height: 46.9rem;
  background-image: -webkit-gradient(linear, left top, right bottom, from(#FFFFFF), to(#CCEEFA));
  background-image: linear-gradient(to bottom right, #FFFFFF, #CCEEFA);
  border-radius: 4rem;
  -webkit-box-shadow: 0.3rem 0.3rem 2.5rem rgba(0, 0, 0, 0.2);
          box-shadow: 0.3rem 0.3rem 2.5rem rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 724px) {
  .foam__section .products__anchor__body {
    width: 50.8rem;
    height: 28.1rem;
  }
  .foam__section .products__anchor__body::before {
    width: 23.4rem;
    height: 24.9rem;
    left: 3.6rem;
    border-radius: 2.5rem;
    -webkit-box-shadow: 0.2rem 0.2rem 1.5rem rgba(0, 0, 0, 0.2);
            box-shadow: 0.2rem 0.2rem 1.5rem rgba(0, 0, 0, 0.2);
  }
}
.foam__section .products__anchor__item {
  position: absolute;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
  font-size: 2.1rem;
}
body:lang(en) .foam__section .products__anchor__item {
  font-size: 1.9rem;
}
.foam__section .products__anchor__item {
  font-weight: 500;
  color: #054A97;
  line-height: 2.3rem;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.foam__section .products__anchor__item span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.7rem;
  font-size: 1.5rem;
  color: #222;
  line-height: 1.2;
}
.foam__section .products__anchor__item span i {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  background-color: #054A97;
  font-size: 1.9rem;
  font-style: normal;
  font-weight: 500;
  color: #fff;
}
.foam__section .products__anchor__item.-circle {
  -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: 0.4rem;
  border-radius: 50%;
  -webkit-box-shadow: 0.3rem 0.3rem 1.5rem rgba(0, 0, 0, 0.1);
          box-shadow: 0.3rem 0.3rem 1.5rem rgba(0, 0, 0, 0.1);
  text-align: center;
}
.foam__section .products__anchor__item.-circle.-color01 {
  width: 16rem;
  height: 16rem;
  padding-top: 0.8rem;
  background-image: linear-gradient(135deg, rgba(193, 236, 255, 0.9), rgba(97, 170, 229, 0.9));
}
.foam__section .products__anchor__item.-circle.-color02 {
  background-image: linear-gradient(135deg, rgba(162, 209, 248, 0.9), rgba(108, 146, 219, 0.9));
}
.foam__section .products__anchor__item.-circle.-color03 {
  background-image: linear-gradient(135deg, rgba(247, 253, 255, 0.9), rgba(104, 201, 235, 0.9));
}
.foam__section .products__anchor__item:first-child {
  top: 2.4rem;
  left: 9.4rem;
}
.foam__section .products__anchor__item:nth-child(2) {
  top: 6.3rem;
  left: 9.4rem;
}
.foam__section .products__anchor__item:nth-child(3) {
  top: 10rem;
  left: 25.6rem;
}
.foam__section .products__anchor__item:nth-child(4) {
  top: 20.5rem;
  left: 10.1rem;
}
.foam__section .products__anchor__item:nth-child(5) {
  top: 29rem;
  left: 26.7rem;
  font-size: 1.9rem;
}
body:lang(en) .foam__section .products__anchor__item:nth-child(5) {
  font-size: 1.8rem;
}
.foam__section .products__anchor__item:nth-child(6) {
  top: 14.3rem;
  left: 46.9rem;
  gap: 1rem;
  width: 21.9rem;
  height: 21.9rem;
  padding-bottom: 1.1rem;
}
.foam__section .products__anchor__item:nth-child(6) span {
  -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;
  gap: 1.3rem;
}
.foam__section .products__anchor__item:nth-child(7) {
  top: 26.9rem;
  left: 72.3rem;
  width: 19.6rem;
  height: 19.6rem;
  padding-bottom: 1.1rem;
}
.foam__section .products__anchor__item:nth-child(8) {
  top: 0;
  left: 71.3rem;
  width: 21.9rem;
  height: 21.9rem;
  padding-bottom: 1.7rem;
}
.foam__section .products__anchor__item:nth-child(9) {
  top: 15.6rem;
  left: 65.7rem;
  width: 16.4rem;
  height: 16.4rem;
  font-size: 1.9rem;
}
body:lang(en) .foam__section .products__anchor__item:nth-child(9) {
  font-size: 1.8rem;
}
.foam__section .products__anchor__item:hover {
  opacity: 0.7;
}
@media screen and (max-width: 724px) {
  .foam__section .products__anchor__item {
    gap: 0.7rem;
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
  body:lang(en) .foam__section .products__anchor__item {
    font-size: 1.2rem;
  }
  .foam__section .products__anchor__item span {
    gap: 0.4rem;
    font-size: 0.8rem;
  }
  .foam__section .products__anchor__item span i {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1rem;
  }
  .foam__section .products__anchor__item.-circle {
    gap: 0.2rem;
    -webkit-box-shadow: 0.2rem 0.2rem 0.8rem rgba(0, 0, 0, 0.1);
            box-shadow: 0.2rem 0.2rem 0.8rem rgba(0, 0, 0, 0.1);
  }
  .foam__section .products__anchor__item.-circle.-color01 {
    width: 8.5rem;
    height: 8.5rem;
    padding-top: 0.4rem;
  }
  .foam__section .products__anchor__item:first-child {
    top: 1.4rem;
    left: 5.1rem;
  }
  .foam__section .products__anchor__item:nth-child(2) {
    top: 3.6rem;
    left: 5.1rem;
  }
  .foam__section .products__anchor__item:nth-child(3) {
    top: 5.3rem;
    left: 13.6rem;
  }
  .foam__section .products__anchor__item:nth-child(4) {
    top: 10.9rem;
    left: 5.4rem;
  }
  .foam__section .products__anchor__item:nth-child(5) {
    top: 15.4rem;
    left: 13.6rem;
    font-size: 1rem;
  }
  body:lang(en) .foam__section .products__anchor__item:nth-child(5) {
    font-size: 1rem;
  }
  .foam__section .products__anchor__item:nth-child(6) {
    top: 7.6rem;
    left: 24.9rem;
    gap: 0.5rem;
    width: 11.6rem;
    height: 11.6rem;
    padding-bottom: 0.6rem;
  }
  .foam__section .products__anchor__item:nth-child(6) span {
    gap: 0.7rem;
  }
  .foam__section .products__anchor__item:nth-child(7) {
    top: 14.3rem;
    left: 38.4rem;
    width: 10.4rem;
    height: 10.4rem;
    padding-bottom: 0.6rem;
  }
  .foam__section .products__anchor__item:nth-child(8) {
    top: 0;
    left: 37.9rem;
    width: 11.6rem;
    height: 11.6rem;
    padding-bottom: 0.8rem;
  }
  .foam__section .products__anchor__item:nth-child(9) {
    top: 8.3rem;
    left: 34.9rem;
    width: 8.7rem;
    height: 8.7rem;
    font-size: 1rem;
  }
  body:lang(en) .foam__section .products__anchor__item:nth-child(9) {
    font-size: 1rem;
  }
}
.foam__section .products__link__list .products__link__item.-active {
  position: relative;
  background-color: #F0F4F8;
  -webkit-box-shadow: inset 0 0 0.9rem #84BEFF;
          box-shadow: inset 0 0 0.9rem #84BEFF;
}
.foam__section .products__link__list .products__link__item.-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  display: block;
  width: 100%;
  height: 100%;
  border: 0.1rem solid #90AFD9;
}

.contents__width--full {
  width: 99vw;
  margin-left: calc(50% - 50vw);
}

.lum-lightbox {
  z-index: 999;
}
.lum-lightbox img {
  width: 94rem;
  max-width: 100%;
}