@charset "UTF-8";
html {
  font-size: 14px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

* {
  font-family: "Open Sans", serif;
  font-optical-sizing: auto;
  color: #333333;
}

sup {
  vertical-align: text-top;
}

a {
  text-decoration: none;
}

[class*=fm-roboto] {
  font-family: "Roboto", serif;
}

/* ビデオを無効表示にする追加のCSS */
video::-webkit-media-controls {
  display: none;
}

video::-moz-media-controls {
  display: none;
}

video::-ms-media-controls {
  display: none;
}

video::-o-media-controls {
  display: none;
}

video::media-controls {
  display: none;
}

.movie {
  border-radius: 20px;
}

.btn-link {
  border-radius: 9999px;
  background: #fff;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.btn-link:after {
  display: inline-block;
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/icn-arrow.svg);
  background-size: cover;
  margin-left: auto;
}

[class*=sec-] {
  padding-top: 54px;
}
@media (min-width: 768px) {
  [class*=sec-] {
    padding-top: 90px;
  }
}
[class*=sec-] h3 {
  font-size: 18px;
  position: relative;
}
@media (min-width: 768px) {
  [class*=sec-] h3 {
    font-size: 20px;
  }
}
[class*=sec-] h3:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #d3edff;
  margin-top: 20px;
  margin-bottom: 24px;
  border-radius: 9999px;
}
@media (min-width: 768px) {
  [class*=sec-] h3:after {
    margin-bottom: 32px;
  }
}
[class*=sec-] h3:before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 21.3333333333vw;
  height: 2px;
  background: #0091d8;
  border-radius: 9999px;
}
@media (min-width: 768px) {
  [class*=sec-] h3:before {
    width: 80px;
  }
}

.flex-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .flex-column {
    gap: 30px;
  }
}

.fc-gray {
  color: #666666;
}

@media (min-width: 768px) {
  .pc {
    display: initial;
  }
  .sp {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: initial;
  }
}
.tc {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.cmn-inner {
  padding-left: 25px;
  padding-right: 25px;
}
@media (min-width: 1000px) {
  .cmn-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.list-disc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8em;
}
.list-disc li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.list-disc li::before {
  content: "●";
  font-size: 70%;
  color: #0091d8;
  padding-top: 0.5em;
}

.list-decimal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8em;
  margin-left: 1em;
  margin-bottom: 16px;
}
.list-decimal li {
  list-style: decimal;
}

@media (max-width: 767px) {
  header {
    position: sticky;
    z-index: 99;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10.6666666667vw 5.8666666667vw;
    background: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  header.is-scroll {
    padding: 4.2666666667vw 5.8666666667vw;
    -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.08);
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.08);
  }
}
@media (max-width: 767px) {
  header .logo-shofu {
    width: 8.5333333333vw;
  }
}
@media (min-width: 768px) {
  header .logo-shofu {
    width: 46px;
    position: fixed;
    top: 32px;
    left: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  header .logo-shofu {
    left: 20px;
  }
}
@media (max-width: 767px) {
  header .logo-oral {
    width: 24.5333333333vw;
    margin-left: 4.2666666667vw;
  }
}
@media (min-width: 768px) {
  header .logo-oral {
    width: 144px;
    position: fixed;
    right: 50px;
    top: 32px;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  header .logo-oral {
    width: 90px;
    right: 25px;
  }
}
header #menu {
  position: fixed;
  top: 0;
  right: -100vw;
  overflow: hidden;
  width: 100vw;
  padding: 10.6666666667vw 6.6666666667vw 21.3333333333vw;
  -webkit-transition: left 0.5s, right 0.5s;
  transition: left 0.5s, right 0.5s;
  background-color: #0091d8;
}
header .toggle-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-bottom: 6.4vw;
}
header .toggle {
  cursor: pointer;
  margin-left: auto;
}
header .toggle:hover {
  text-decoration: underline;
}
header #open {
  display: none;
}
header #open:checked + #menu {
  right: 0;
}
header nav.sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header nav.sp * {
  color: #fff;
}
header nav.sp p {
  font-size: 12px;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  text-orientation: sideways;
  font-weight: 900;
  padding-right: 10px;
}
header nav.sp ul {
  padding-left: 16px;
  border-left: 1px solid #fff;
}
header nav.sp ul li a {
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
}
header nav.sp ul li.child a {
  font-size: 13px;
  color: #80c8eb;
  margin-left: 1.2em;
}
header nav.sp ul li.parent:not(:first-of-type) {
  margin-top: 1em;
}
header nav.pc {
  position: fixed;
  top: 202px;
  left: 84px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 768px) and (max-width: 1100px) {
  header nav.pc {
    left: 54px;
  }
}
header nav.pc * {
  color: #0091d8;
}
header nav.pc p {
  font-size: 16px;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  text-orientation: sideways;
  font-weight: 900;
  padding-right: 5px;
}
header nav.pc ul {
  padding-left: 16px;
  border-left: 1px solid #0091d8;
}
header nav.pc ul li a {
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}
header nav.pc ul li.child a {
  font-size: 13px;
  color: #80c8eb;
  margin-left: 1.2em;
}
header nav.pc ul li.parent:not(:first-of-type) {
  margin-top: 1em;
}
@media (min-width: 768px) and (max-width: 1000px) {
  header nav.pc {
    left: 20px;
  }
}
header .scrolldown {
  position: fixed;
  bottom: 40px;
  right: 212px;
}
@media (min-width: 768px) and (max-width: 1000px) {
  header .scrolldown {
    right: 122px;
  }
}

