@charset "UTF-8";
/*! * ress.css • v1.2.2 * MIT License * github.com/filipelinhares/ress */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
}

*, :after, :before {
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

hr {
  overflow: visible;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden], template {
  display: none;
}

abbr[title] {
  border-bottom: 1px dotted;
  text-decoration: none;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:active, a:hover {
  outline-width: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
}

b, strong {
  font-weight: bolder;
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

input {
  border-radius: 0;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
}

[disabled] {
  cursor: default;
}

[type=number] {
  width: auto;
}

[type=search] {
  -webkit-appearance: textfield;
}

[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: 0;
  padding: 0;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button;
}

button, select {
  text-transform: none;
}

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
  color: inherit;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

svg:not(:root) {
  overflow: hidden;
}

audio, canvas, progress, video {
  display: inline-block;
}

@media screen {
  [hidden~=screen] {
    display: inherit;
  }
  [hidden~=screen]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}
[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled] {
  cursor: default;
}

::-moz-selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

html {
  font-size: 100%;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  vertical-align: bottom;
}

ol,
ul {
  list-style: none;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

em {
  font-style: normal;
}

html {
  height: 100%;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  height: 100%;
  background-color: #ffffff;
  color: #414141;
  font-size: 2rem;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.9rem;
  }
}

a {
  -webkit-transition: color 0.3s, -webkit-text-decoration 0.3s;
  transition: color 0.3s, -webkit-text-decoration 0.3s;
  transition: color 0.3s, text-decoration 0.3s;
  transition: color 0.3s, text-decoration 0.3s, -webkit-text-decoration 0.3s;
  color: #0099ff;
  text-decoration: none;
}
a:visited {
  color: #0099ff;
}
a:hover {
  color: #f24b56;
  text-decoration: none;
}

::-moz-selection {
  background-color: #fceea9;
  color: #414141;
}

::selection {
  background-color: #fceea9;
  color: #414141;
}

/**
 * keyframes.scss
 */
@-webkit-keyframes fade_in_up {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes fade_in_up {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.l-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin: auto;
  height: 65px;
  padding-left: 15px;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 45px;
  }
}
.l-header img {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.l-header a:hover img {
  opacity: 0.75;
}

.l-header__logo_1 {
  width: 122px;
  height: auto;
  margin-top: -2px;
}
@media screen and (max-width: 767px) {
  .l-header__logo_1 {
    width: 84px;
  }
}

.l-footer {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 0 5%;
  }
}
.l-footer small {
  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;
  width: 100%;
  height: 130px;
  padding-bottom: 10px;
  text-align: center;
  color: #414141;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.5px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-footer small {
    height: 100px;
    font-size: 1.1rem;
  }
}

.l-footer__btn {
  -webkit-transition: background-position 0.5s, color 0.5s, border-color 0.5s, -webkit-transform 1s;
  transition: background-position 0.5s, color 0.5s, border-color 0.5s, -webkit-transform 1s;
  transition: transform 1s, background-position 0.5s, color 0.5s, border-color 0.5s;
  transition: transform 1s, background-position 0.5s, color 0.5s, border-color 0.5s, -webkit-transform 1s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  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;
  position: relative;
  width: 100%;
  max-width: 350px;
  height: 55px;
  margin: auto;
  margin-bottom: 60px;
  border: 2px solid #fb6eb7;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 96, 152, 0.96)), color-stop(50%, rgba(255, 96, 152, 0.96)), color-stop(50%, rgba(71, 204, 131, 0)), to(rgba(71, 204, 131, 0))) 100% 0/200% auto scroll no-repeat;
  background: linear-gradient(90deg, rgba(255, 96, 152, 0.96) 0%, rgba(255, 96, 152, 0.96) 50%, rgba(71, 204, 131, 0) 50%, rgba(71, 204, 131, 0) 100%) 100% 0/200% auto scroll no-repeat;
  color: #fb6eb7;
  font-size: 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-family: sans-serif;
}
@media screen and (max-width: 767px) {
  .l-footer__btn {
    width: 270px;
    font-size: 1.6rem;
    height: 50px;
  }
}
.l-footer__btn:visited {
  color: #fb6eb7;
}
.l-footer__btn:hover {
  color: #ffffff;
  background-position: 0 0;
  -webkit-transform: scale(0.97);
          transform: scale(0.97);
}
.l-footer__btn:hover::before {
  border-color: #ffffff;
}
.l-footer__btn::before {
  -webkit-transition: border-color 0.5s;
  transition: border-color 0.5s;
  display: block;
  position: absolute;
  right: 20px;
  width: 13px;
  height: 13px;
  border: 2px solid #fb6eb7;
  border-left: none;
  border-bottom: none;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  content: "";
}

@-webkit-keyframes fluffy {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }
  100% {
    -webkit-transform: translateY(-1000px) rotate(720deg);
            transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}

@keyframes fluffy {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }
  100% {
    -webkit-transform: translateY(-1000px) rotate(720deg);
            transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}
.bg {
  background: #e3fbf6;
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .bg {
    display: none;
  }
}
.bg .bg__ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.bg .bg__ul li {
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(74, 217, 140, 0.25);
  -webkit-animation: fluffy 25s linear infinite;
          animation: fluffy 25s linear infinite;
  bottom: -150px;
}
.bg .bg__ul li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.bg .bg__ul li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-duration: 12s;
          animation-duration: 12s;
}
.bg .bg__ul li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}
.bg .bg__ul li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-duration: 18s;
          animation-duration: 18s;
}
.bg .bg__ul li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.bg .bg__ul li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
.bg .bg__ul li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  -webkit-animation-delay: 7s;
          animation-delay: 7s;
}
.bg .bg__ul li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  -webkit-animation-delay: 15s;
          animation-delay: 15s;
  -webkit-animation-duration: 45s;
          animation-duration: 45s;
}
.bg .bg__ul li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-duration: 35s;
          animation-duration: 35s;
}
.bg .bg__ul li:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-duration: 11s;
          animation-duration: 11s;
}

