@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: #025599;
  font-size: 2rem;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  -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: #f23030;
  text-decoration: none;
}

::-moz-selection {
  background-color: #ffe57f;
  color: #333333;
}

::selection {
  background-color: #ffe57f;
  color: #333333;
}

/**
 * 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: all 0.3s;
  transition: all 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-header__logo_2 {
  width: 58px;
  height: auto;
  margin-left: 25px;
  margin-top: -3px;
}
@media screen and (max-width: 767px) {
  .l-header__logo_2 {
    width: 40.6px;
    margin-left: 15px;
  }
}

.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: #333333;
  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.4s, color 0.5s, border-color 0.5s, -webkit-transform 1s;
  transition: background-position 0.4s, color 0.5s, border-color 0.5s, -webkit-transform 1s;
  transition: transform 1s, background-position 0.4s, color 0.5s, border-color 0.5s;
  transition: transform 1s, background-position 0.4s, 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: "";
}

.l-footer__back_to_top {
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
  display: block;
  width: 50px;
  height: auto;
  margin: auto;
}
.l-footer__back_to_top:hover {
  -webkit-transform: scale(1.5) translateY(-10px) rotate(720deg);
          transform: scale(1.5) translateY(-10px) rotate(720deg);
}

.hero {
  position: relative;
  width: 100%;
  height: 750px;
  margin-bottom: 80px;
  background: url(../img/hero_bg.png) center center/auto scroll no-repeat;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .hero {
    height: auto;
    margin-bottom: 50px;
    background: url(../img/sp_hero_bg.png) center center/contain scroll no-repeat;
    aspect-ratio: 375/520;
  }
}
.hero::before, .hero::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}
.hero::before {
  width: 100%;
  height: 100%;
  background: url(../img/hero_dots.svg) center 90px/1380px 450px scroll no-repeat;
  -webkit-animation: fade_in_up 3.5s ease 0.7s 1 normal forwards;
          animation: fade_in_up 3.5s ease 0.7s 1 normal forwards;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .hero::before {
    background: url(../img/sp_hero_dots.svg) top center/contain scroll no-repeat;
  }
}
.hero::after {
  width: 104%;
  height: 104%;
  background: url(../img/hero_bg.png) center center/cover scroll no-repeat;
  -webkit-filter: blur(8px);
          filter: blur(8px);
  -webkit-transform: translate(-2%, -2%);
          transform: translate(-2%, -2%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .hero::after {
    content: none;
  }
}

.hero__inner {
  position: relative;
  width: 1180px;
  height: 100%;
  margin: auto;
  padding-top: 90px;
}
@media screen and (max-width: 767px) {
  .hero__inner {
    width: 100%;
    margin: 0;
    padding: 0;
  }
}

.hero__h {
  text-align: center;
  -webkit-animation: fade_in_up 3s ease 4s 1 normal forwards;
          animation: fade_in_up 3s ease 4s 1 normal forwards;
  opacity: 0;
}

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

.hero__fig {
  position: absolute;
}
.hero__fig.hero__fig--1 {
  top: 110px;
  left: -60px;
  -webkit-animation: fade_in_up 3s ease 2.5s 1 normal forwards;
          animation: fade_in_up 3s ease 2.5s 1 normal forwards;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .hero__fig.hero__fig--1 {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
  }
}
.hero__fig.hero__fig--2 {
  top: 95px;
  right: -28px;
  -webkit-animation: fade_in_up 3s ease 3s 1 normal forwards;
          animation: fade_in_up 3s ease 3s 1 normal forwards;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .hero__fig.hero__fig--2 {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
  }
}
.hero__fig.hero__fig--3 {
  top: 417px;
  right: 53px;
  -webkit-animation: fade_in_up 3s ease 3.5s 1 normal forwards;
          animation: fade_in_up 3s ease 3.5s 1 normal forwards;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .hero__fig.hero__fig--3 {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
  }
}

.sum {
  margin-top: -80px;
  margin-bottom: 100px;
  padding-top: 80px;
  padding-bottom: 90px;
  background: url(../img/sum_dots.svg) center top/auto scroll no-repeat, #daf1fe -webkit-gradient(linear, left top, left bottom, from(hsl(202, 95%, 93%)), color-stop(18%, hsl(202, 94%, 93%)), color-stop(31%, hsl(201, 94%, 93%)), color-stop(43%, hsl(201, 94%, 93%)), color-stop(53%, hsl(201, 94%, 94%)), color-stop(62%, hsl(201, 93%, 94%)), color-stop(70%, hsl(201, 93%, 94%)), color-stop(77%, hsl(201, 93%, 94%)), color-stop(84%, hsl(200, 92%, 95%)), color-stop(90%, hsl(200, 92%, 95%)), color-stop(95%, hsl(200, 92%, 95%)), to(hsl(200, 91%, 95%)));
  background: url(../img/sum_dots.svg) center top/auto scroll no-repeat, #daf1fe linear-gradient(180deg, hsl(202, 95%, 93%) 0%, hsl(202, 94%, 93%) 18%, hsl(201, 94%, 93%) 31%, hsl(201, 94%, 93%) 43%, hsl(201, 94%, 94%) 53%, hsl(201, 93%, 94%) 62%, hsl(201, 93%, 94%) 70%, hsl(201, 93%, 94%) 77%, hsl(200, 92%, 95%) 84%, hsl(200, 92%, 95%) 90%, hsl(200, 92%, 95%) 95%, hsl(200, 91%, 95%) 100%);
}
@media screen and (max-width: 767px) {
  .sum {
    margin-top: -50px;
    margin-bottom: 50px;
    padding-top: 50px;
    padding-bottom: 60px;
    background: #daf1fe -webkit-gradient(linear, left top, left bottom, from(hsl(202, 95%, 93%)), color-stop(18%, hsl(202, 94%, 93%)), color-stop(31%, hsl(201, 94%, 93%)), color-stop(43%, hsl(201, 94%, 93%)), color-stop(53%, hsl(201, 94%, 94%)), color-stop(62%, hsl(201, 93%, 94%)), color-stop(70%, hsl(201, 93%, 94%)), color-stop(77%, hsl(201, 93%, 94%)), color-stop(84%, hsl(200, 92%, 95%)), color-stop(90%, hsl(200, 92%, 95%)), color-stop(95%, hsl(200, 92%, 95%)), to(hsl(200, 91%, 95%)));
    background: #daf1fe linear-gradient(180deg, hsl(202, 95%, 93%) 0%, hsl(202, 94%, 93%) 18%, hsl(201, 94%, 93%) 31%, hsl(201, 94%, 93%) 43%, hsl(201, 94%, 94%) 53%, hsl(201, 93%, 94%) 62%, hsl(201, 93%, 94%) 70%, hsl(201, 93%, 94%) 77%, hsl(200, 92%, 95%) 84%, hsl(200, 92%, 95%) 90%, hsl(200, 92%, 95%) 95%, hsl(200, 91%, 95%) 100%);
  }
}

.sum__inner {
  position: relative;
  width: 1180px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .sum__inner {
    width: 100%;
    margin: 0;
    padding: 0 8%;
  }
}

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

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

.sum__text {
  margin-bottom: 80px;
  text-align: center;
  font-size: 2.1rem;
  line-height: 1.9;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .sum__text {
    margin-bottom: 40px;
    text-align: left;
    font-size: 1.9rem;
  }
}
.sum__text p + p {
  margin-top: 1.5em;
}
.sum__text em {
  color: #f55959;
}

.sum__bottom {
  text-align: center;
}

.sum__fig {
  position: absolute;
}
@media screen and (max-width: 767px) {
  .sum__fig {
    display: none;
  }
}
.sum__fig.sum__fig--1 {
  top: 74px;
  left: -40px;
}
.sum__fig.sum__fig--2 {
  top: 340px;
  left: 45px;
}
.sum__fig.sum__fig--3 {
  top: 678px;
  left: -35px;
}
.sum__fig.sum__fig--4 {
  top: 990px;
  left: 120px;
}
.sum__fig.sum__fig--5 {
  top: 155px;
  right: 40px;
}
.sum__fig.sum__fig--6 {
  top: 490px;
  right: -25px;
}
.sum__fig.sum__fig--7 {
  top: 865px;
  right: 110px;
}

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

.features__emoji {
  width: 90px;
  margin: auto;
  margin-bottom: -35px;
}
@media screen and (max-width: 767px) {
  .features__emoji {
    width: 70px;
    margin-bottom: -25px;
  }
}

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

.features__ol {
  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: 30px 85px;
  width: 1115px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .features__ol {
    -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: 100%;
    margin: 0;
    gap: 40px;
  }
}

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

.outline__emoji {
  width: 90px;
  margin: auto;
  margin-bottom: -10px;
}
@media screen and (max-width: 767px) {
  .outline__emoji {
    width: 70px;
  }
}

.outline__h {
  margin-bottom: 30px;
  text-align: center;
}

.outline__table {
  width: 780px;
  margin: auto;
  margin-bottom: 20px;
  background-color: #ffffff;
  border: 3px solid #80aacc;
  color: #025599;
  font-size: 1.9rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .outline__table {
    width: 100%;
    margin: 0;
    border: none;
  }
}
@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 {
  width: 200px;
  padding: 25px 30px;
  border: 1px solid #80aacc;
  text-align: left;
  background-color: #e6f6ff;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .outline__table th {
    width: 100%;
    height: 48px;
    padding: 8px;
    border: none;
    text-align: center;
    background-color: #ceedfe;
    border-radius: 2px;
  }
}
.outline__table td {
  padding: 25px 30px;
  border: 1px solid #80aacc;
}
@media screen and (max-width: 767px) {
  .outline__table td {
    width: 100%;
    padding: 10px;
    padding-bottom: 40px;
    border: none;
  }
}
.outline__table td em {
  display: block;
  color: #f34444;
  font-size: 2rem;
  font-weight: 700;
}
.outline__table td .strike_through {
  display: block;
  text-decoration: line-through;
}

.outline__sun {
  color: #f34444;
}

.outline__note {
  width: 780px;
  margin: auto;
  color: #4c4c4c;
  font-size: 1.4rem;
  line-height: 1.4;
}
@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::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;
  border-radius: 45px;
  color: #ffffff;
  font-size: 4.8rem;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, from(rgba(31, 204, 146, 0.9)), color-stop(50%, rgba(31, 204, 146, 0.9)), color-stop(50%, rgba(243, 68, 68, 0.9)), to(rgba(243, 68, 68, 0.9))) 100% 0/200% auto scroll no-repeat;
  background: linear-gradient(90deg, rgba(31, 204, 146, 0.9) 0%, rgba(31, 204, 146, 0.9) 50%, rgba(243, 68, 68, 0.9) 50%, rgba(243, 68, 68, 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 span {
  margin-top: -3px;
}
.btn::before {
  display: block;
  position: absolute;
  right: 30px;
  width: 20px;
  height: 20px;
  border: 5px 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: 300px;
  text-align: center;
  z-index: 9999;
}
@media screen and (max-width: 767px) {
  .btn__wrap {
    bottom: 10px;
    width: 100%;
    margin-bottom: 200px;
    padding: 0 8%;
  }
}

.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%;
  height: 80px;
  color: #ffffff;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, from(rgba(31, 204, 146, 0.9)), color-stop(50%, rgba(31, 204, 146, 0.9)), color-stop(50%, rgba(243, 68, 68, 0.9)), to(rgba(243, 68, 68, 0.9))) 100% 0/200% auto scroll no-repeat;
  background: linear-gradient(90deg, rgba(31, 204, 146, 0.9) 0%, rgba(31, 204, 146, 0.9) 50%, rgba(243, 68, 68, 0.9) 50%, rgba(243, 68, 68, 0.9) 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: 150px;
}
@media screen and (max-width: 767px) {
  .pdf_btn__wrap {
    width: 100%;
    margin: 0;
    margin-bottom: 100px;
    padding: 0 8%;
  }
}

.products {
  width: 1020px;
  margin: auto;
  margin-bottom: 200px;
}
@media screen and (max-width: 767px) {
  .products {
    width: 100%;
    margin: 0;
    margin-bottom: 150px;
    padding: 0 8%;
  }
}

.products__emoji {
  width: 90px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .products__emoji {
    width: 70px;
  }
}

.products__h {
  margin-bottom: 70px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .products__h {
    margin-bottom: 50px;
  }
}

.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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 100px 60px;
}
@media screen and (max-width: 767px) {
  .products__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
    gap: 80px;
  }
}

.products__a {
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
  width: 480px;
  color: #025599;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .products__a {
    width: 100%;
    border-radius: 50px;
  }
}
.products__a:visited {
  color: #025599;
}
.products__a:hover {
  color: #025599;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.products__a:hover .products__img--1 {
  -webkit-transform: translateY(-20px) scale(1.15);
          transform: translateY(-20px) scale(1.15);
}
.products__a:hover .products__img--2 {
  -webkit-transform: scale(0);
          transform: scale(0);
}

.products__pict {
  position: relative;
  width: 480px;
  margin-bottom: 15px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .products__pict {
    width: 100%;
    margin-bottom: 8px;
  }
}

.products__img {
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
  position: absolute;
  top: 0;
  left: 0;
}
.products__img.products__img--1 {
  z-index: 1;
}
.products__co,
.products__name {
  text-align: center;
  font-weight: 700;
  line-height: 1.4;
}

.products__co {
  margin-bottom: 0.2em;
  color: #4d88b7;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .products__co {
    margin-bottom: 0.08em;
    font-size: 1.8rem;
  }
}

.products__name {
  color: #025599;
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .products__name {
    margin-top: 5px;
    font-size: 2.3rem;
  }
}

.products__wrap {
  margin-top: 20px;
  text-align: center;
}

.products__note {
  display: inline-block;
  text-align: left;
  color: #4c4c4c;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 500;
}
.products__note li {
  padding-left: 1em;
  text-indent: -1em;
}
.products__note li::before {
  content: "※";
}

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

.post__emoji {
  width: 90px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .post__emoji {
    width: 70px;
  }
}

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

.post__text {
  margin-bottom: 50px;
  color: #025599;
  font-size: 3.5rem;
  line-height: 1.3;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .post__text {
    margin-bottom: 40px;
    font-size: 2.5rem;
    line-height: 1.5;
  }
}

.post__tag {
  width: 750px;
  margin: auto;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .post__tag {
    width: 100%;
    margin: 0;
  }
}
.post__tag h3 {
  margin-bottom: 25px;
  color: #f55959;
  font-size: 2.3rem;
}
@media screen and (max-width: 767px) {
  .post__tag h3 {
    margin-bottom: 20px;
    font-size: 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: 15px;
    margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .post__wrap {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 10px;
  }
}
.post__wrap span {
  padding: 8px 22px;
  background-color: #ffffff;
  border: 1px solid #6799c2;
  color: #025599;
  font-size: 1.8rem;
  line-height: 1.5;
  border-radius: 30px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .post__wrap span {
    padding: 8px 15px;
    font-size: 1.4rem;
  }
}
.post__note {
  font-size: 1.8rem;
  line-height: 1.5;
  color: #333;
}
@media screen and (max-width: 767px) {
  .post__note {
    text-align: left;
    font-size: 1.6rem;
  }
}

.post__figure {
  width: 100%;
  margin-top: 60px;
  padding: 0 150px;
}
@media screen and (max-width: 767px) {
  .post__figure {
    margin-top: 30px;
    padding: 0;
  }
}

.ownly_ugc_set_post_comment {
  color: #025599 !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: #025599 !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;
  }
}