.main-contents {
  background: #fff !important;
}
@media (min-width: 768px) {
  .main-contents {
    -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 540px;
    width: 40%;
    margin-left: auto;
    margin-right: 250px;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .main-contents {
    margin-right: 150px;
  }
}
.main-contents h1 {
  padding-top: 32px;
  padding-bottom: 54px;
  font-size: 24px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .main-contents h1 {
    padding-top: 58px;
    padding-bottom: 48px;
    font-size: 32px;
  }
}
.main-contents .sec-fv {
  padding-top: 0;
  position: relative;
}
.main-contents .sec-fv .logo-gumy {
  position: absolute;
  width: 50%;
  top: 12%;
  pointer-events: none;
  z-index: 10;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.main-contents .sec-fv #thumbnail-carousel {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  bottom: 6.4%;
}
.main-contents .sec-fv #thumbnail-carousel .splide__slide {
  width: 70px !important;
  height: 45px !important;
  border-radius: 4px;
  border: 1px solid #e5f3fb !important;
}
.main-contents .sec-fv #thumbnail-carousel .splide__slide:last-of-type {
  margin-right: 0 !important;
}
.main-contents .sec-fv #thumbnail-carousel .splide__slide.is-active {
  border: 1px solid #fff !important;
}
.main-contents .sec-lead h2 {
  font-size: 20px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .main-contents .sec-lead h2 {
    font-size: 24px;
    margin-bottom: 32px;
  }
}
.main-contents .sec-oral {
  background: #f2f2f2;
  margin-top: 54px;
  padding-bottom: 24%;
}
@media (min-width: 768px) {
  .main-contents .sec-oral {
    margin-top: 90px;
  }
}
.main-contents .sec-oral .logo-oral {
  width: 45.8666666667vw;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .main-contents .sec-oral .logo-oral {
    width: 172px;
  }
}
.main-contents .sec-oral .oral-video {
  width: 100%;
  margin-bottom: 100px;
}
.main-contents .sec-oral #oral-sys .splide__slide {
  border: none !important;
}
.main-contents .sec-oral #oral-sys .oral-slide-header {
  height: 13%;
}
.main-contents .sec-oral #oral-sys .number {
  font-size: 16px;
  color: #0091d8;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  margin-bottom: 2%;
}
.main-contents .sec-oral #oral-sys .point {
  font-size: 20px;
  color: #0091d8;
  font-weight: 700;
  line-height: 1;
}
.main-contents .sec-oral #oral-sys .oral-slide-img {
  margin-bottom: 20px;
}
.main-contents .sec-oral #oral-sys .oral-slide-ttl {
  font-size: 18px;
  font-weight: bold;
  color: #666666;
  margin-bottom: 0.5em;
}
.main-contents .sec-oral #oral-sys .oral-slide-txt {
  font-size: 14px;
}
.main-contents .sec-oral #oral-sys .splide__arrows--ltr {
  position: absolute;
  bottom: -10%;
  left: 0;
  width: 100%;
}
.main-contents .sec-oral #oral-sys .splide__arrows--ltr svg {
  display: none;
}
.main-contents .sec-oral #oral-sys .splide__arrow {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 1 !important;
  width: 40px;
  height: 40px;
}
@media (max-width: 767px) {
  .main-contents .sec-oral #oral-sys .splide__arrow {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
}
.main-contents .sec-oral #oral-sys .splide__arrow--prev {
  left: 0;
  background-image: url(../img/prev.png);
  background-size: cover;
}
.main-contents .sec-oral #oral-sys .splide__arrow--prev:disabled {
  background-image: url(../img/prev-off.png);
}
.main-contents .sec-oral #oral-sys .splide__arrow--next {
  left: 16%;
  background-image: url(../img/next.png);
  background-size: cover;
}
.main-contents .sec-oral #oral-sys .splide__arrow--next:disabled {
  background-image: url(../img/next-off.png);
}
.main-contents .sec-oral .my-slider-progress {
  background: #b9dbf3;
  width: 65%;
  margin-left: auto;
  position: absolute;
  bottom: -10%;
  right: 0;
}
.main-contents .sec-oral .my-slider-progress-bar {
  background: #0091d8;
  height: 3px;
  -webkit-transition: width 400ms ease;
  transition: width 400ms ease;
  width: 0;
}
.main-contents .sec-03 .w50 {
  width: 50%;
  margin: 0 auto;
}
.main-contents .sec-03 h4 {
  font-size: 20px;
}
.main-contents .sec-03 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: 0.8em;
}
@media (min-width: 768px) {
  .main-contents .sec-03 ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
.main-contents .sec-03 ul li {
  margin-left: 1em;
  text-indent: -1em;
}
.main-contents .sec-03 ul li img {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .main-contents .sec-03 ul li img {
    width: 100%;
  }
}
.main-contents .sec-03 #anchor6 {
  padding-top: 32px;
}
.main-contents .sec-04 h4 {
  font-size: 18px;
  color: #0091d8;
}
@media (min-width: 768px) {
  .main-contents .sec-04 h4 {
    font-size: 20px;
  }
}
.main-contents .sec-chart .tab-btn {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0.8vw 1fr 0.8vw 1fr 0.8vw 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0.8vw;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 24px;
}
.main-contents .sec-chart .btn {
  text-align: center;
}
.main-contents .sec-chart .btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 3.2vw;
  height: 10.6666666667vw;
  text-decoration: none;
  border-radius: 6px 6px 0px 0px;
  line-height: 1.2;
  color: #727171;
  background-color: #f2f2f2;
  cursor: pointer;
}
@media (min-width: 768px) {
  .main-contents .sec-chart .btn a {
    font-size: 12px;
    height: 40px;
  }
}
.main-contents .sec-chart .btn a.is-active {
  background-color: #fff;
  border: 1px solid #0091d8;
  border-bottom: none;
  color: #0091d8;
}
.main-contents .sec-chart .btn a.is-active:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  height: 1px;
  width: 100%;
  background: #fff;
}
.main-contents .sec-chart #tab-contents {
  border-top: 1px solid #0091d8;
}
.main-contents .sec-chart .tab-contents-item {
  display: none;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.main-contents .sec-chart .tab-contents-item h4 {
  color: #0091d8;
  font-size: 18px;
  margin-bottom: 1em;
}
.main-contents .sec-chart .tab-contents-item h5 {
  font-size: 16px;
  border-radius: 6px;
  background: #f8f8f8;
  padding: 0.3em 1em;
  position: relative;
  overflow: hidden;
  margin-bottom: 1em;
}
.main-contents .sec-chart .tab-contents-item h5:after {
  content: "";
  display: block;
  width: 6px;
  height: 22px;
  border-radius: 10px;
  background: #0091d8;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  left: -3px;
}
.main-contents .sec-chart .tab-contents-item .btn-link.download:after {
  background: url(../img/icn-download.svg);
  background-size: cover;
  margin-left: auto;
}
.main-contents .sec-chart .tab-contents-item .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 15px;
}
.main-contents .sec-chart .tab-contents-item .grid .grid-color {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 768px) {
  .main-contents .sec-chart .tab-contents-item .grid .grid-color {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.main-contents .sec-chart .tab-contents-item .grid .grid-color span {
  font-size: 16px;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .main-contents .sec-chart .tab-contents-item .grid .grid-color span {
    padding-top: 0.25em;
  }
}
.main-contents .sec-chart .tab-contents-item .grid .grid-color:before {
  content: "";
  width: 26px;
  height: 26px;
  display: inline-block;
  margin-right: 15px;
}
.main-contents .sec-chart .tab-contents-item .no1 .grid-color:nth-of-type(1):before {
  background: #e6f0f6;
}
.main-contents .sec-chart .tab-contents-item .no1 .grid-color:nth-of-type(2):before {
  background: #f2d4e4;
}
.main-contents .sec-chart .tab-contents-item .no1 .grid-color:nth-of-type(3):before {
  background: #ebbfbd;
}
.main-contents .sec-chart .tab-contents-item .no1 .grid-color:nth-of-type(4):before {
  background: #73171b;
}
.main-contents .sec-chart .tab-contents-item .no2 .grid-color:nth-of-type(1):before {
  background: #e6f0f6;
}
.main-contents .sec-chart .tab-contents-item .no2 .grid-color:nth-of-type(2):before {
  background: #f2d4e4;
}
.main-contents .sec-chart .tab-contents-item .no2 .grid-color:nth-of-type(3):before {
  background: #ca6867;
}
.main-contents .sec-chart .tab-contents-item .no2 .grid-color:nth-of-type(4):before {
  background: #73171b;
}
.main-contents .sec-chart .tab-contents-item .no3 .grid-color:nth-of-type(1):before {
  background: #e6f0f6;
}
.main-contents .sec-chart .tab-contents-item .no3 .grid-color:nth-of-type(2):before {
  background: #bd7c73;
}
.main-contents .sec-chart .tab-contents-item .no3 .grid-color:nth-of-type(3):before {
  background: #ca6867;
}
.main-contents .sec-chart .tab-contents-item .no3 .grid-color:nth-of-type(4):before {
  background: #73171b;
}
.main-contents .sec-chart .tab-contents-item .no4 .grid-color:nth-of-type(1):before {
  background: #dceef4;
}
.main-contents .sec-chart .tab-contents-item .no4 .grid-color:nth-of-type(2):before {
  background: #ca6867;
}
.main-contents .sec-chart .tab-contents-item .no4 .grid-color:nth-of-type(3):before {
  background: #73171b;
}
.main-contents .sec-chart .tab-contents-item .color-wrapper {
  margin-bottom: 16px;
}
.main-contents .sec-chart .tab-contents-item .color-wrapper img {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.main-contents .sec-chart .tab-contents-item .cation {
  text-align: right;
  font-size: 10px;
  margin-bottom: 30px;
}
.main-contents .sec-chart .tab-contents-item .txt-box {
  padding-left: 1em;
}
@media (min-width: 768px) {
  .main-contents .sec-chart .tab-contents-item .grid-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .main-contents .sec-chart .tab-contents-item .grid-wrapper .grid {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .main-contents .sec-chart .tab-contents-item .grid-wrapper img {
    width: 100%;
  }
}
.main-contents .sec-chart .tab-contents-item.is-active {
  display: block;
  padding-top: 24px;
}
.main-contents .sec-chart .tab-contents-item > * {
  opacity: 0;
}
.main-contents .sec-chart .tab-contents-item.is-active > * {
  -webkit-animation: fadeinAnime 2s forwards;
          animation: fadeinAnime 2s forwards;
}
@-webkit-keyframes fadeinAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeinAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.main-contents .sec-product {
  background: #f2f2f2;
  margin-top: 54px;
  padding-bottom: 54px;
}
@media (min-width: 768px) {
  .main-contents .sec-product {
    margin-top: 90px;
    padding-bottom: 96px;
  }
}
.main-contents .sec-product .product-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .main-contents .sec-product .product-list {
    gap: 24px;
  }
}
.main-contents .sec-product .product-list li {
  border-radius: 4px;
  overflow: hidden;
  background-color: #fff;
}
.main-contents .sec-product .product-list-body {
  padding: 14px;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 80% 8px 1fr;
  grid-template-columns: 80% 1fr;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
}
.main-contents .sec-product .product-list-body:after {
  content: "";
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 1/2/3/3;
  width: 16px;
  height: 16px;
  background: url(../img/icn-arrow.svg);
  background-size: cover;
  margin-left: auto;
}
.main-contents .sec-product .product-list-name {
  font-size: 14px;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/2/2;
  line-height: 1.5;
}
.main-contents .sec-product .product-list-category {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 2/1/3/2;
}
.main-contents .sec-product .product-list-category span {
  background: #f5f5f5;
  border-radius: 9999px;
  font-size: 10px;
  color: #757575;
  padding: 0 10px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  max-width: 100%;
}
.main-contents footer {
  padding-top: 54px;
  padding-bottom: 54px;
}
@media (min-width: 768px) {
  .main-contents footer {
    padding-top: 84px;
    padding-bottom: 84px;
  }
}
.main-contents footer .logo-gumy {
  margin: 0 auto 24px;
}
@media (min-width: 768px) {
  .main-contents footer .logo-gumy {
    width: 175px;
  }
}
.main-contents footer .footer-link {
  border-radius: 9999px;
  background: #fff;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  color: #727171;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 40px;
}
.main-contents footer .footer-link:after {
  display: inline-block;
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/icn-arrow.svg);
  background-size: cover;
  margin-left: auto;
}
.main-contents footer .logo-shofu {
  margin: 0 auto 20px;
}
.main-contents footer .copyright {
  font-size: 12px;
}