@media screen and (max-width: 767px) {
  .l-container {
    background-color: #e3fbf6;
  }
}

.hero {
  padding-top: 50px;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .hero {
    padding: 0;
    margin-bottom: 50px;
  }
}

.hero__sub,
.hero__date {
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hero__h {
  width: 100%;
  height: 450px;
  margin-bottom: 50px;
  background: url(../img/hero_h.png) center center/auto scroll no-repeat;
  font-size: 0.1rem;
  text-indent: -9999px;
}
@media screen and (max-width: 767px) {
  .hero__h {
    height: auto;
    background: url(../img/sp_hero_h.png) center center/contain scroll no-repeat;
    aspect-ratio: 375/510;
    margin-bottom: 20px;
  }
}

.hero__pict {
  text-align: center;
}

.sum {
  margin-bottom: 180px;
}
@media screen and (max-width: 767px) {
  .sum {
    margin-bottom: 120px;
    padding: 0 8%;
  }
}

.sum__h {
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sum__h {
    margin-bottom: 30px;
  }
}

.sum__deadline {
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.sum__text {
  text-align: center;
  color: #414141;
  font-size: 2rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .sum__text {
    text-align: left;
    font-size: 1.9rem;
  }
}
.sum__text em {
  color: #f35d67;
}
.sum__text p {
  margin-bottom: 2em;
}
@media screen and (max-width: 767px) {
  .sum__text br {
    display: none;
  }
}

.sum__wrap {
  width: 600px;
  margin: auto;
  padding: 20px;
  border: 3px solid #7ad1a3;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .sum__wrap {
    width: 100%;
    padding: 10px;
  }
}

.sum__note {
  display: inline-block;
  text-align: left;
  padding-left: 1em;
  text-indent: -1em;
  color: #414141;
  font-size: 1.7rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .sum__note {
    font-size: 1.5rem;
  }
}

.h {
  position: relative;
  margin-bottom: 65px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .h {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .products .h {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .post .h {
    margin-bottom: 20px;
  }
}
.h::before, .h::after {
  display: block;
  position: absolute;
  top: 35px;
  width: 43%;
  height: 20px;
  content: "";
}
@media screen and (max-width: 767px) {
  .h::before, .h::after {
    content: none;
  }
}
.h::before {
  left: 0;
  background: url(../img/dots.svg) center right/contain scroll repeat-x;
}
.h::after {
  right: 0;
  background: url(../img/dots.svg) center left/contain scroll repeat-x;
}

.features {
  margin-bottom: 180px;
}
@media screen and (max-width: 767px) {
  .features {
    margin-bottom: 120px;
  }
}

.features__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  width: 1180px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .features__ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    width: 100%;
    margin: 0;
    padding: 0 8%;
  }
}

.outline {
  margin-bottom: 180px;
}
@media screen and (max-width: 767px) {
  .outline {
    margin-bottom: 120px;
  }
}

@media screen and (max-width: 767px) {
  .outline__wrap {
    padding: 0 8%;
  }
}

.outline__table {
  width: 780px;
  margin: auto;
  margin-bottom: 20px;
  background-color: #ffffff;
  border: 3px solid #f7d528;
  color: #414141;
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .outline__table {
    width: 100%;
    margin: 0;
    border: none;
    background-color: transparent;
  }
}
@media screen and (max-width: 767px) {
  .outline__table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: wrap column;
            flex-flow: wrap column;
  }
}
.outline__table th {
  padding: 25px 40px;
  border: 1px solid #f7d528;
  text-align: center;
  background-color: #fae67e;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .outline__table th {
    width: 100%;
    padding: 10px;
    border: none;
    text-align: center;
    background-color: #f9e268;
    border-radius: 2px;
    font-size: 1.8rem;
  }
}
.outline__table td {
  padding: 30px 40px;
  border: 1px solid #f7d528;
}
@media screen and (max-width: 767px) {
  .outline__table td {
    width: 100%;
    padding: 10px;
    padding-bottom: 40px;
    border: none;
    font-size: 1.8rem;
  }
}
.outline__table td sup {
  font-weight: 700;
}
.outline__table td em {
  display: block;
  color: #f35d67;
  font-size: 2rem;
  font-weight: 700;
}
.outline__table td .strike_through {
  display: block;
  text-decoration: line-through;
}

.outline__sun {
  color: #f35d67;
}

.outline__note {
  width: 780px;
  margin: auto;
  color: #414141;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .outline__note {
    width: 100%;
    margin: 0;
    font-size: 1.4rem;
  }
}

.outline__li {
  margin-bottom: 0.3em;
  padding-left: 1em;
  text-indent: -1em;
}
.outline__li:nth-child(1) {
  color: #f35d67;
  font-size: 1.85rem;
}
.outline__li:nth-child(4) {
  color: #f35d67;
  font-weight: 700;
}
.outline__li::before {
  margin-right: 0.3em;
  content: "※";
}
@media screen and (max-width: 767px) {
  .outline__li::before {
    margin-right: 0;
  }
}

.btn {
  -webkit-transition: background-position 0.5s, -webkit-transform 1s;
  transition: background-position 0.5s, -webkit-transform 1s;
  transition: transform 1s, background-position 0.5s;
  transition: transform 1s, background-position 0.5s, -webkit-transform 1s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  position: relative;
  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;
  width: 100%;
  height: 90px;
  margin: auto;
  padding-bottom: 0.1em;
  border-radius: 45px;
  color: #ffffff;
  font-size: 5rem;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, from(rgba(65, 190, 124, 0.95)), color-stop(50%, rgba(65, 190, 124, 0.95)), color-stop(50%, rgba(242, 75, 86, 0.9)), to(rgba(242, 75, 86, 0.9))) 100% 0/200% auto scroll no-repeat;
  background: linear-gradient(90deg, rgba(65, 190, 124, 0.95) 0%, rgba(65, 190, 124, 0.95) 50%, rgba(242, 75, 86, 0.9) 50%, rgba(242, 75, 86, 0.9) 100%) 100% 0/200% auto scroll no-repeat;
}
@media screen and (max-width: 767px) {
  .btn {
    width: 100%;
    height: 60px;
    font-size: 2.5rem;
  }
}
.btn:visited {
  color: #ffffff;
}
.btn::before {
  display: block;
  position: absolute;
  right: 30px;
  width: 30px;
  height: 30px;
  border: 7px solid #ffffff;
  border-left: none;
  border-bottom: none;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  content: "";
}
@media screen and (max-width: 767px) {
  .btn::before {
    right: 15px;
    width: 15px;
    height: 15px;
    border-width: 3px;
  }
}
.btn:hover {
  color: #ffffff;
  background-position: 0 0;
  -webkit-transform: scale(0.97);
          transform: scale(0.97);
}

.btn__wrap {
  position: sticky;
  bottom: 20px;
  width: 90%;
  max-width: 1180px;
  margin: auto;
  margin-bottom: 180px;
  text-align: center;
  z-index: 9999;
}
@media screen and (max-width: 767px) {
  .btn__wrap {
    bottom: 10px;
    width: 100%;
    margin-bottom: 120px;
    padding: 0 8%;
  }
}

.sns {
  margin-bottom: 240px;
}
@media screen and (max-width: 767px) {
  .sns {
    margin-bottom: 200px;
    padding: 0 8%;
  }
}

.sns__h {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .sns__h {
    margin-bottom: 10px;
  }
}

.sns__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .sns__ul {
    gap: 20px;
  }
}

.sns__li {
  width: 170px;
}
@media screen and (max-width: 767px) {
  .sns__li {
    width: 130px;
  }
}

.sns__a {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  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;
  width: 140px;
  height: 140px;
  margin: auto;
  margin-bottom: 0.6em;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .sns__a {
    width: 100px;
    height: 100px;
  }
}
.sns__a.sns__a--x {
  background-color: #222222;
}
@media screen and (max-width: 767px) {
  .sns__a.sns__a--x img {
    width: 44px;
    height: auto;
  }
}
.sns__a.sns__a--fb {
  background-color: #3082e7;
}
@media screen and (max-width: 767px) {
  .sns__a.sns__a--fb img {
    width: 25px;
    height: auto;
  }
}
.sns__a:hover {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.sns__text {
  color: #414141;
  font-size: 1.4rem;
  font-family: "Inter", sans-serif;
  text-align: center;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .sns__text {
    font-size: 1.1rem;
  }
}

.pdf_btn {
  -webkit-transition: background-position 0.35s, -webkit-transform 0.8s;
  transition: background-position 0.35s, -webkit-transform 0.8s;
  transition: background-position 0.35s, transform 0.8s;
  transition: background-position 0.35s, transform 0.8s, -webkit-transform 0.8s;
  position: relative;
  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;
  width: 100%;
  padding: 22px 10px;
  color: #ffffff;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, from(rgba(41, 198, 125, 0.96)), color-stop(50%, rgba(41, 198, 125, 0.96)), color-stop(50%, rgba(242, 75, 86, 0.96)), to(rgba(242, 75, 86, 0.96))) 100% 0/200% auto scroll no-repeat;
  background: linear-gradient(90deg, rgba(41, 198, 125, 0.96) 0%, rgba(41, 198, 125, 0.96) 50%, rgba(242, 75, 86, 0.96) 50%, rgba(242, 75, 86, 0.96) 100%) 100% 0/200% auto scroll no-repeat;
  border-radius: 40px;
}
@media screen and (max-width: 767px) {
  .pdf_btn {
    height: 60px;
    font-size: 1.9rem;
  }
}
.pdf_btn:visited {
  color: #ffffff;
}
.pdf_btn:hover {
  color: #ffffff;
  background-position: 0 0;
  -webkit-transform: scale(0.96);
          transform: scale(0.96);
}
.pdf_btn img {
  height: 35px;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .pdf_btn img {
    height: 20px;
    margin-right: 5px;
  }
}

.pdf_btn__wrap {
  width: 580px;
  margin: auto;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .pdf_btn__wrap {
    width: 100%;
    margin: 0;
    margin-bottom: 60px;
    padding: 0 8%;
  }
}

.cp {
  text-align: center;
  margin-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .cp {
    margin-bottom: 80px;
    padding: 0 8%;
  }
}

.products {
  margin: auto;
  margin-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .products {
    margin: 0;
    margin-bottom: 120px;
  }
}

.products__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 70px 40px;
  width: 980px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .products__list {
    width: 100%;
    margin: 0;
    margin-bottom: 120px;
    padding: 0 8%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
    gap: 40px;
  }
}

.products__a {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 470px;
  padding: 35px 0 60px;
  border: 8px solid #54c489;
  background-color: #ffffff;
  color: #414141;
  border-radius: 70px;
}
.products__a:nth-child(2), .products__a:nth-child(3), .products__a:nth-child(6) {
  border-color: #f7d528;
}
@media screen and (max-width: 767px) {
  .products__a:nth-child(2), .products__a:nth-child(3), .products__a:nth-child(6) {
    border-color: #54c489;
  }
}
@media screen and (max-width: 767px) {
  .products__a:nth-child(even) {
    border-color: #f7d528;
  }
}
.products__a:last-child {
  margin: auto;
}
@media screen and (max-width: 767px) {
  .products__a {
    width: 100%;
    padding: 50px 0 40px;
    border-radius: 50px;
    border-width: 6px;
  }
}
.products__a:visited {
  color: #414141;
}
.products__a:hover {
  color: #414141;
  -webkit-transform: scale(0.93);
          transform: scale(0.93);
}

.products__pict {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .products__pict {
    margin: 0 25px 20px;
  }
}

.products__co,
.products__name {
  text-align: center;
  color: #414141;
}

.products__co {
  margin-bottom: 0.2em;
  font-size: 2rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .products__co {
    margin-bottom: 0.03em;
    font-size: 1.8rem;
  }
}

.products__name {
  font-size: 2.6rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .products__name {
    margin-top: 5px;
    font-size: 2rem;
  }
}

.post {
  width: 100%;
  margin-bottom: 180px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .post {
    width: 100%;
    margin: 0;
    margin-bottom: 130px;
    padding: 0 8%;
  }
}

.post__h {
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .post__h {
    margin-bottom: 8px;
  }
}

.post__text {
  margin-bottom: 50px;
  color: #414141;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .post__text {
    margin-bottom: 30px;
    font-size: 2.5rem;
    line-height: 1.4;
  }
}

.post__tag {
  width: 750px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .post__tag {
    width: 100%;
    margin: 0;
  }
}
.post__tag h3 {
  margin-bottom: 20px;
  color: #f56f78;
  font-size: 2.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .post__tag h3 {
    margin-bottom: 15px;
    font-size: 2.2rem;
  }
}

.post__wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 13px 8px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .post__wrap {
    margin-bottom: 40px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 10px;
  }
}
.post__wrap span {
  padding: 8px 15px 10px 15px;
  border: 2px solid #f68188;
  text-align: left;
  background-color: #ffffff;
  color: #414141;
  font-size: 1.8rem;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .post__wrap span {
    padding: 8px 9px 10px 9px;
    font-size: 1.45rem;
  }
}

.post__note {
  -webkit-margin-after: 25px;
          margin-block-end: 25px;
  color: #414141;
  font-size: 1.8rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .post__note {
    text-align: left;
  }
}

.post__pict {
  padding: 0 150px;
}
@media screen and (max-width: 767px) {
  .post__pict {
    padding: 0;
  }
}

.ownly_ugc_set_post_comment {
  color: #414141 !important;
  font-size: 1.3rem !important;
  font-weight: 400 !important;
  line-height: 1.62 !important;
}

.ownly_ugc_set_post:not(:last-child) {
  margin-right: 15px !important;
}

.ownly_ugc_post_date {
  color: #414141 !important;
}

.u-d-n {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .u-d-n-mq {
    display: none !important;
  }
}
.u-d-b {
  display: block !important;
}

.u-d-b-mq {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-d-b-mq {
    display: block !important;
  }
}

.u-d-ib {
  display: inline-block !important;
}

.u-d-ib-mq {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-d-ib-mq {
    display: inline-block !important;
  }
}